zhengyiming
2025-03-31 481c2276623c9f12ce5452334422b8b1322fed45
fix: bug
2个文件已修改
4 ■■■■ 已修改文件
LifePayment/LifePayment.Application.Contracts/User/CreateBackClientUserInput.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.Application/User/UserRoleService.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
LifePayment/LifePayment.Application.Contracts/User/CreateBackClientUserInput.cs
@@ -249,7 +249,7 @@
        /// <summary>
        /// 渠道Id
        /// </summary>
        public string Id { get; set; }
        public Guid Id { get; set; }
        /// <summary>
        /// 渠道名
LifePayment/LifePayment.Application/User/UserRoleService.cs
@@ -62,7 +62,7 @@
                           from c in _channleRepository.Where(s => s.ChannlesNum == uc.ChannleId)
                        select new UserChannleDto
                        {
                            Id = c.ChannlesNum,
                            Id = c.Id,
                            Name = c.ChannlesName,
                        },
                Remark = u.Remark,