9 changed files with 296 additions and 34 deletions
-
29src/Shentun.Peis.Application.Contracts/Rooms/AsbitemListByRoomIdDto.cs
-
19src/Shentun.Peis.Application.Contracts/Rooms/CreateRoomDetailsInutDto.cs
-
30src/Shentun.Peis.Application.Contracts/Rooms/CreateRoomDto.cs
-
29src/Shentun.Peis.Application.Contracts/Rooms/RoomDto.cs
-
14src/Shentun.Peis.Application.Contracts/Rooms/RoomIdInputDto.cs
-
28src/Shentun.Peis.Application.Contracts/Rooms/UpdateRoomDto.cs
-
16src/Shentun.Peis.Application/ChargeReports/ChargeReportAppService.cs
-
5src/Shentun.Peis.Application/PeisApplicationAutoMapperProfile.cs
-
100src/Shentun.Peis.Application/Rooms/RoomAppService.cs
@ -0,0 +1,29 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.Rooms |
||||
|
{ |
||||
|
public class AsbitemListByRoomIdDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 房间ID
|
||||
|
/// </summary>
|
||||
|
public Guid RoomId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 房间名称
|
||||
|
/// </summary>
|
||||
|
public string RoomName { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 组合项目ID
|
||||
|
/// </summary>
|
||||
|
public Guid AsbitemId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 组合项目名称
|
||||
|
/// </summary>
|
||||
|
public string AsbitemName { get; set;} |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,19 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.Rooms |
||||
|
{ |
||||
|
public class CreateRoomDetailsInutDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 房间ID
|
||||
|
/// </summary>
|
||||
|
public Guid RoomId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 项目ID集合
|
||||
|
/// </summary>
|
||||
|
public List<Guid> AsbitemIds { get; set;]} |
||||
|
} |
||||
|
} |
||||
@ -1,10 +1,40 @@ |
|||||
using System; |
using System; |
||||
using System.Collections.Generic; |
using System.Collections.Generic; |
||||
|
using System.ComponentModel.DataAnnotations.Schema; |
||||
|
using System.ComponentModel.DataAnnotations; |
||||
using System.Text; |
using System.Text; |
||||
|
|
||||
namespace Shentun.Peis.Rooms |
namespace Shentun.Peis.Rooms |
||||
{ |
{ |
||||
public class CreateRoomDto |
public class CreateRoomDto |
||||
{ |
{ |
||||
|
|
||||
|
public string DisplayName { get; set; } = null!; |
||||
|
/// <summary>
|
||||
|
/// 项目类别编号
|
||||
|
/// </summary>
|
||||
|
public Guid ItemTypeId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 体检中心ID
|
||||
|
/// </summary>
|
||||
|
public Guid MedicalCenterId { get; set; } |
||||
|
|
||||
|
|
||||
|
public char ForSexId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 0-普通,1-抽血室
|
||||
|
/// </summary>
|
||||
|
public char RoomTypeFlag { get; set; } |
||||
|
|
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 候诊时间
|
||||
|
/// </summary>
|
||||
|
public decimal QueueTime { get; set; } |
||||
|
|
||||
|
|
||||
|
public char IsActive { get; set; } |
||||
} |
} |
||||
} |
} |
||||
@ -0,0 +1,14 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.Rooms |
||||
|
{ |
||||
|
public class RoomIdInputDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 房间ID
|
||||
|
/// </summary>
|
||||
|
public Guid RoomId { get; set; } |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue