7 changed files with 209 additions and 9 deletions
-
25src/Shentun.ColumnReferencePlugIns/WebAppoints/WebAppointPlugInsBase.cs
-
42src/Shentun.ColumnReferencePlugIns/WebAppoints/WebAppointWebPeisPlugIns.cs
-
34src/Shentun.Peis.Application.Contracts/AppointPatientRegisters/GetAppointStatisticsReportDto.cs
-
40src/Shentun.Peis.Application.Contracts/CustomerReports/CustomerOrgInputDto.cs
-
3src/Shentun.Peis.Application.Contracts/TransToWebPeiss/SyncPatientRegisterReportInputDto.cs
-
37src/Shentun.Peis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs
-
35src/Shentun.Peis.HttpApi.Host/Schedulers/SyncPatientRegisterReportInterfaceWorker.cs
@ -0,0 +1,34 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.AppointPatientRegisters |
||||
|
{ |
||||
|
public class GetAppointStatisticsReportDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 单位名称
|
||||
|
/// </summary>
|
||||
|
public string CustomerOrgName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 登记人数 备单人数
|
||||
|
/// </summary>
|
||||
|
public int RegisterCount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 预约人数
|
||||
|
/// </summary>
|
||||
|
public int AppointCount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 未预约人数
|
||||
|
/// </summary>
|
||||
|
public int UnAppointCount { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 已开始检查人数
|
||||
|
/// </summary>
|
||||
|
public int CheckCount { get; set; } |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,40 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.CustomerReports |
||||
|
{ |
||||
|
public class CustomerOrgInputDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 单位ID 需要包含查出子级ID
|
||||
|
/// </summary>
|
||||
|
public Guid CustomerOrgId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 单位体检次数ID
|
||||
|
/// </summary>
|
||||
|
public Guid CustomerOrgRegisterId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
///
|
||||
|
/// </summary>
|
||||
|
public List<Guid> CustomerOrgGroupId { get; set; } = new List<Guid>(); |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 日期类型(1、登记日期 2、体检日期 3、总检日期)
|
||||
|
/// </summary>
|
||||
|
public char DateType { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 开始日期
|
||||
|
/// </summary>
|
||||
|
public string StartDate { get; set; } |
||||
|
|
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 结束日期
|
||||
|
/// </summary>
|
||||
|
public string EndDate { get; set; } |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue