26 lines
509 B
C#
26 lines
509 B
C#
|
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 DepartmentInfoDto
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string trans { get; set; }
|
|||
|
|
|||
|
public int sort { get; set; }
|
|||
|
|
|||
|
public string name { get; set; }
|
|||
|
|
|||
|
public string leader { get; set; }
|
|||
|
|
|||
|
public string remark { get; set; }
|
|||
|
|
|||
|
public int? parentId { get; set; }
|
|||
|
}
|
|||
|
}
|