fwq
2024-05-01 623afb6fbb8ce6adebf237e7b670d9f4f339184d
提交 | 用户 | age
7418f9 1 package com.hz.his.dto.report;
F 2
3 import com.hx.util.StringUtils;
4 import lombok.Data;
5
6 import java.util.ArrayList;
7 import java.util.Date;
8 import java.util.List;
9
10 @Data
11 public class OperationalStatementsVo {
12
13     /**年份:yyyy*/
14     private String year;
15     /**月份:yyyy-MM*/
16     private String month;
17     /**月份:yyyy-MM-dd*/
18     private String day;
722eb4 19     /**用户增长渠道:1是,0否*/
F 20     private Integer selectUser;
7418f9 21     /**门店标识*/
F 22     private String shopId;
905540 23     /**门店标识集合*/
7418f9 24     private List<String> shopIdList;
905540 25     /**渠道大类渠道标识集合*/
F 26     private List<String> channelList;
7418f9 27     /**开始时间*/
F 28     private Date startTime;
29     /**结束时间*/
30     private Date endTime;
31     /**登录员工标识*/
32     private String loginEmpId;
33     /**登录员工名称*/
34     private String loginCnName;
35     /**登录员工唯一字符串*/
36     private String loginEmpStr;
c20b43 37     /** 是否过滤测试用户账号 */
F 38     private Integer isFilterTestAccount;
5dce1d 39     /**是否查询复购数据,0否1是*/
F 40     private Integer isSelectRepurchase = 0;
7418f9 41
F 42     public List<String> getShopIdList() {
43         if(shopIdList == null){
44             shopIdList = new ArrayList<>();
45         }
46         if(StringUtils.noNull(shopId)&&!shopIdList.contains(shopId)){
47             shopIdList.add(shopId);
48         }
49         return shopIdList;
50     }
51
52     public void setShopIdList(List<String> shopIdList) {
53         this.shopIdList = shopIdList;
54     }
55 }