zhengyiming
2025-04-01 a3f1926a7530fd4a3b9196824a8e8b00c693e6e3
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;
@@ -651,6 +652,12 @@
}
public class AddLifePayExpensesReceiptsInput
{
    /// <summary>
    /// 退款订单号
    /// </summary>
    public string OutRefundNo { get; set; }
    /// <summary>
    /// 平台订单号
    /// </summary>
@@ -771,3 +778,8 @@
    public DateTime? FinishTimeEnd { get; set; }
}
public class TopStatisticsInput
{
    public List<string>? ChannleList { get; set; }
}