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

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<>();
}
}