username@email.com
2025-07-01 5856a6e5de198436bc112923609db21c9a45fd10
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,11 @@
        /// </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; }
    }
}