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;
|
}
|
}
|
|
}
|