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.
42 lines
923 B
42 lines
923 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.WebPeis.AppointSchedules
|
|
{
|
|
public class AppointScheduleDto: AuditedEntityDtoName
|
|
{
|
|
/// <summary>
|
|
/// 预约日期
|
|
/// </summary>
|
|
public string AppointDate { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 个人体检数量限制
|
|
/// </summary>
|
|
|
|
public int SingleNumberLimit { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当天总限制数量
|
|
/// </summary>
|
|
public int SumNumberLimit { get; set; }
|
|
|
|
/// <summary>
|
|
/// 体检中心ID
|
|
/// </summary>
|
|
public Guid MedicalCenterId { get; set; }
|
|
/// <summary>
|
|
/// 是否上班
|
|
/// </summary>
|
|
|
|
public char IsWork { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
|
|
public Guid AppointScheduleId { get; set; }
|
|
}
|
|
}
|