| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S0.Manufacturing;
- /// <summary>
- /// 生产线物料维护(源平台 ProdLineDetail)。
- /// </summary>
- [SugarTable("ProdLineDetail", "生产线物料维护表")]
- public class AdoS0ProdLineDetail
- {
- [SugarColumn(ColumnName = "id", ColumnDescription = "生产线物料主键", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")]
- public long Id { get; set; }
- [SugarColumn(ColumnName = "part", ColumnDescription = "物料编码", Length = 100)]
- public string Part { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "op", ColumnDescription = "工序编码", Length = 100, IsNullable = true)]
- public string? Op { get; set; }
- [SugarColumn(ColumnName = "site", ColumnDescription = "工作中心编码", Length = 100, IsNullable = true)]
- public string? Site { get; set; }
- [SugarColumn(ColumnName = "line", ColumnDescription = "设备/生产线编码", Length = 100, IsNullable = true)]
- public string? Line { get; set; }
- [SugarColumn(ColumnName = "rate", ColumnDescription = "单位标准产能(小时)", DecimalDigits = 6, Length = 18, IsNullable = true)]
- public decimal? Rate { get; set; }
- [SugarColumn(ColumnName = "setup_time", ColumnDescription = "换模时间(小时)", DecimalDigits = 6, Length = 18, IsNullable = true)]
- public decimal? SetupTime { get; set; }
- [SugarColumn(ColumnName = "skill_no", ColumnDescription = "员工技能编码", Length = 100, IsNullable = true)]
- public string? SkillNo { get; set; }
- [SugarColumn(ColumnName = "internal_equipment_type_code", ColumnDescription = "厂内设备类型编码", Length = 100, IsNullable = true)]
- public string? InternalEquipmentTypeCode { get; set; }
- [SugarColumn(ColumnName = "mold_type_code", ColumnDescription = "模具类型编码", Length = 100, IsNullable = true)]
- public string? MoldTypeCode { get; set; }
- [SugarColumn(ColumnName = "standard_staff_count", ColumnDescription = "标准人数", IsNullable = true)]
- public int? StandardStaffCount { get; set; }
- [SugarColumn(ColumnName = "start", ColumnDescription = "起始标记/顺序", IsNullable = true)]
- public int? Start { get; set; }
- [SugarColumn(ColumnName = "is_active", ColumnDescription = "是否启用", ColumnDataType = "boolean")]
- public bool IsActive { get; set; } = true;
- [SugarColumn(ColumnName = "is_confirm", ColumnDescription = "是否确认", ColumnDataType = "boolean")]
- public bool IsConfirm { get; set; }
- [SugarColumn(ColumnName = "domain", ColumnDescription = "工厂域编码", Length = 50)]
- public string Domain { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "create_user", ColumnDescription = "创建人", Length = 64, IsNullable = true)]
- public string? CreateUser { get; set; }
- [SugarColumn(ColumnName = "create_time", ColumnDescription = "创建时间", IsNullable = true)]
- public DateTime? CreateTime { get; set; }
- [SugarColumn(ColumnName = "update_user", ColumnDescription = "更新人", Length = 64, IsNullable = true)]
- public string? UpdateUser { get; set; }
- [SugarColumn(ColumnName = "update_time", ColumnDescription = "更新时间", IsNullable = true)]
- public DateTime? UpdateTime { get; set; }
- }
|