From a7364f0b20a2025585dbbddd52fa42bc4b51e86d Mon Sep 17 00:00:00 2001 From: sunpengfei <i@angelzzz.com> Date: 星期一, 09 六月 2025 11:26:13 +0800 Subject: [PATCH] feat:根据用户ID获取用户是否为后台管理员 新增字段promoterIdNumber --- LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs | 84 ++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 84 insertions(+), 0 deletions(-) diff --git a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs index 715aac6..dcc6ce2 100644 --- a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs +++ b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayInput.cs @@ -460,6 +460,30 @@ public LifePayChannlesTypeEnum ChannlesType { get; set; } + /// <summary> + /// 浠g悊绫诲瀷 + /// </summary> + public LifePayChannelAgentType? AgentType { get; set; } + + /// <summary> + /// 鍖哄煙-鐪両d + /// </summary> + public int? AreaProvinceId { get; set; } + + /// <summary> + /// 鍖哄煙-甯侷d + /// </summary> + public int? AreaCityId { get; set; } + + /// <summary> + /// 鎺ㄥ箍鍛業D + /// </summary> + public string PromoterIdNumber { get; set; } + + /// <summary> + /// 鎺ㄥ箍鍛� + /// </summary> + public string PromoterName { get; set; } } public class QueryUserAccountListInput : ChannelsBaseInput @@ -704,6 +728,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 { /// <summary> @@ -803,4 +882,9 @@ public class TopStatisticsInput { public List<string>? ChannleList { get; set; } +} + +public class QueryLifePayChannlesInput +{ + public LifePayChannelsStatsEnum? Status { get; set; } } \ No newline at end of file -- Gitblit v1.9.1