You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.2 KiB
50 lines
1.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.Rooms
|
|
{
|
|
public class RoomDto : AuditedEntityDtoName
|
|
{
|
|
public string DisplayName { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// 房间号
|
|
/// </summary>
|
|
public string RoomNo { get; set; }
|
|
|
|
/// <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; }
|
|
|
|
/// <summary>
|
|
/// 分诊模式 0-默认模式(单房间) 1-多房间模式 2-多房间模式, 并且启用自动排队(人员签到等模式)
|
|
/// </summary>
|
|
public char QueueRoomFlag { get; set; }
|
|
}
|
|
}
|