zhengyuxuan
2025-03-19 04e71caf554818d4e16616000ae2ff7cc190197b
fix:ChannlesNum统一
3个文件已修改
9 ■■■■■ 已修改文件
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.Application/LifePay/LifePayService.cs 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.Domain/Common/UserChannle.cs 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs
@@ -217,7 +217,7 @@
    /// <summary>
    /// 下单渠道
    /// </summary>
    public Guid? ChannelId { get; set; }
    public string? ChannelId { get; set; }
}
LifePayment/LifePayment.Application/LifePay/LifePayService.cs
@@ -569,7 +569,7 @@
            PayAmount = amount.PayAmont,
            DiscountAmount = amount.DiscountAmount,
            RechargeAmount = amount.RechargeAmount,
            ChannelId = channle.Id
            ChannelId = channle.ChannlesNum
        };
        await CreateLifePayOrder(orderInput);
@@ -613,7 +613,7 @@
            PayAmount = amount.PayAmont,
            DiscountAmount = amount.DiscountAmount,
            RechargeAmount = amount.RechargeAmount,
            ChannelId = channle.Id
            ChannelId = channle.ChannlesNum
        };
        await CreateLifePayOrder(orderInput);
@@ -657,7 +657,7 @@
            PayAmount = amount.PayAmont,
            DiscountAmount = amount.DiscountAmount,
            RechargeAmount = amount.RechargeAmount,
            ChannelId = channle.Id
            ChannelId = channle.ChannlesNum
        };
        await CreateLifePayOrder(orderInput);
LifePayment/LifePayment.Domain/Common/UserChannle.cs
@@ -14,6 +14,7 @@
        /// 渠道Id
        /// </summary>
        public virtual string ChannleId { get; set; }
        public virtual User User { get; set; }
    }
}