1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| package com.nanometer.smartlab.entity.dto;
|
| import lombok.Getter;
| import lombok.Setter;
|
| import java.io.Serializable;
|
| @Getter
| @Setter
| public class HazardousWasteUser implements Serializable {
| private String id;
| private String account;
| private String name;
| private String password;
| /**1危废处理人员 2危废管理员**/
| private int adminFlag;
| private Long projectId;
| private String department;
| private Long company;
| private String newpassword;
| private String idCard;
| private String projectName;
|
| private String companyName;
| }
|
|