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.
|
|
namespace Shentun.PeisReport.Api.Dto{ public class QueueRegisterByBarCodeNoDto : PublicResultDto { public QueueRegisterByBarCodeNoResultDataDto Data { get; set; } = new QueueRegisterByBarCodeNoResultDataDto(); }
public class QueueRegisterByBarCodeNoResultDataDto { /// <summary>
/// 姓名
/// </summary>
public string patient_name { get; set; }
/// <summary>
/// 房间名称
/// </summary>
public string room_name { get; set; }
/// <summary>
/// 排队人数
/// </summary>
public int queue_count { get; set; } }}
|