fwq
2024-01-19 64e2700126f64883aa982a11660c71e43a2a9f84
提交 | 用户 | 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     private Integer isFilterTestAccount;
9bcdda 29     /**是否统计现金业绩*/
F 30     private Integer isCountCash = 0;
31     /**员工标识列表*/
32     private List<String> employeeIdList;
33     /**统计类型*/
34     private String countType;
efd015 35     /**是否统计顾问数据*/
F 36     private Integer isCountAdviser = 0;
a66cab 37 }