AdoS0LineSkillMaster.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. namespace Admin.NET.Plugin.AiDOP.Entity.S0.Manufacturing;
  2. /// <summary>
  3. /// 产线岗位维护(源平台 LineSkillMaster 语义,头表)。
  4. /// </summary>
  5. [SugarTable("LineSkillMaster", "产线岗位主表")]
  6. public class AdoS0LineSkillMaster : ITenantIdFilter
  7. {
  8. [SugarColumn(ColumnName = "RecID", ColumnDescription = "产线岗位主键", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")]
  9. public long Id { get; set; }
  10. [SugarColumn(ColumnName = "Domain", ColumnDescription = "工厂域编码", Length = 50)]
  11. public string Domain { get; set; } = string.Empty;
  12. [SugarColumn(ColumnName = "ProdLine", ColumnDescription = "生产线编码", Length = 100)]
  13. public string ProdLine { get; set; } = string.Empty;
  14. [SugarColumn(ColumnName = "JOBNo", ColumnDescription = "岗位编码", Length = 100)]
  15. public string JOBNo { get; set; } = string.Empty;
  16. [SugarColumn(ColumnName = "JOBDescr", ColumnDescription = "岗位描述", Length = 255, IsNullable = true)]
  17. public string? JOBDescr { get; set; }
  18. [SugarColumn(ColumnName = "CreateUser", ColumnDescription = "创建人", Length = 64, IsNullable = true)]
  19. public string? CreateUser { get; set; }
  20. [SugarColumn(ColumnName = "CreateTime", ColumnDescription = "创建时间", IsNullable = true)]
  21. public DateTime? CreateTime { get; set; }
  22. [SugarColumn(ColumnName = "UpdateUser", ColumnDescription = "更新人", Length = 64, IsNullable = true)]
  23. public string? UpdateUser { get; set; }
  24. [SugarColumn(ColumnName = "UpdateTime", ColumnDescription = "更新时间", IsNullable = true)]
  25. public DateTime? UpdateTime { get; set; }
  26. [SugarColumn(ColumnName = "Site", Length = 12, IsNullable = true)]
  27. public string? Site { get; set; }
  28. [SugarColumn(ColumnName = "Orderby", IsNullable = true)]
  29. public int? Orderby { get; set; }
  30. [SugarColumn(ColumnName = "WType", Length = 20, IsNullable = true)]
  31. public string? WType { get; set; }
  32. [SugarColumn(ColumnName = "RunCrew", DecimalDigits = 3, Length = 10, IsNullable = true)]
  33. public decimal? RunCrew { get; set; }
  34. [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
  35. public long? TenantId { get; set; }
  36. }