using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DOAN.Model.MES.group { /// /// 人员与技能关联表 /// [SugarTable("group_rel_person_skill")] public class GroupRelPersonSkill { /// /// 技能id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_skill_id")] public string FkSkillId { get; set; } /// /// 人员id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false, ColumnName = "fk_person_id")] public string FkPersonId { get; set; } /// /// 评分 /// public int? Score { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } } }