namespace Admin.NET.Plugin.AiDOP.Entity.S0.Manufacturing; /// /// 产线岗位维护(源平台 LineSkillMaster 语义,头表)。 /// [SugarTable("LineSkillMaster", "产线岗位主表")] [SugarIndex("uk_LineSkillMaster_domain_job", nameof(Domain), OrderByType.Asc, nameof(JOBNo), OrderByType.Asc, IsUnique = true)] public class AdoS0LineSkillMaster { [SugarColumn(ColumnName = "RecID", ColumnDescription = "产线岗位主键", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")] public long Id { get; set; } [SugarColumn(ColumnName = "Domain", ColumnDescription = "工厂域编码", Length = 50)] public string Domain { get; set; } = string.Empty; [SugarColumn(ColumnName = "ProdLine", ColumnDescription = "生产线编码", Length = 100)] public string ProdLine { get; set; } = string.Empty; [SugarColumn(ColumnName = "JOBNo", ColumnDescription = "岗位编码", Length = 100)] public string JOBNo { get; set; } = string.Empty; [SugarColumn(ColumnName = "JOBDescr", ColumnDescription = "岗位描述", Length = 255, IsNullable = true)] public string? JOBDescr { get; set; } [SugarColumn(ColumnName = "CreateUser", ColumnDescription = "创建人", Length = 64, IsNullable = true)] public string? CreateUser { get; set; } [SugarColumn(ColumnName = "CreateTime", ColumnDescription = "创建时间", IsNullable = true)] public DateTime? CreateTime { get; set; } [SugarColumn(ColumnName = "UpdateUser", ColumnDescription = "更新人", Length = 64, IsNullable = true)] public string? UpdateUser { get; set; } [SugarColumn(ColumnName = "UpdateTime", ColumnDescription = "更新时间", IsNullable = true)] public DateTime? UpdateTime { get; set; } }