fwq
2023-05-04 31a92b9692298472b62f8f0727b7b7fca0e87f00
提交 | 用户 | age
7418f9 1 package com.hz.his.dto.report;
F 2
3 import lombok.Data;
4
5 @Data
6 public class AppointmentVisitVo {
7
8     private String shopName;
9
10     private String shopId;
11
12     private String startTime;
13
14     private String endTime;
15
16     //是否只查询上海门店  1是 0否
17     private Integer isShanghai;
18
19     //状态-取消
20     public static final Integer STATUS_CANCEL = 2;
21 }