package com.kiisoo.ic.customer.entity; import lombok.Data; import java.util.ArrayList; import java.util.List; /** * @Description: 客户概览VO * @Author: wangyinjia * @Date: 2020/4/9 * @Company: kiisoo * @Version: 1.0 */ @Data public class CustomerViewVO { /**全部客户*/ private Long allCustomer; /**有效客户*/ private Long validCustomer; /**新增客户*/ private Long newCustomer; /**新增有效客户*/ private Long newValidCustomer; /**删除拉黑数*/ private Long deleteCustomer; /**近七天新增客户list*/ List sevenDayCustomerList; /**近七天新增会员list*/ List sevenDayVipList; /**未关联的客户*/ private Long customer; /**已关联人数*/ private Long common; /**未关联的会员*/ private Long vip; /** * 初始化 */ public CustomerViewVO(){ allCustomer = 0L; validCustomer = 0L; newCustomer = 0L; newValidCustomer = 0L; deleteCustomer = 0L; customer = 0L; common = 0L; vip = 0L; sevenDayCustomerList = new ArrayList<>(); sevenDayVipList = new ArrayList<>(); } }