2025-06-16 17:24:23 +08:00

22 lines
573 B
C#

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; }
}
}