| | |
| | | |
| | | 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; |
| | |
| | | private String clientSuperior; |
| | | |
| | | /** |
| | | * 头像 |
| | | */ |
| | | private String icon; |
| | | |
| | | /** |
| | | * 联系人 |
| | | */ |
| | | private String linkMan; |
| | |
| | | /** |
| | | * 密码 |
| | | */ |
| | | @JsonIgnore |
| | | private String password; |
| | | |
| | | /** |
| | | * 无需账号密码登录所使用的key |
| | | */ |
| | | @JsonIgnore |
| | | private String userKey; |
| | | |
| | | /*灯杆数量*/ |
| | | private Integer countLight; |
| | |
| | | /*添加时间*/ |
| | | private LocalDateTime createTime; |
| | | |
| | | |
| | | /** |
| | | * 最后登录时间 |
| | | */ |
| | | private LocalDateTime loginTime; |
| | | |
| | | } |