李宇
2021-01-13 5ce314bb05eef373bd25b0b2e289a01bf6e5b6c4
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.nanometer.smartlab.entity.dto;
 
import java.util.ArrayList;
import java.util.List;
 
public class LaboratoryVo {
    private List<Laboratory> laboratoryList = new ArrayList<>();
    private List<LaboratoryUser> laboratoryUsers = new ArrayList<>();
 
    public List<Laboratory> getLaboratoryList() {
        return laboratoryList;
    }
 
    public void setLaboratoryList(List<Laboratory> laboratoryList) {
        this.laboratoryList = laboratoryList;
    }
 
    public List<LaboratoryUser> getLaboratoryUsers() {
        return laboratoryUsers;
    }
 
    public void setLaboratoryUsers(List<LaboratoryUser> laboratoryUsers) {
        this.laboratoryUsers = laboratoryUsers;
    }
 
    public static class Laboratory{
        private  String address;
        private String department;
 
        public Laboratory(){
        }
 
        public String getAddress() {
            return address;
        }
 
        public void setAddress(String address) {
            this.address = address;
        }
 
        public String getDepartment() {
            return department;
        }
 
        public void setDepartment(String department) {
            this.department = department;
        }
    }
 
    public static class LaboratoryUser{
        private String username;
 
        public LaboratoryUser(){
        }
 
        public String getUsername() {
            return username;
        }
 
        public void setUsername(String username) {
            this.username = username;
        }
    }
 
}