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.
 
 
 

55 lines
1.3 KiB

using System;
using System.Collections.Generic;
using System.Text;
namespace Shentun.WebPeis.AppointScheduleTemplates
{
public class UpdateAppointScheduleTemplateDto
{
/// <summary>
/// 主键
/// </summary>
public Guid AppointScheduleTemplateId { get; set; }
/// <summary>
/// 星期
/// </summary>
public int WeekId { 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 string AmStartTime { get; set; }
/// <summary>
/// 上午下班时间
/// </summary>
public string AmStopTime { get; set; }
/// <summary>
/// 下午上班时间
/// </summary>
public string PmStartTime { get; set; }
/// <summary>
/// 下午下班时间
/// </summary>
public string PmStopTime { get; set; }
}
}