1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.hz.his.dto.doctorTime;
|
| import com.hz.his.dto.PageDto;
| import lombok.Data;
|
| /**
| * @ClassName DoctorTimeDto
| * @Description 医生排班dto
| * @Author wrh
| * @Date 2023/7/4 14:40
| * @Version 1.0
| */
| @Data
| public class DoctorTimeDto extends PageDto {
|
| String monthStr;
| String shopId;
| String doctorId;
| }
|
|