5 changed files with 136 additions and 88 deletions
-
79src/Shentun.Peis.Application.Contracts/ThirdBookings/CreateBookingMedicalByExcelInputDto.cs
-
16src/Shentun.Peis.Application.Contracts/ThirdBookings/GetThirdBookingListDto.cs
-
4src/Shentun.Peis.Application/ThirdBookingPushs/ThirdBookingPushAppService.cs
-
117src/Shentun.Peis.Application/ThirdBookings/ThirdBookingAppService.cs
-
8src/Shentun.Peis.Domain/ThirdBookings/ThirdBooking.cs
@ -0,0 +1,79 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations.Schema; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.ThirdBookings |
|||
{ |
|||
public class CreateBookingMedicalByExcelInputDto |
|||
{ |
|||
/// <summary>
|
|||
/// 姓名
|
|||
/// </summary>
|
|||
public string PatientName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 单位分组ID
|
|||
/// </summary>
|
|||
public string CustomerOrgGroupId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 第三方体检中心Id
|
|||
/// </summary>
|
|||
public string ThirdMedicalCenterId { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 身份证
|
|||
/// </summary>
|
|||
public string IdNo { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 性别
|
|||
/// </summary>
|
|||
public string SexName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 年龄
|
|||
/// </summary>
|
|||
public short Age { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 预约日期 yyyy-MM-dd
|
|||
/// </summary>
|
|||
public string BookingDate { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 电话
|
|||
/// </summary>
|
|||
public string Phone { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 分公司
|
|||
/// </summary>
|
|||
public string ChildCompanyName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 部门
|
|||
/// </summary>
|
|||
public string DepartmentName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 岗位
|
|||
/// </summary>
|
|||
public string PositionName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 是否在职 0:在职,1:退休
|
|||
/// </summary>
|
|||
public string EmpStatus { get; set; } |
|||
|
|||
/// <summary>
|
|||
///婚姻状况 0:未婚、1:已婚
|
|||
/// </summary>
|
|||
public string MaritalStatus { get; set; } |
|||
|
|||
|
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue