using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DOAN.Model.MES.group.Dto
{
///
/// 人员的技能
///
public class GroupPersonOfSkillDto
{
///
/// 工位描述
///
public string WorkStationDescription { get; set; }
///
/// 技能id
///
public string FkSkillId { get; set; }
///
/// 技能名称
///
public string SkillName { get; set; }
///
/// 评分
///
public int? Score { get; set; }
}
}