1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.trafficaudit.system.entity;
|
| import com.baomidou.mybatisplus.annotation.*;
| import com.trafficaudit.common.BaseEntity;
| import lombok.Data;
| import lombok.EqualsAndHashCode;
|
| @Data
| @EqualsAndHashCode(callSuper = true)
| @TableName("sys_user")
| public class User extends BaseEntity {
| @TableId(type = IdType.AUTO)
| private Long id;
| private String username;
| private String password;
| private String realName;
| private String phone;
| private Long deptId;
| private Integer status;
| /** 负责报表模块,逗号分隔:freight,passenger,invest,energy,cityPassenger */
| private String modules;
| }
|
|