90 lines
2.0 KiB
C#
90 lines
2.0 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DOAN.Model.MES.group.Dto
|
|
{
|
|
/// <summary>
|
|
/// 人员技能查询对象
|
|
/// </summary>
|
|
public class GroupPersonSkillQueryDto : PagerInfo
|
|
{
|
|
public string SkillName { get; set; }
|
|
public int? Status { get; set; }
|
|
}
|
|
public class GroupPersonSkillQueryDto2 : PagerInfo
|
|
{
|
|
public string SkillName { get; set; }
|
|
public int? Status { get; set; }
|
|
public string person_id { get; set; }
|
|
}
|
|
public class GroupPersonSkillQueryDto3 : PagerInfo
|
|
{
|
|
public string SkillName { get; set; }
|
|
public int? Status { get; set; }
|
|
public int workstation_id { get; set; }
|
|
}
|
|
|
|
//public class GroupPersonSkillQueryDto3 : PagerInfo
|
|
//{
|
|
// public string DictWorkType { get; set; }
|
|
// public string WorkStationDescription { get; set; }
|
|
//}
|
|
|
|
/// <summary>
|
|
/// 人员技能输入输出对象
|
|
/// </summary>
|
|
public class GroupPersonSkillDto
|
|
{
|
|
|
|
public string? Id { get; set; }
|
|
|
|
public string SkillName { get; set; }
|
|
|
|
public string Image { get; set; }
|
|
|
|
public string Vedio { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
public int? Status { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
|
|
public class GroupPersonSkillDto2
|
|
{
|
|
[Required(ErrorMessage = "雪花不能为空")]
|
|
public string Id { get; set; }
|
|
|
|
public string SkillName { get; set; }
|
|
|
|
public int score { get; set; }
|
|
|
|
public string Image { get; set; }
|
|
|
|
public string Vedio { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
public int? Status { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |