Esempio n. 1
0
        /// <summary>
        /// 将支付历史表中营收状态为未匹配的重新插入到营收表(ThirdPartyPublicPlatformPayment)中
        /// </summary>
        /// <returns></returns>
        public bool Insert2Revenue(List <Guid> vguidList)
        {
            int flag = 0;

            foreach (var guid in vguidList)
            {
                var isSuccess = _weChatRevenueServer.Insert2Revenue(guid);
                if (!isSuccess)
                {
                    flag++;
                }
            }
            return(flag == 0);
        }