班组修改
This commit is contained in:
35
DOAN.Model/MES/Group/Dto/GroupPersonOfSkillDto.cs
Normal file
35
DOAN.Model/MES/Group/Dto/GroupPersonOfSkillDto.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DOAN.Model.MES.group.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 人员的技能
|
||||
/// </summary>
|
||||
public class GroupPersonOfSkillDto
|
||||
{
|
||||
/// <summary>
|
||||
/// 工位描述
|
||||
/// </summary>
|
||||
public string WorkStationDescription { get; set; }
|
||||
/// <summary>
|
||||
/// 技能id
|
||||
/// </summary>
|
||||
public string FkSkillId { get; set; }
|
||||
/// <summary>
|
||||
/// 技能名称
|
||||
/// </summary>
|
||||
|
||||
public string SkillName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 评分
|
||||
/// </summary>
|
||||
public int? Score { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user