From 149ce84eb71311ccd9719dc4a883aa9b6e63eeb6 Mon Sep 17 00:00:00 2001
From: zhengyuxuan <zhengyuxuan1995>
Date: 星期四, 20 三月 2025 12:58:49 +0800
Subject: [PATCH] fix:订单列表新增字段
---
LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs | 149 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 148 insertions(+), 1 deletions(-)
diff --git a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
index 2a06944..845117b 100644
--- a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
+++ b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
@@ -1,5 +1,6 @@
锘縰sing LifePayment.Domain.Shared;
using System;
+using System.Collections.Generic;
using ZeroD.Base.Web.Models;
namespace LifePayment.Application.Contracts;
@@ -21,6 +22,98 @@
public Guid? Id { get; set; }
}
+public class LifePayPremiumInput
+{
+ public LifePayTypeEnum PremiumType { get; set; }
+
+ public decimal Rate { get; set; }
+
+ public Guid? Id { get; set; }
+}
+
+public class LifePayIntroInfoInput
+{
+ /// <summary>
+ /// 鐢熸椿缂磋垂绫诲瀷
+ /// </summary>
+ public LifePayOrderTypeEnum LifePayType { get; set; }
+
+ /// <summary>
+ /// 鏇存柊鍐呭
+ /// </summary>
+ public List<LifePayIntroInfoDetail> Data { get; set; }
+}
+
+public class LifePayIntroInfoDetail
+{
+ /// <summary>
+ /// 绫诲瀷
+ /// </summary>
+ public IntroInfoTypeEnum Type { get; set; }
+
+ /// <summary>
+ /// 鎽樿
+ /// </summary>
+ public string ContentSummary { get; set; }
+
+ /// <summary>
+ /// 鏂囨湰鍐呭
+ /// </summary>
+ public string Content { get; set; }
+
+ /// <summary>
+ /// 鍥剧墖/瑙嗛璺緞
+ /// </summary>
+ public string Path { get; set; }
+
+ /// <summary>
+ /// 鎺掑簭
+ /// </summary>
+ public int Sequence { get; set; }
+}
+
+public class LifePayPremiumListOutput
+{
+ public LifePayTypeEnum PremiumType { get; set; }
+
+ public decimal Rate { get; set; }
+
+ public Guid Id { get; set; }
+}
+
+public class LifePayIntroInfoOutput
+{
+ /// <summary>
+ /// 绫诲瀷
+ /// </summary>
+ public IntroInfoTypeEnum Type { get; set; }
+
+
+ /// <summary>
+ /// 鐢熸椿缂磋垂绫诲瀷
+ /// </summary>
+ public LifePayOrderTypeEnum LifePayType { get; set; }
+
+ /// <summary>
+ /// 鎽樿
+ /// </summary>
+ public string ContentSummary { get; set; }
+
+ /// <summary>
+ /// 鏂囨湰鍐呭
+ /// </summary>
+ public string Content { get; set; }
+
+ /// <summary>
+ /// 鍥剧墖/瑙嗛璺緞
+ /// </summary>
+ public string Path { get; set; }
+
+ /// <summary>
+ /// 鎺掑簭
+ /// </summary>
+ public int Sequence { get; set; }
+}
public class UserListOutput
{
@@ -30,6 +123,21 @@
/// 鐢ㄦ埛鎵嬫満鍙�
/// </summary>
public string PhoneNumber { get; set; }
+
+ /// <summary>
+ /// 濮撳悕
+ /// </summary>
+ public string Name { get; set; }
+
+ /// <summary>
+ /// 鏈�鍚庣櫥褰曟笭閬�
+ /// </summary>
+ public string? CreationChannle { get; set; }
+
+ /// <summary>
+ /// 鏈�鍚庣櫥褰曟笭閬�
+ /// </summary>
+ public string? LastLoginChannle { get; set; }
public DateTime? LastLoginTime { get; set; }
@@ -73,6 +181,11 @@
public decimal RechargeAmount { get; set; }
/// <summary>
+ /// 瀹為檯鍏呭�奸噾棰�
+ /// </summary>
+ public decimal? ActualRechargeAmount { get; set; }
+
+ /// <summary>
/// 浼樻儬閲戦
/// </summary>
public decimal DiscountAmount { get; set; }
@@ -86,6 +199,12 @@
/// 鏀粯鏃堕棿
/// </summary>
public DateTime? PayTime { get; set; }
+
+
+ /// <summary>
+ /// 骞冲彴鎵f閲戦
+ /// </summary>
+ public decimal? PlatformDeductionAmount { get; set; }
/// <summary>
/// 鏀粯鐘舵��
@@ -122,12 +241,25 @@
/// </summary>
public DateTime? RefundTime { get; set; }
-
+ /// <summary>
+ /// 鐢宠閫�娆惧師鍥�
+ /// </summary>
public string RefundApplyRemark { get; set; }
+ /// <summary>
+ /// 椹冲洖鍘熷洜
+ /// </summary>
public string RefundCheckRemark { get; set; }
+ /// <summary>
+ /// 骞冲彴璁㈠崟鍙�
+ /// </summary>
public string ACOOLYOrderNo { get; set; }
+
+ /// <summary>
+ /// 渚涘簲鍟�
+ /// </summary>
+ public ACOOLYStatusEnum? ACOOLYStatus { get; set; }
}
@@ -396,4 +528,19 @@
public DateTime CreationTime { get; set; }
public bool IsDeleted { get; set; }
+}
+
+public class TopStatisticsOutput
+{
+ /// <summary>
+ /// 璐︽埛浣欓
+ /// </summary>
+ public string Amount { get; set; }
+
+ /// <summary>
+ /// 绱鏀舵
+ /// </summary>
+ public string AccumulatedReceipts { get; set; }
+
+
}
\ No newline at end of file
--
Gitblit v1.9.1