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