fhx
2023-08-02 e4538a591ef58e33984e9e8209833d1243719e2e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.hz.his.dto.doctorTime;
 
import com.hz.his.dto.PageDto;
import lombok.Data;
 
import java.util.Date;
 
/**
 * @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;
    String dayTime;
    Date startTime;
    Date endTime;
    Integer intervalTime;
 
}