fwq
2023-09-20 59095a3dc28264b5e5a897d1b047121763f1d0fd
提交 | 用户 | age
a66cab 1 package com.hz.his.dto.report;
F 2
3 import lombok.Data;
4
5 import java.util.List;
6
7 /**
8  * 门店报表扩展
9  * @author fwq
10  * */
11 @Data
12 public class ShopReportDto {
13     /**门店标识*/
14     private String shopId;
15     /**当前时间*/
16     private String nowTime;
629ce7 17     /**是否时间段筛选*/
F 18     private Integer isSelectPeriod = 0;
a66cab 19     /**开始时间*/
F 20     private String startTime;
21     /**结束时间*/
22     private String endTime;
629ce7 23     /**沉睡时间*/
F 24     private String sleepTime;
a66cab 25     /**门店列表标识*/
F 26     private List<String> shopIdList;
359cde 27
F 28     /** 是否过滤测试用户账号 */
29     private Integer isFilterTestAccount;
a66cab 30 }