zhengyuxuan
2025-03-28 73436e8c2bdd8af813df060f2b35bc96ae055b7b
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
@@ -1147,4 +1147,39 @@
    /// 凭证
    /// </summary>
    public string Voucher { get; set; }
    /// <summary>
    /// 记账时间
    /// </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; }
}
public class LifePayExpensesReceiptsListOutput
{
}