using SqlSugar; namespace MES.Service.Modes; /// /// 模具号信息实体类 /// [SugarTable("MES_MOULD")] public class MesMould { /// /// 主键ID /// [SugarColumn(ColumnName = "ID", IsPrimaryKey = true, OracleSequenceName = "SEQ_MES_MOULD")] public decimal? Id { get; set; } /// /// 编码(如 LT101921) /// [SugarColumn(ColumnName = "CODE")] public string? Code { get; set; } /// /// 名称(如 LT101921) /// [SugarColumn(ColumnName = "NAME")] public string? Name { get; set; } /// /// 数据状态 /// [SugarColumn(ColumnName = "DATA_STATUS")] public string? DataStatus { get; set; } /// /// 旧模具号 /// [SugarColumn(ColumnName = "OLD_MOULD_NO")] public string? OldMouldNo { get; set; } /// /// 穴数 /// [SugarColumn(ColumnName = "CAVITY")] public string? Cavity { get; set; } /// /// 周期(单位:秒) /// [SugarColumn(ColumnName = "CYCLE")] public string? Cycle { get; set; } /// /// 产能 /// [SugarColumn(ColumnName = "CAPACITY")] public string? Capacity { get; set; } /// /// 机型 /// [SugarColumn(ColumnName = "MACHINE_TYPE")] public string? MachineType { get; set; } /// /// 禁用状态(A启用 / B禁用) /// [SugarColumn(ColumnName = "FFORBIDSTATUS")] public string? FForbidStatus { get; set; } /// /// 产品单重(g) /// [SugarColumn(ColumnName = "PRODUCT_WEIGHT")] public string? ProductWeight { get; set; } /// /// 料头(g) /// [SugarColumn(ColumnName = "MATERIAL_HEAD")] public string? MaterialHead { get; set; } /// /// 标准人力 /// [SugarColumn(ColumnName = "STANDARD_LABOR")] public string? StandardLabor { get; set; } /// /// 千片人力工时 /// [SugarColumn(ColumnName = "LABOR_HOURS_THOUSAND")] public string? LaborHoursPerThousand { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "REMARK")] public string? Remark { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATE_TIME")] public DateTime? CreateTime { get; set; } /// /// ERPID /// [SugarColumn(ColumnName = "ERP_ID")] public string? ErpId { get; set; } /// /// ERPID /// [SugarColumn(ColumnName = "TYPE")] public string? Type { get; set; } }