using cylsg.Core.Attributes; using cylsg.Core; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; namespace cylsg.Model.OrderModel { /// /// 招工工人历史工价 /// [Description("招工工人历史工价")] [CoderFirst] public class OrderBiddingWorkPrice : BaseModel { /// /// 招工Id /// [SugarColumn(ColumnDescription = "招工Id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 工人投递id /// [SugarColumn(ColumnDescription = "工人投递id")] public int OrderBiddingId { get; set; } /// /// 工价 /// [SugarColumn(ColumnDescription = "工价", Length = 18, DecimalDigits = 2, IsNullable = true)] public decimal? WorkPrice { get; set; } /// /// 生效时间 /// [SugarColumn(ColumnDescription = "生效时间", IsNullable = true)] public DateTime? EffectTime { get; set; } } }