2023-12-11 09:55:12 +08:00
|
|
|
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Dept
|
2023-04-13 21:12:06 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Dept输入创建对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class DeptCreateInputVo
|
|
|
|
|
{
|
|
|
|
|
public bool State { get; set; }
|
2024-09-02 23:26:41 +08:00
|
|
|
public string DeptName { get; set; }
|
|
|
|
|
public string DeptCode { get; set; }
|
2023-04-20 23:08:21 +08:00
|
|
|
public string? Leader { get; set; }
|
2024-09-02 23:26:41 +08:00
|
|
|
public Guid? ParentId { get; set; }=Guid.Empty;
|
2023-04-20 23:08:21 +08:00
|
|
|
public string? Remark { get; set; }
|
2023-04-13 21:12:06 +08:00
|
|
|
}
|
|
|
|
|
}
|