22 lines
573 B
C#
Raw Normal View History

2025-06-04 09:42:48 +08:00
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; }
}
}