fhx
2024-02-26 2aa9f94a5f86613c2b12b632beab5e2be37b6804
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.hz.his.dto.report;
 
import lombok.Data;
 
@Data
public class AppointmentVisitVo {
 
    private String shopName;
 
    private String shopId;
 
    private String startTime;
 
    private String endTime;
 
    //是否只查询上海门店  1是 0否
    private Integer isShanghai;
 
    //状态-取消
    public static final Integer STATUS_CANCEL = 2;
}