zhengyuxuan
2025-04-02 d0ca4c5479641ac5616d1e6fd2c258aea7d93222
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs
@@ -2,6 +2,7 @@
using Newtonsoft.Json;
using System;
using System.ComponentModel.DataAnnotations;
using System.Collections.Generic;
using static LifePayment.Domain.Shared.LifePaymentConstant;
namespace LifePayment.Application.Contracts;
@@ -592,7 +593,28 @@
    public decimal Profit { get; set; }
}
public class LifePayConsumptionPageInput : ChannelsBaseInput
{
    /// <summary>
    /// 查询条件
    /// </summary>
    public string? KeyWord { get; set; }
    /// <summary>
    /// 资金流向
    /// </summary>
    public ConsumptionFlowEnum? Flow { get; set; }
    /// <summary>
    /// 记账开始时间
    /// </summary>
    public DateTime? TimeBegin { get; set; }
    /// <summary>
    /// 记账结束时间
    /// </summary>
    public DateTime? TimeEnd { get; set; }
}
public class LifePayRechargeReceiptsPageInput : ChannelsBaseInput
{
    /// <summary>
@@ -649,8 +671,14 @@
    public LifePayTypeEnum LifePayType { get; set; }
}
public class AddLifePayExpensesReceiptsInput
{
    /// <summary>
    /// 退款订单号
    /// </summary>
    public string OutRefundNo { get; set; }
    /// <summary>
    /// 平台订单号
    /// </summary>
@@ -771,3 +799,8 @@
    public DateTime? FinishTimeEnd { get; set; }
}
public class TopStatisticsInput
{
    public List<string>? ChannleList { get; set; }
}