using Abp.Application.Services.Dto; using Abp.AutoMapper; using ContractService.Client; namespace ContractService.Basic.Organization.Dto { /// /// 客户组织结构 /// [AutoMapTo(typeof(OrganizationInfo)),AutoMapFrom(typeof(OrganizationInfo))] public class OrganizationDto: EntityDto { public string ParentNo { get; set; } /// /// 组织名称 /// public string Name { get; set; } /// /// 组织描述 /// public string Description { get; set; } /// /// 路径 /// public string Path { get; set; } /// /// 排序序号 /// public int Sort { get; set; } /// /// 公司信息 /// public string CompanyNo { get; set; } public string LawFirmNo { get; set; } public string ParentName { get; set; } } }