AdoS0EmpSkills.cs 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. namespace Admin.NET.Plugin.AiDOP.Entity.S0.Manufacturing;
  2. /// <summary>
  3. /// 人员技能维护(源平台 EmpSkills:员工与技能关系表)。
  4. /// </summary>
  5. [SugarTable("EmpSkills", "人员技能关系表")]
  6. public class AdoS0EmpSkills
  7. {
  8. [SugarColumn(ColumnDescription = "人员技能主键", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")]
  9. public long Id { get; set; }
  10. [SugarColumn(ColumnDescription = "人员编号", Length = 100)]
  11. public string Employee { get; set; } = string.Empty;
  12. [SugarColumn(ColumnDescription = "人员内部 ID", Length = 100, IsNullable = true)]
  13. public string? EmployeeId { get; set; }
  14. [SugarColumn(ColumnDescription = "人员名称", Length = 100, IsNullable = true)]
  15. public string? EmployeeName { get; set; }
  16. [SugarColumn(ColumnDescription = "工作组", Length = 100, IsNullable = true)]
  17. public string? Site { get; set; }
  18. [SugarColumn(ColumnDescription = "技能编码", Length = 100)]
  19. public string SkillNo { get; set; } = string.Empty;
  20. [SugarColumn(ColumnDescription = "技能描述", Length = 255, IsNullable = true)]
  21. public string? SkillDescription { get; set; }
  22. [SugarColumn(ColumnDescription = "技能等级", Length = 50, IsNullable = true)]
  23. public string? SkillLevel { get; set; }
  24. [SugarColumn(ColumnDescription = "生产效率", DecimalDigits = 6, Length = 18, IsNullable = true)]
  25. public decimal? EfficiencyCoefficient { get; set; }
  26. [SugarColumn(ColumnDescription = "技能日期", IsNullable = true)]
  27. public DateTime? DateSkill { get; set; }
  28. [SugarColumn(ColumnDescription = "工厂域编码", Length = 50)]
  29. public string Domain { get; set; } = string.Empty;
  30. [SugarColumn(ColumnDescription = "创建人", Length = 64, IsNullable = true)]
  31. public string? CreateUser { get; set; }
  32. [SugarColumn(ColumnDescription = "创建时间", IsNullable = true)]
  33. public DateTime? CreateTime { get; set; }
  34. [SugarColumn(ColumnDescription = "更新人", Length = 64, IsNullable = true)]
  35. public string? UpdateUser { get; set; }
  36. [SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
  37. public DateTime? UpdateTime { get; set; }
  38. }