From b525fe659614934f253ed9c8b59c38cfebb3bc15 Mon Sep 17 00:00:00 2001
From: lingling <kety1122@163.com>
Date: 星期三, 19 三月 2025 13:21:07 +0800
Subject: [PATCH] Merge branch 'master' of http://120.26.58.240:8888/r/LifePaymentApi

---
 LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs |  103 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 103 insertions(+), 0 deletions(-)

diff --git a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs
index 2a06944..38e0d09 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
 {
@@ -31,6 +124,16 @@
     /// </summary>
     public string PhoneNumber { get; set; }
 
+    /// <summary>
+    /// 鏈�鍚庣櫥褰曟笭閬�
+    /// </summary>
+    public string CreationChannle { get; set; }
+
+    /// <summary>
+    /// 鏈�鍚庣櫥褰曟笭閬�
+    /// </summary>
+    public string LastLoginChannle { get; set; }
+
     public DateTime? LastLoginTime { get; set; }
 
     public DateTime? CreationTime { get; set; }

--
Gitblit v1.9.1