using System; using System.Collections.Generic; using System.Text; namespace Shentun.WebPeis.AppointSchedules { public class CreateAppointScheduleWithDetailInputDto { /// /// 体检中心ID /// public Guid MedicalCenterId { get; set; } /// /// 开始日期 /// public string StartDate { get; set; } /// /// 结束日期 /// public string EndDate { get; set; } } }