小飞侠
2026-04-09 2ff9e22aa01202003c8ba2b3d7c91226e61de1f8
cylsg/cylsg.Model/OrderModel/OrderBidding.cs
@@ -29,6 +29,12 @@
        [SugarColumn(ColumnDescription = "用户id")]
        public int WorkerUserId { get; set; }
        /// <summary>
        /// 招工id
        /// </summary>
        [SugarColumn(ColumnDescription = "招工id")]
        public int OrderId { get; set; }
        /// <summary>
        /// 是否选中
@@ -53,5 +59,19 @@
        /// </summary>
        [SugarColumn(ColumnDescription = "工资总额", Length = 18, DecimalDigits = 2, IsNullable = true)]
        public decimal? Salary { get; set; }
        /// <summary>
        /// 是否收藏
        /// </summary>
        [SugarColumn(ColumnDescription = "是否收藏", IsNullable = true)]
        public bool? IsCollect { get; set; }
        /// <summary>
        /// 是否固定  晚上8点之后15块    早八点到晚八点11块
        /// </summary>
        [SugarColumn(ColumnDescription = "是否固定", IsNullable = true)]
        public bool? IsGuding { get; set; }
    }
}