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.
32 lines
449 B
Java
32 lines
449 B
Java
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;
|
|
}
|
|
}
|