using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.ComponentModel.DataAnnotations; using Microsoft.EntityFrameworkCore; namespace Business.Domain { /// /// 人员技能矩阵 /// [Comment("人员技能矩阵")] public class EmpSkills { /// /// 主键 /// [Comment("主键")] [Key] public long RecID { get; set; } /// /// 雇员名称 /// [Comment("雇员名称")] public string EmployeeName { get; set; } /// /// 技能编码 /// [Comment("技能编码")] public string SkillNo { get; set; } /// /// 雇员工号 /// [Comment("雇员工号")] public string EmployeeID { get; set; } /// /// 技能描述 /// [Comment("技能描述")] public string SkillDescription { get; set; } /// /// 技能等级 /// [Comment("技能等级")] public decimal SkillLevel { get; set; } } }