From 2c511ccf6541384f517eda69f897a23404573983 Mon Sep 17 00:00:00 2001 From: zhengyuxuan <zhengyuxuan1995> Date: 星期三, 02 四月 2025 15:00:31 +0800 Subject: [PATCH] fix:bug修复 --- LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs | 122 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 122 insertions(+), 0 deletions(-) diff --git a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs index 6a84270..86bb711 100644 --- a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs +++ b/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> @@ -675,6 +703,61 @@ /// 浜ゆ槗閲戦 /// </summary> public decimal Amount { get; set; } +} + +public class AddLifePayChannlesRakeReceiptsInput +{ + + /// <summary> + /// 骞冲彴鎶樻墸姣斾緥 + /// </summary> + public decimal? PlatformRate { get; set; } + + /// <summary> + /// 娓犻亾鎶樻墸 + /// </summary> + public decimal? ChannleRate { get; set; } + + /// <summary> + /// 鍏呭�奸噾棰� + /// </summary> + public decimal? RechargeAmount { get; set; } + + /// <summary> + /// 骞冲彴璁㈠崟鍙� + /// </summary> + public string OrderNo { get; set; } + + /// <summary> + /// 鎴愪氦閲戦 + /// </summary> + public decimal PayAmount { get; set; } + + + /// <summary> + /// 娓犻亾浣i噾姣斾緥 + /// </summary> + public decimal ChannlesRakeRate { get; set; } + + /// <summary> + /// 浣i噾 + /// </summary> + public decimal ChannlesRakePrice { get; set; } + + /// <summary> + /// 缁撶畻鏃堕棿 + /// </summary> + public DateTime FinishTime { get; set; } + + /// <summary> + /// 鎷撳睍灞炴�� + /// </summary> + public string ExtraProperties { get; set; } + + /// <summary> + /// 涓嬪崟娓犻亾 + /// </summary> + public string ChannelId { get; set; } } public class LifePayExpensesReceiptsPageInput : ChannelsBaseInput { @@ -736,4 +819,43 @@ public decimal Amount { get; set; } public string ExpensesReceiptsOrder { get; set; } +} +public class LifePayChannlesRakePageInput : ChannelsBaseInput +{ + + /// <summary> + /// 鏌ヨ鏉′欢 + /// </summary> + public string? KeyWord { get; set; } + + /// <summary> + /// 娓犻亾鍙� + /// </summary> + public string? ChannelId { get; set; } + + /// <summary> + /// 璧峰涓嬪崟鏃堕棿 + /// </summary> + public DateTime? CreationTimeBegin { get; set; } + + /// <summary> + /// 缁撴潫涓嬪崟鏃堕棿 + /// </summary> + public DateTime? CreationTimeEnd { get; set; } + + /// <summary> + /// 璧峰缁撶畻鏃堕棿 + /// </summary> + public DateTime? FinishTimeBegin { get; set; } + + /// <summary> + /// 缁堟缁撶畻鏃堕棿 + /// </summary> + public DateTime? FinishTimeEnd { get; set; } + +} + +public class TopStatisticsInput +{ + public List<string>? ChannleList { get; set; } } \ No newline at end of file -- Gitblit v1.9.1