zhengyuxuan
2025-03-28 182c7edd7c70eddbf33e2358f1f1aba96eb58cb3
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
@@ -1152,4 +1152,29 @@
    /// 记账时间
    /// </summary>
    public DateTime CreationTime { get; set; }
}
public class LifePayPhoneMesssageCodeLoginOutput
{
    /// <summary>
    /// 用户Id
    /// </summary>
    public Guid UserId { get; set; }
    /// <summary>
    /// 是否是后台用户
    /// </summary>
    public bool IsBackClientUser { get; set; }
    /// <summary>
    /// 渠道号
    /// </summary>
    public List<ChannelOutput> ChannlesNum { get; set; }
}
public class ChannelOutput
{
    public string Name { get; set; }
    public string ChannlesNum { get; set; }
}