⚡ 修改部门表status、delFlag数据类型
This commit is contained in:
31
ZR.Model/System/Dto/SysDeptDto.cs
Normal file
31
ZR.Model/System/Dto/SysDeptDto.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
namespace ZR.Model.System.Dto
|
||||
{
|
||||
public class SysDeptQueryDto : PagerInfo
|
||||
{
|
||||
public int? Status { get; set; }
|
||||
public int? DelFlag { get; set; }
|
||||
public string DeptName { get; set; }
|
||||
}
|
||||
public class SysDeptDto : SysBase
|
||||
{
|
||||
public long DeptId { get; set; }
|
||||
|
||||
public long ParentId { get; set; }
|
||||
|
||||
public string Ancestors { get; set; }
|
||||
|
||||
public string DeptName { get; set; }
|
||||
|
||||
public int OrderNum { get; set; }
|
||||
|
||||
public string Leader { get; set; }
|
||||
|
||||
public string Phone { get; set; }
|
||||
|
||||
public string Email { get; set; }
|
||||
|
||||
public int Status { get; set; }
|
||||
|
||||
public int DelFlag { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user