using SqlSugar; namespace MES.Service.Modes; /// /// 线体 /// [SugarTable("MES_LINE")] public class MesLine { /// /// 主键 /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal Id { get; set; } /// /// 线体编号 /// [SugarColumn(ColumnName = "LINE_NO")] public string LineNo { get; set; } /// /// 线体名称 /// [SugarColumn(ColumnName = "LINE_NAME")] public string LineName { get; set; } /// /// 工作中心编号 /// [SugarColumn(ColumnName = "WORKSHOP_CENTER_CODE")] public string WorkshopCenterCode { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "MEMO")] public string Memo { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "CREATE_BY")] public string CreateBy { get; set; } /// /// 创建日期 /// [SugarColumn(ColumnName = "CREATE_DATE")] public DateTime? CreateDate { get; set; } /// /// 最后修改人 /// [SugarColumn(ColumnName = "LASTUPDATE_BY")] public string LastupdateBy { get; set; } /// /// 最后修改日期 /// [SugarColumn(ColumnName = "LASTUPDATE_DATE")] public DateTime? LastupdateDate { get; set; } /// /// 卡板分类 /// [SugarColumn(ColumnName = "BK01")] public string Bk01 { get; set; } /// /// 标签显示值 /// [SugarColumn(ColumnName = "LABEL")] public string Label { get; set; } /// /// 车间简码 /// [SugarColumn(ColumnName = "WORKHOMEJM")] public string Workhomejm { get; set; } /// /// 线简码 /// [SugarColumn(ColumnName = "LINEJM")] public string Linejm { get; set; } /// /// 条码类型 /// [SugarColumn(ColumnName = "BARTYPE")] public string Bartype { get; set; } /// /// 微信显示值 /// [SugarColumn(ColumnName = "WX_LABLE")] public string WxLable { get; set; } /// /// 区分锂锰锂亚 /// [SugarColumn(ColumnName = "WORKCENTERTYPE")] public string Workcentertype { get; set; } /// /// [SugarColumn(ColumnName = "SIMPLENAME")] public string Simplename { get; set; } /// /// [SugarColumn(ColumnName = "SHOW_INDEX")] public decimal? ShowIndex { get; set; } /// /// [SugarColumn(ColumnName = "COMPANY")] public string Company { get; set; } /// /// [SugarColumn(ColumnName = "FACTORY")] public string Factory { get; set; } /// /// 线边仓库 /// [SugarColumn(ColumnName = "DEPOT_CODE")] public string DepotCode { get; set; } /// /// 默认库位 /// [SugarColumn(ColumnName = "DEPOT_SECTION_CODE")] public string DepotSectionCode { get; set; } /// /// 报工方式(0、离散报工,1、整线报工) /// [SugarColumn(ColumnName = "WORK_TYPE")] public decimal? WorkType { get; set; } /// /// 部门编号 /// [SugarColumn(ColumnName = "DEPARTMENTCODE")] public string Departmentcode { get; set; } /// /// 所属工序 /// [SugarColumn(ColumnName = "PROC_NO")] public string ProcNo { get; set; } /// /// [SugarColumn(ColumnName = "LINE_STYLE")] public string LineStyle { get; set; } /// /// 组长编号 /// [SugarColumn(ColumnName = "L_CODE")] public string LCode { get; set; } }