From 7eca0ab1b6d5142d623efd471985b2a20b559616 Mon Sep 17 00:00:00 2001
From: 小飞侠 <8277136+liaoxujun@user.noreply.gitee.com>
Date: 星期一, 01 十二月 2025 10:55:02 +0800
Subject: [PATCH] 修正审批备注长度
---
cylsg/cylsg.Model/OrderModel/Order.cs | 36 ++++++++++++++++++++++++++++++++----
1 files changed, 32 insertions(+), 4 deletions(-)
diff --git a/cylsg/cylsg.Model/OrderModel/Order.cs b/cylsg/cylsg.Model/OrderModel/Order.cs
index b76a4e7..6e14730 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>
/// 闇�姹�
@@ -80,7 +95,7 @@
/// 宸ヤ綔鏂瑰紡
/// </summary>
[SugarColumn(ColumnDescription = "宸ヤ綔鏂瑰紡", IsNullable = true)]
- public WorkerTypes? WorkerType { get; set; }
+ public int? WorkerType { get; set; }
/// <summary>
@@ -89,12 +104,25 @@
[SugarColumn(ColumnDescription = "宸ヤ环", Length = 18, DecimalDigits = 2, IsNullable = true)]
public decimal? WorkPrice { get; set; }
+ /// <summary>
+ /// 宸ヤ环涓婇檺
+ /// </summary>
+ [SugarColumn(ColumnDescription = "宸ヤ环涓婇檺", Length = 18, DecimalDigits = 2, IsNullable = true)]
+ public decimal? WorkPriceMax { get; set; }
+
/// <summary>
/// 鎷涘伐鐘舵��
/// </summary>
[SugarColumn(ColumnDescription = "鎷涘伐鐘舵��", IsNullable = true)]
- public OrderStatuses? OrderStatus { get; set; }
+ public int? OrderStatus { get; set; }
+
+
+ /// <summary>
+ /// 鑷瀹夋帓宸ヤ綔鏃堕棿
+ /// </summary>
+ [SugarColumn(ColumnDescription = "鑷瀹夋帓宸ヤ綔鏃堕棿", IsNullable = true,DefaultValue = "0")]
+ public bool? Zixinganpai { get; set; }
}
--
Gitblit v1.9.1