10 changed files with 343 additions and 25 deletions
-
5Shentun.Sms.Client/CreateSmsTaskDto.cs
-
35Shentun.Sms.Client/SmsClientHelper.cs
-
2Shentun.WebPeis.Plugins/AppQueueRegisterPlugIns.cs
-
11src/Shentun.WebPeis.Application.Contracts/AppointPatientRegisters/CreateWeChatOrderRefundDto.cs
-
5src/Shentun.WebPeis.Application.Contracts/AppointPatientRegisters/GerAppointPatientRegisterWithAsbitemListDto.cs
-
55src/Shentun.WebPeis.Application.Contracts/AppointPatientRegisters/GetAppointPatientRegisterListDto.cs
-
46src/Shentun.WebPeis.Application.Contracts/AppointPatientRegisters/GetAppointPatientRegisterListInputDto.cs
-
159src/Shentun.WebPeis.Application/AppointPatientRegisters/AppointPatientRegisterAppService.cs
-
41src/Shentun.WebPeis.Domain/CacheService.cs
-
9src/Shentun.WebPeis.HttpApi.Host/appsettings.json
@ -0,0 +1,11 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.WebPeis.AppointPatientRegisters |
|||
{ |
|||
public class CreateWeChatOrderRefundDto |
|||
{ |
|||
|
|||
} |
|||
} |
|||
@ -0,0 +1,55 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.WebPeis.AppointPatientRegisters |
|||
{ |
|||
public class GetAppointPatientRegisterListDto |
|||
{ |
|||
/// <summary>
|
|||
/// 姓名
|
|||
/// </summary>
|
|||
public string PatientName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 手机号
|
|||
/// </summary>
|
|||
public string PhoneNumber { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 身份证号码
|
|||
/// </summary>
|
|||
public string IdNo { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 预约日期
|
|||
/// </summary>
|
|||
public string AppointDate { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 套餐名称
|
|||
/// </summary>
|
|||
public string MedicalPackageName { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 分组名称
|
|||
/// </summary>
|
|||
public string CustomerOrgGroupName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 单位名称
|
|||
/// </summary>
|
|||
public string CustomerOrgName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 部门名称
|
|||
/// </summary>
|
|||
public string DepartmentName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 收费状态 0-未收费 1-已收费 2-已退费
|
|||
/// </summary>
|
|||
public string ChargeFlagName { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,46 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.WebPeis.AppointPatientRegisters |
|||
{ |
|||
public class GetAppointPatientRegisterListInputDto |
|||
{ |
|||
/// <summary>
|
|||
/// 姓名
|
|||
/// </summary>
|
|||
public string PatientName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 手机号
|
|||
/// </summary>
|
|||
public string PhoneNumber { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 身份证号码
|
|||
/// </summary>
|
|||
public string IdNo { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 人员类别 0-所有 1-个人 2-单位 默认0
|
|||
/// </summary>
|
|||
public char PersonType { get; set; } = '0'; |
|||
|
|||
/// <summary>
|
|||
/// 预约开始日期
|
|||
/// </summary>
|
|||
public string AppointStartDate { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 预约结束日期
|
|||
/// </summary>
|
|||
public string AppointEndDate { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 收费状态 0-未收费 1-已收费 2-已退费
|
|||
/// </summary>
|
|||
public char? ChargeFlag { get; set; } |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue