You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
798 B
Java
39 lines
798 B
Java
6 years ago
|
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 customer;
|
||
|
/**已关联人数*/
|
||
|
private Long common;
|
||
|
/**未关联的会员*/
|
||
|
private Long vip;
|
||
|
/**近七天新增客户list*/
|
||
|
List<OpCustomer> sevenDayCustomerList;
|
||
|
/**近七天新增会员list*/
|
||
|
List<OpVip> sevenDayVipList;
|
||
|
|
||
|
/**
|
||
|
* 初始化
|
||
|
*/
|
||
|
public CustomerViewVO(){
|
||
|
customer = 0L;
|
||
|
common = 0L;
|
||
|
vip = 0L;
|
||
|
sevenDayCustomerList = new ArrayList<>();
|
||
|
sevenDayVipList = new ArrayList<>();
|
||
|
}
|
||
|
}
|