username@email.com
2025-02-05 d86bc04d0b34f2b7d9ddbd30ee703b51d48876e8
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>
        /// 需求
@@ -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 int? OrderStatus { get; set; }
        /// <summary>
        /// 自行安排工作时间
        /// </summary>
        [SugarColumn(ColumnDescription = "自行安排工作时间", IsNullable = true,DefaultValue = "0")]
        public bool? Zixinganpai { get; set; }
    }