From d9a1f2e7ffce03e84a9548d7c99c81e1d34ac474 Mon Sep 17 00:00:00 2001 From: username@email.com <yzy2002yzy@163.com> Date: 星期二, 08 十月 2024 15:56:41 +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