fwq
2023-09-13 c88379562ceb00aaa9f6ecb34f9a8c1384d5fecf
提交 | 用户 | age
c88379 1 package com.hz.his.dto;
F 2
3 import com.hz.his.dto.common.OperateDto;
4 import lombok.Data;
5
6 /**
7  * @author fwq
8  * 导出预约Dto
9  */
10 @Data
11 public class DAppointDto extends OperateDto {
12
13     String startTime;
14     String endTime;
15     String shopId;
16     String doctorId;
17     String keyWord;
18     String corpUserName;
19     String doctorName;
20     String type;
21     Integer orderType;
22     Integer isMicApprove;
23     String projectName;
24     String userLevel;
25     String field;
26     String id;
27     String userId;
28     String roleId;
29     String corpUserId;
30     String createCuName;
31     String channelType;
32     String chatCorpName;
33     String appType;
34 }