namespace Easy.Admin.Application.Organization.Dtos; public class AddOrgInput { /// /// 父级Id /// public long? ParentId { get; set; } /// /// 部门名称 /// [MaxLength(32, ErrorMessage = "组织机构名称限制32个字符内")] [Required(ErrorMessage = "部门名称为必填项")] public string Name { get; set; } /// /// 部门编码 /// [MaxLength(64, ErrorMessage = "组织机构编码限制64个字符内")] public string Code { get; set; } /// /// 可用状态 /// public AvailabilityStatus Status { get; set; } /// /// 排序值(值越小越靠前) /// public int Sort { get; set; } /// /// 备注 /// [MaxLength(200, ErrorMessage = "备注限制200个字符内")] public string Remark { get; set; } }