| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- namespace Admin.NET.Plugin.AiDOP.Entity.S0.Manufacturing;
- /// <summary>
- /// 人员技能维护(源平台 EmpSkills:员工与技能关系表)。
- /// </summary>
- [SugarTable("EmpSkills", "人员技能关系表")]
- public class AdoS0EmpSkills
- {
- [SugarColumn(ColumnDescription = "人员技能主键", IsPrimaryKey = true, IsIdentity = true, ColumnDataType = "bigint")]
- public long Id { get; set; }
- [SugarColumn(ColumnDescription = "人员编号", Length = 100)]
- public string Employee { get; set; } = string.Empty;
- [SugarColumn(ColumnDescription = "人员内部 ID", Length = 100, IsNullable = true)]
- public string? EmployeeId { get; set; }
- [SugarColumn(ColumnDescription = "人员名称", Length = 100, IsNullable = true)]
- public string? EmployeeName { get; set; }
- [SugarColumn(ColumnDescription = "工作组", Length = 100, IsNullable = true)]
- public string? Site { get; set; }
- [SugarColumn(ColumnDescription = "技能编码", Length = 100)]
- public string SkillNo { get; set; } = string.Empty;
- [SugarColumn(ColumnDescription = "技能描述", Length = 255, IsNullable = true)]
- public string? SkillDescription { get; set; }
- [SugarColumn(ColumnDescription = "技能等级", Length = 50, IsNullable = true)]
- public string? SkillLevel { get; set; }
- [SugarColumn(ColumnDescription = "生产效率", DecimalDigits = 6, Length = 18, IsNullable = true)]
- public decimal? EfficiencyCoefficient { get; set; }
- [SugarColumn(ColumnDescription = "技能日期", IsNullable = true)]
- public DateTime? DateSkill { get; set; }
- [SugarColumn(ColumnDescription = "工厂域编码", Length = 50)]
- public string Domain { get; set; } = string.Empty;
- [SugarColumn(ColumnDescription = "创建人", Length = 64, IsNullable = true)]
- public string? CreateUser { get; set; }
- [SugarColumn(ColumnDescription = "创建时间", IsNullable = true)]
- public DateTime? CreateTime { get; set; }
- [SugarColumn(ColumnDescription = "更新人", Length = 64, IsNullable = true)]
- public string? UpdateUser { get; set; }
- [SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
- public DateTime? UpdateTime { get; set; }
- }
|