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