using Syc.Basic.Web.WMS.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Syc.Basic.Web.WMS.Dtos.Organization { public class OrganizationUpdateDto { public int Id { get; set; } public int LeaderId { get; set; } public string Name { get; set; } public int ParentId { get; set; } public string Remark { get; set; } public int Sort { get; set; } public bool Status { get; set; } public int Type { get; set; } } }