zhengyuxuan
2025-03-28 73436e8c2bdd8af813df060f2b35bc96ae055b7b
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
@@ -2,6 +2,7 @@
using System;
using System.Collections.Generic;
using ZeroD.Base.Web.Models;
using ZeroD.Util;
namespace LifePayment.Application.Contracts;
@@ -1109,6 +1110,16 @@
    /// </summary>
    public string Link { get; set; }
}
public class LifePayRechargeReceiptsPageOutput<T> : PageOutputBase
{
    public List<T> Data { get; set; } = new List<T>();
    /// <summary>
    /// 累计充值
    /// </summary>
    public decimal TotalRechargeAmount { get; set; }
}
public class LifePayRechargeReceiptsListOutput
{
@@ -1136,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
{
}