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.
24 lines
541 B
24 lines
541 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.WebPeis.AppointSchedules
|
|
{
|
|
public class CreateAppointScheduleWithDetailInputDto
|
|
{
|
|
/// <summary>
|
|
/// 体检中心ID
|
|
/// </summary>
|
|
public Guid MedicalCenterId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 开始日期
|
|
/// </summary>
|
|
public string StartDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 结束日期
|
|
/// </summary>
|
|
public string EndDate { get; set; }
|
|
}
|
|
}
|