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.
34 lines
805 B
34 lines
805 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 AmNumberLimit { get; set; }
|
|
/// <summary>
|
|
/// 下午数量限制
|
|
/// </summary>
|
|
public int PmNumberLimit { get; set; }
|
|
/// <summary>
|
|
/// 个人体检数量限制
|
|
/// </summary>
|
|
|
|
public int SingleNumberLimit { get; set; }
|
|
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
|
|
public Guid AppointScheduleId { get; set; }
|
|
}
|
|
}
|