| 12345678910111213141516171819202122232425262728293031323334353637 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S0.Manufacturing;
- /// <summary>
- /// 产线岗位维护(源平台 LineSkillMaster 语义,头表)。
- /// </summary>
- [SugarTable("LineSkillMaster", "产线岗位主表")]
- [SugarIndex("uk_LineSkillMaster_domain_job", nameof(Domain), OrderByType.Asc, nameof(JOBNo), OrderByType.Asc, IsUnique = true)]
- public class AdoS0LineSkillMaster
- {
- [SugarColumn(ColumnName = "id", 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 = "prod_line", ColumnDescription = "生产线编码", Length = 100)]
- public string ProdLine { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "job_no", ColumnDescription = "岗位编码", Length = 100)]
- public string JOBNo { get; set; } = string.Empty;
- [SugarColumn(ColumnName = "job_descr", ColumnDescription = "岗位描述", Length = 255, IsNullable = true)]
- public string? JOBDescr { get; set; }
- [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; }
- }
|