using cylsg.Core; using cylsg.Core.Attributes; using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace cylsg.Model.OrderModel { /// /// 工人投递 /// [Description("工人投递")] [CoderFirst] public class OrderBidding : BaseModel { /// /// 工人投递Id /// [SugarColumn(ColumnDescription = "工人投递Id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 用户id /// [SugarColumn(ColumnDescription = "用户id")] public int WorkerUserId { get; set; } /// /// 招工id /// [SugarColumn(ColumnDescription = "招工id")] public int OrderId { get; set; } /// /// 是否选中 /// [SugarColumn(ColumnDescription = "是否选中", IsNullable = true)] public bool? IsSelected { get; set; } /// /// 选中时间 /// [SugarColumn(ColumnDescription = "选中时间", IsNullable = true)] public DateTime? Selectedtime { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", ColumnDataType = "nvarchar(250)", IsNullable = true)] public string Remark { get; set; } /// /// 工资总额 /// [SugarColumn(ColumnDescription = "工资总额", Length = 18, DecimalDigits = 2, IsNullable = true)] public decimal? Salary { get; set; } } }