zhuangpei-mesbackend/DOAN.Model/MES/group/Dto/GroupPersonSkillDto.cs

90 lines
2.1 KiB
C#
Raw Normal View History

2024-08-12 14:41:07 +08:00
using System.ComponentModel.DataAnnotations;
namespace DOAN.Model.MES.group.Dto
{
/// <summary>
/// 人员技能查询对象
2024-08-12 14:41:07 +08:00
/// </summary>
2024-08-12 16:33:07 +08:00
public class GroupPersonSkillQueryDto : PagerInfo
2024-08-12 14:41:07 +08:00
{
2024-08-12 15:11:01 +08:00
public string SkillName { get; set; }
public int? Status { get; set; }
2024-08-12 14:41:07 +08:00
}
2024-08-12 16:33:07 +08:00
public class GroupPersonSkillQueryDto2 : PagerInfo
{
public string SkillName { get; set; }
public int? Status { get; set; }
public string person_id { get; set; }
}
2024-08-12 18:55:42 +08:00
public class GroupPersonSkillQueryDto3 : PagerInfo
{
public string SkillName { get; set; }
public int? Status { get; set; }
public int workstation_id { get; set; }
2024-08-12 18:55:42 +08:00
}
//public class GroupPersonSkillQueryDto3 : PagerInfo
//{
// public string DictWorkType { get; set; }
// public string WorkStationDescription { get; set; }
//}
2024-08-12 14:41:07 +08:00
/// <summary>
2024-08-12 16:13:24 +08:00
/// 人员技能输入输出对象
2024-08-12 14:41:07 +08:00
/// </summary>
2024-08-12 16:13:24 +08:00
public class GroupPersonSkillDto
2024-08-12 14:41:07 +08:00
{
[Required(ErrorMessage = "雪花不能为空")]
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; }
2024-08-12 16:13:24 +08:00
}
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; }
2024-08-12 14:41:07 +08:00
}
}