| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S0.Manufacturing;
- /// <summary>
- /// 产线岗位维护(源平台 LineSkillMaster 语义,头表)。
- /// </summary>
- [SugarTable("LineSkillMaster", "产线岗位主表")]
- public class AdoS0LineSkillMaster : ITenantIdFilter
- {
- [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; }
- [SugarColumn(ColumnName = "Site", Length = 12, IsNullable = true)]
- public string? Site { get; set; }
- [SugarColumn(ColumnName = "Orderby", IsNullable = true)]
- public int? Orderby { get; set; }
- [SugarColumn(ColumnName = "WType", Length = 20, IsNullable = true)]
- public string? WType { get; set; }
- [SugarColumn(ColumnName = "RunCrew", DecimalDigits = 3, Length = 10, IsNullable = true)]
- public decimal? RunCrew { get; set; }
- [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
- public long? TenantId { get; set; }
- }
|