package com.sandu.ximon.dao.domain;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.time.LocalDateTime;
|
|
/**
|
* 客户
|
*/
|
|
@Data
|
public class Client implements Serializable {
|
|
@TableId(type = IdType.AUTO)
|
private Long id;
|
|
|
/**
|
* 上级客户id
|
*/
|
private Long superiorId;
|
|
/**
|
* 客户/企业名称
|
*/
|
private String clientName;
|
|
/**
|
* 上级客户
|
*/
|
private String clientSuperior;
|
|
/**
|
* 联系人
|
*/
|
private String linkMan;
|
|
/**
|
* 手机号
|
*/
|
private String mobile;
|
|
/*灯杆数量*/
|
private Integer countLight;
|
|
/*添加时间*/
|
private LocalDateTime createTime;
|
|
}
|