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
27
28
29
30
31
32
33
34
| package com.hz.his.dto;
|
| import com.hz.his.dto.common.OperateDto;
| import lombok.Data;
|
| /**
| * @author fwq
| * 导出预约Dto
| */
| @Data
| public class DAppointDto extends OperateDto {
|
| String startTime;
| String endTime;
| String shopId;
| String doctorId;
| String keyWord;
| String corpUserName;
| String doctorName;
| String type;
| Integer orderType;
| Integer isMicApprove;
| String projectName;
| String userLevel;
| String field;
| String id;
| String userId;
| String roleId;
| String corpUserId;
| String createCuName;
| String channelType;
| String chatCorpName;
| String appType;
| }
|
|