3 changed files with 120 additions and 7 deletions
-
70src/Shentun.Peis.Application.Contracts/CustomerOrgGroups/CustomerOrgGroupForPatientRegisterDto.cs
-
43src/Shentun.Peis.Application/CustomerOrgGroups/CustomerOrgGroupAppService.cs
-
14src/Shentun.Peis.Application/PatientRegisters/PatientRegisterAppService.cs
@ -0,0 +1,70 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.CustomerOrgGroups |
|||
{ |
|||
public class CustomerOrgGroupForPatientRegisterDto |
|||
{ |
|||
public Guid Id { get; set; } |
|||
/// <summary>
|
|||
/// 分组名称
|
|||
/// </summary>
|
|||
public string DisplayName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 价格
|
|||
/// </summary>
|
|||
public decimal Price { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 适用性别
|
|||
/// </summary>
|
|||
public char ForSexId { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 适用婚姻状况
|
|||
/// </summary>
|
|||
public char MaritalStatusId { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 适用年龄下限
|
|||
/// </summary>
|
|||
public short AgeLowerLimit { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 适用年龄上限
|
|||
/// </summary>
|
|||
public short AgeUpperLimit { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 适用职务
|
|||
/// </summary>
|
|||
public string? JobPost { get; set; } |
|||
|
|||
|
|||
/// <summary>
|
|||
/// 适用职称
|
|||
/// </summary>
|
|||
public string? JobTitle { get; set; } |
|||
|
|||
|
|||
|
|||
|
|||
|
|||
/// <summary>
|
|||
/// 显示顺序
|
|||
/// </summary>
|
|||
public int DisplayOrder { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 体检次数ID
|
|||
/// </summary>
|
|||
public Guid CustomerOrgRegisterId { get; set; } |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue