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.

40 lines
884 B

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace Shentun.Peis.Rooms
{
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; }
}
}