移动系统liao
2024-10-22 20fa1468ee1ca54f7af19fae94da8a70ab29344f
 修改重新发起支付逻辑
2个文件已修改
7 ■■■■■ 已修改文件
cylsg/cylsg.Application/Transfer/UserTransfer.cs 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
cylsg/cylsg.Core/DbContext.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
cylsg/cylsg.Application/Transfer/UserTransfer.cs
@@ -406,9 +406,9 @@
                    var UserTiXianDetailwork = new BaseRepository<UserTiXianDetail>();
                    var WeChatTransferOrderwork = new BaseRepository<WeChatTransferOrder>();
                    if ((uw != null) && (((uw.TiXianZonge ?? 0) - (uw.YiTiXianJine ?? 0)) >= Money))
                    if ((uw != null) && Money<= (uw.TiXianZonge ?? 0))
                    {
                        //满足条件,发起支付
                        //满足条件,发起支付 这里不判断支付金额大鱼可提现余额
                        var TransferOrder = new WeChatTransferOrder
                        {
@@ -509,7 +509,7 @@
                    }
                    else
                    {
                        throw Oops.Oh("系统错误");
                        throw Oops.Oh("没有工作资料或者是提现额度已经大余总额了");
                    }
                }
cylsg/cylsg.Core/DbContext.cs
@@ -18,5 +18,6 @@
        , db =>
        {
            // 这里配置全局事件,比如拦截执行 SQL
            var a = 100;
        });
}