班组修改
This commit is contained in:
41
DOAN.Model/MES/Group/Dto/GroupPostDto.cs
Normal file
41
DOAN.Model/MES/Group/Dto/GroupPostDto.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace DOAN.Model.MES.group.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 岗位查询对象
|
||||
/// </summary>
|
||||
public class GroupPostQueryDto : PagerInfo
|
||||
{
|
||||
public string PostName { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 岗位输入输出对象
|
||||
/// </summary>
|
||||
public class GroupPostDto
|
||||
{
|
||||
[Required(ErrorMessage = "雪花不能为空")]
|
||||
public string Id { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "父id不能为空")]
|
||||
public string ParentId { get; set; }
|
||||
|
||||
public string PostName { get; set; }
|
||||
|
||||
public int? Status { get; set; }
|
||||
|
||||
public string Remark { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user