5 changed files with 173 additions and 15 deletions
			
			
		- 
					24src/Shentun.WebPeis.Application.Contracts/AppointScheduleExcludeCustomerOrgs/GetCustomerOrgThreeListDto.cs
 - 
					14src/Shentun.WebPeis.Application.Contracts/AppointScheduleExcludeCustomerOrgs/GetExcludeCustomerOrgListDto.cs
 - 
					87src/Shentun.WebPeis.Application/AppointScheduleExcludeCustomerOrgs/AppointScheduleExcludeCustomerOrgAppService.cs
 - 
					61src/Shentun.WebPeis.Application/AppointSchedules/AppointScheduleAppService.cs
 - 
					2src/Shentun.WebPeis.Application/Persons/PersonAppService.cs
 
@ -0,0 +1,24 @@ | 
				
			|||
using System; | 
				
			|||
using System.Collections.Generic; | 
				
			|||
using System.Text; | 
				
			|||
 | 
				
			|||
namespace Shentun.WebPeis.AppointScheduleExcludeCustomerOrgs | 
				
			|||
{ | 
				
			|||
    public class GetCustomerOrgThreeListDto | 
				
			|||
    { | 
				
			|||
        //组织Id
 | 
				
			|||
        public Guid CustomerOrgId { get; set; } | 
				
			|||
        //组织名称
 | 
				
			|||
        public string CustomerOrgName { get; set; } | 
				
			|||
        //父节点Id
 | 
				
			|||
        public Guid? ParentId { get; set; } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 用来做递归的 新用法
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public string Code { get; set; } | 
				
			|||
 | 
				
			|||
        public int DisplayOrder { get; set; } | 
				
			|||
 | 
				
			|||
        public List<GetCustomerOrgThreeListDto> TreeChildren { get; set; } | 
				
			|||
    } | 
				
			|||
} | 
				
			|||
@ -0,0 +1,14 @@ | 
				
			|||
using System; | 
				
			|||
using System.Collections.Generic; | 
				
			|||
using System.Text; | 
				
			|||
 | 
				
			|||
namespace Shentun.WebPeis.AppointScheduleExcludeCustomerOrgs | 
				
			|||
{ | 
				
			|||
    public class GetExcludeCustomerOrgListDto | 
				
			|||
    { | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 单位Id
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public Guid CustomerOrgId { get; set; } | 
				
			|||
    } | 
				
			|||
} | 
				
			|||
						Write
						Preview
					
					
					Loading…
					
					Cancel
						Save
					
		Reference in new issue