zhengyiming
2025-04-01 f885db9e204c172c62779f45c3edee3cae463b8d
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
@@ -1096,6 +1096,7 @@
    /// </summary>
    public int YesterdayActiveUsers { get; set; }
}
public class ChannelRateOutput
@@ -1152,6 +1153,54 @@
    public DateTime CreationTime { get; set; }
}
public class LifePayConsumptionListOutput
{
    /// <summary>
    /// 编号
    /// </summary>
    public Guid Id { get; set; }
    // <summary>
    /// 平台订单号
    /// </summary>
    public string OrderNo { get; set; }
    /// <summary>
    /// 渠道流水号
    /// </summary>
    public string OutOrderNo { get; set; }
    /// <summary>
    /// 交易金额
    /// </summary>
    public decimal Amount { get; set; }
    /// <summary>
    /// 记账时间
    /// </summary>
    public DateTime FinishTime { get; set; }
    /// <summary>
    /// 冻结状态
    /// </summary>
    public ConsumptionFrozenStatusEnum FrozenStatus { get; set; }
    /// <summary>
    /// 资金流向
    /// </summary>
    public ConsumptionFlowEnum Flow { get; set; }
    /// <summary>
    /// 扣款金额
    /// </summary>
    public decimal DeductionAmount { get; set; }
    /// <summary>
    /// 冻结金额
    /// </summary>
    public decimal FrozenAmount { get; set; }
}
public class LifePayPhoneMesssageCodeLoginOutput
{
    /// <summary>
@@ -1177,6 +1226,8 @@
    public string ChannlesNum { get; set; }
    public Guid ChannlesId { get; set; }
    public LifePaySwitchTypeEnum SwitchType { get; set; }
}
public class BackClientUserInfoOutput
@@ -1260,13 +1311,77 @@
public class ReceiptsListOutPut
{
    /// <summary>
    /// 30天收款
    /// </summary>
    public List<ReceiptsDetail> ReceiveList { get; set; } = new List<ReceiptsDetail>();
    /// <summary>
    /// 30天收入
    /// </summary>
    public List<ReceiptsDetail> IncomeList { get; set; } = new List<ReceiptsDetail>();
}
public class ReceiptsDetail
{
    /// <summary>
    /// 创建时间
    /// </summary>
    public DateTime CreationTime { get; set; }
    public string CreationTime { get; set; }
    /// <summary>
    /// 金额
    /// </summary>
    public decimal Amount { get; set; }
}
public class ChannelDataListOutPut
{
    /// <summary>
    /// Top5渠道收款
    /// </summary>
    public List<ChannelDataReceive> ReceiveList { get; set; } = new List<ChannelDataReceive>();
    /// <summary>
    /// Top5渠道用户
    /// </summary>
    public List<ChannelDataUserNumber> UserNumberList { get; set; } = new List<ChannelDataUserNumber>();
}
public class ChannelDataReceive
{
    /// <summary>
    /// 渠道编号
    /// </summary>
    public string ChannelId { get; set; }
    /// <summary>
    /// 收款
    /// </summary>
    public decimal ReceivePrice { get; set; }
    /// <summary>
    /// 佣金
    /// </summary>
    public decimal ChannlesRakePrice { get; set; }
}
public class ChannelDataUserNumber
{
    /// <summary>
    /// 渠道编号
    /// </summary>
    public string ChannelId { get; set; }
    /// <summary>
    /// 用户数量
    /// </summary>
    public int Number { get; set; }
}
public class LifePayChannlesRakeListOutput
{