8 changed files with 305 additions and 6 deletions
-
11src/Shentun.Peis.Application.Contracts/Asbitems/AsbitemIdInputDto.cs
-
24src/Shentun.Peis.Application.Contracts/QueueRegisters/NotTriageAsbitemListDto.cs
-
26src/Shentun.Peis.Application.Contracts/QueueRegisters/QueueRegisterByPatientRegisterIdDto.cs
-
12src/Shentun.Peis.Application.Contracts/QueueRegisters/QueueRegisterIdInputDto.cs
-
42src/Shentun.Peis.Application.Contracts/QueueRegisters/YesTriageAsbitemListDto.cs
-
15src/Shentun.Peis.Application.Contracts/Rooms/BaseRoomDto.cs
-
171src/Shentun.Peis.Application/QueueRegisters/QueueRegisterAppService.cs
-
10src/Shentun.Peis.Application/Rooms/RoomAppService.cs
@ -0,0 +1,11 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.Asbitems |
|||
{ |
|||
public class AsbitemIdInputDto |
|||
{ |
|||
public Guid AsbitemId { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,24 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.QueueRegisters |
|||
{ |
|||
public class NotTriageAsbitemListDto |
|||
{ |
|||
/// <summary>
|
|||
/// 项目类别名称
|
|||
/// </summary>
|
|||
public string ItemTypeName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 组合项目ID
|
|||
/// </summary>
|
|||
public Guid AsbitemId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 组合项目名称
|
|||
/// </summary>
|
|||
public string AsbitemName { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,26 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations.Schema; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.QueueRegisters |
|||
{ |
|||
public class QueueRegisterByPatientRegisterIdDto |
|||
{ |
|||
/// <summary>
|
|||
/// 当前排队房间
|
|||
/// </summary>
|
|||
public string RoomName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 候诊人数
|
|||
/// </summary>
|
|||
public int QueueCount { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 完成标志 (o=候诊 1=已呼 2=过号)
|
|||
/// </summary>
|
|||
public char CompleteFlag { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,12 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.QueueRegisters |
|||
{ |
|||
public class QueueRegisterIdInputDto |
|||
{ |
|||
|
|||
public Guid QueueRegisterId { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,42 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.ComponentModel.DataAnnotations.Schema; |
|||
using System.ComponentModel.DataAnnotations; |
|||
using System.Text; |
|||
using System.Dynamic; |
|||
|
|||
namespace Shentun.Peis.QueueRegisters |
|||
{ |
|||
public class YesTriageAsbitemListDto |
|||
{ |
|||
/// <summary>
|
|||
/// 项目类别名称
|
|||
/// </summary>
|
|||
public string ItemTypeName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 组合项目ID
|
|||
/// </summary>
|
|||
public Guid AsbitemId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 组合项目名称
|
|||
/// </summary>
|
|||
public string AsbitemName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 房间名称
|
|||
/// </summary>
|
|||
public string RoomName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 完成标志 (o=候诊 1=已呼 2=过号)
|
|||
/// </summary>
|
|||
public char CompleteFlag { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 分诊人
|
|||
/// </summary>
|
|||
public string TriageName { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,15 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.Rooms |
|||
{ |
|||
public class BaseRoomDto |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string RoomName { get; set; } |
|||
|
|||
public int DisplayOrder { get; set; } |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue