using SqlSugar; namespace PadApplication.Entites.DbModels; /// /// 注塑机台编码表 /// [SugarTable("MES_MACHINE")] public class MesMachine { /// /// ID /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal? Id { get; set; } /// /// 机台编号 /// [SugarColumn(ColumnName = "MACHINE_NO")] public string? MachineNo { get; set; } /// /// 机台名称 /// [SugarColumn(ColumnName = "MACHINE_NAME")] public string? MachineName { get; set; } /// /// 机台规格型号 /// [SugarColumn(ColumnName = "MACHINE_MODEL")] public string? MachineModel { get; set; } /// /// 机台条码 /// [SugarColumn(ColumnName = "BARCODE")] public string? Barcode { get; set; } /// /// [SugarColumn(ColumnName = "FACTORY")] public string? Factory { get; set; } /// /// [SugarColumn(ColumnName = "COMPANY")] public string? Company { get; set; } /// /// 部门 /// [SugarColumn(ColumnName = "DEPARTMENT")] public string? Department { get; set; } /// /// 部门编码 /// [SugarColumn(ColumnName = "DEPARTMENTCODE")] public string? Departmentcode { get; set; } /// /// 线长编号 /// [SugarColumn(ColumnName = "LINE_BY_ID")] public string? LineById { get; set; } /// /// 线长名称 /// [SugarColumn(ColumnName = "LINE_BY")] public string? LineBy { get; set; } }