using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ZR.Model.MES.wm { /// /// 领料单 /// [SugarTable("wm_materialrequisition")] public class WmMaterialrequisition { /// /// 流水号 /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public string Id { get; set; } /// /// 毛坯零件号 /// [SugarColumn(ColumnName = "workblankpartnumber")] public string Workblankpartnumber { get; set; } /// /// 需要数量 /// [SugarColumn(ColumnName = "requirenum")] public int? Requirenum { get; set; } /// /// 状态 (0:未领料 1已经领料) /// [SugarColumn(ColumnName = "status")] public string Status { get; set; } /// /// 年 /// [SugarColumn(ColumnName = "year")] public int? Year { get; set; } /// /// 周 /// [SugarColumn(ColumnName = "week")] public int? Week { get; set; } /// /// 日 /// [SugarColumn(ColumnName = "date")] public int? Date { get; set; } /// /// 乐观锁 /// [SugarColumn(ColumnName = "REVISION")] public int? Revision { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "CREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "UPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "UPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }