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/LifePayOutput.cs |   19 +++++++++++++++----
 1 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
index 3ef7c0e..2cd8b14 100644
--- a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
+++ b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
@@ -286,7 +286,7 @@
     /// <summary>
     /// 瀹為檯鍒拌处閲戦
     /// </summary>
-    public decimal ActualReceivedAmount { get; set; }
+    public decimal? ActualReceivedAmount { get; set; }
 
     public LifePayStatusEnum? ActualReceivedStatus { get; set; }
 }
@@ -532,6 +532,9 @@
 
     [Name("瀹屾垚鏃堕棿")]
     public string? FinishTimeStr { get; set; }
+
+    [Name("骞冲彴璁㈠崟鍙�")]
+    public string OrderNo { get; set; }
 
 
 }
@@ -1096,7 +1099,10 @@
     /// </summary>
     public int YesterdayActiveUsers { get; set; }
 
-
+    /// <summary>
+    /// 绱浣i噾
+    /// </summary>
+    public decimal AccumulatedChannlesRakePrice { get; set; }
 }
 
 public class ChannelRateOutput
@@ -1226,6 +1232,11 @@
     /// 鐢ㄦ埛Id
     /// </summary>
     public Guid UserId { get; set; }
+
+    /// <summary>
+    /// 鎺ㄥ箍鍛業D
+    /// </summary>
+    public string PromoterIdNumber { get; set; }
 
     /// <summary>
     /// 鏄惁鏄悗鍙扮敤鎴�
@@ -1441,7 +1452,7 @@
     /// <summary>
     /// 缁撶畻鏃堕棿
     /// </summary>
-    public DateTime FinishTime { get; set; }
+    public DateTime? FinishTime { get; set; }
 
     /// <summary>
     /// 涓嬪崟鏃堕棿
@@ -1505,7 +1516,7 @@
     /// <summary>
     /// 缁撶畻鏃堕棿
     /// </summary>
-    public DateTime FinishTime { get; set; }
+    public DateTime? FinishTime { get; set; }
 
     [Name("缁撶畻鏃堕棿")]
     public string FinishTimeStr { get; set; }

--
Gitblit v1.9.1