| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | 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; |
| | | |
| | | /** |
| | | * 密码 |
| | | */ |
| | | @JsonIgnore |
| | | private String password; |
| | | |
| | | /*灯杆数量*/ |
| | | private Integer countLight; |
| | | |
| | | /*添加时间*/ |
| | | private LocalDateTime createTime; |
| | | |
| | | private LocalDateTime updateTime; |
| | | |
| | | /** |
| | | * 最后登录时间 |
| | | */ |
| | | private LocalDateTime loginTime; |
| | | |
| | | } |