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