From 72e71a7a31b14f30f38a2a3acecb7311049c608a Mon Sep 17 00:00:00 2001
From: 移动系统liao <liaoxujun@qq.com>
Date: 星期二, 24 九月 2024 14:55:25 +0800
Subject: [PATCH] 完成微信转账到零钱所有逻辑
---
cylsg/cylsg.Model/OrderModel/Order.cs | 19 +++++++++++++++++--
1 files changed, 17 insertions(+), 2 deletions(-)
diff --git a/cylsg/cylsg.Model/OrderModel/Order.cs b/cylsg/cylsg.Model/OrderModel/Order.cs
index bad6fe3..d901ab2 100644
--- a/cylsg/cylsg.Model/OrderModel/Order.cs
+++ b/cylsg/cylsg.Model/OrderModel/Order.cs
@@ -37,18 +37,33 @@
public string OrderName { get; set; }
/// <summary>
+ /// 宸ヤ綔寮�濮嬫棩鏈�
+ /// </summary>
+ [Display(Name = "宸ヤ綔寮�濮嬫棩鏈�")]
+ [SugarColumn(ColumnDescription = "宸ヤ綔寮�濮嬫棩鏈�", IsNullable = true)]
+ public DateTime? WordStartTime { get; set; }
+
+ /// <summary>
+ /// 宸ヤ綔缁撴潫鏃堕棿
+ /// </summary>
+ [Display(Name = "宸ヤ綔缁撴潫鏃ユ湡")]
+ [SugarColumn(ColumnDescription = "宸ヤ綔缁撴潫鏃ユ湡", IsNullable = true)]
+ public DateTime? WordEndTime { get; set; }
+
+
+ /// <summary>
/// 宸ヤ綔寮�濮嬫椂闂�
/// </summary>
[Display(Name = "宸ヤ綔寮�濮嬫椂闂�")]
[SugarColumn(ColumnDescription = "宸ヤ綔寮�濮嬫椂闂�", IsNullable = true)]
- public DateTime? WordStartTime { get; set; }
+ public DateTime? StartTime { get; set; }
/// <summary>
/// 宸ヤ綔缁撴潫鏃堕棿
/// </summary>
[Display(Name = "宸ヤ綔缁撴潫鏃堕棿")]
[SugarColumn(ColumnDescription = "宸ヤ綔缁撴潫鏃堕棿", IsNullable = true)]
- public DateTime? WordEndTime { get; set; }
+ public DateTime? EndTime { get; set; }
/// <summary>
/// 闇�姹�
--
Gitblit v1.9.1