去除繁重数据
parent
0308dc8069
commit
93b6c5de78
@ -0,0 +1,31 @@
|
|||||||
|
package com.kiisoo.ic.customer.entity;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description: 客户表简单VO
|
||||||
|
* @Author: wangyinjia
|
||||||
|
* @Date: 2020-04-28
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class OpCustomerSimpleVO {
|
||||||
|
/**
|
||||||
|
* 主键ID
|
||||||
|
*/
|
||||||
|
private Long id;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 注册时间
|
||||||
|
*/
|
||||||
|
private Date registerTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 初始化
|
||||||
|
*/
|
||||||
|
public OpCustomerSimpleVO(Long id, Date registerTime){
|
||||||
|
this.id = id;
|
||||||
|
this.registerTime = registerTime;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue