班组修改

This commit is contained in:
qianhao.xu
2025-03-12 15:32:38 +08:00
parent 2ca013bcb5
commit d09cb93aa7
35 changed files with 3408 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
using System.ComponentModel.DataAnnotations;
namespace DOAN.Model.MES.group.Dto
{
/// <summary>
/// 人员查询对象
/// </summary>
public class GroupPersonQueryDto : PagerInfo
{
public string WorkNum { get; set; }
public string Name { get; set; }
public string FkPost { get; set; }
public int? Status { get; set; }
}
/// <summary>
/// 人员输入输出对象
/// </summary>
public class GroupPersonDto
{
public string Id { get; set; }
[Required(ErrorMessage = "岗位不能为空")]
public string FkPost { get; set; }
public string PostName { get; set; }
public string WorkNum { get; set; }
public string Name { get; set; }
public DateTime? EmploymentTime { get; set; }
public DateTime? DepartureTime { get; set; }
public string Phone { get; set; }
public int? Status { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public string UpdatedTime { get; set; }
}
}