From 82831a86d529817e51f5b6e3cec636d21cef3c9b Mon Sep 17 00:00:00 2001 From: zhengyuxuan <zhengyuxuan1995> Date: 星期三, 19 三月 2025 16:17:40 +0800 Subject: [PATCH] fix:bug修复 --- LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 108 insertions(+), 0 deletions(-) diff --git a/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs b/LifePayment/LifePayment.Application.Contracts/LifePay/LifePayOutput.cs index 2a06944..b1fc7b3 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,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; } public DateTime? CreationTime { get; set; } -- Gitblit v1.9.1