| | |
| | | |
| | | private String laboratoryType; |
| | | private String laboratoryName; |
| | | private String project; |
| | | private String controllerName; |
| | | |
| | | private int action; |
| | | |
| | |
| | | List<SysLaboratoryContainer> list = null; |
| | | try { |
| | | int count = sysLaboratoryContainerService.getSysLaboratoryContainerTotalCount(laboratoryType, |
| | | laboratoryName,null); |
| | | laboratoryName,null,project,controllerName); |
| | | this.setRowCount(count); |
| | | if (count > 0) { |
| | | list = sysLaboratoryContainerService.getSysLaboratoryContainerList(laboratoryType, |
| | | laboratoryName,null, first, pageSize); |
| | | laboratoryName,null,project,controllerName, first, pageSize); |
| | | } |
| | | } catch (Exception e) { |
| | | logger.error(e); |
| | |
| | | this.controllers = controllers; |
| | | } |
| | | |
| | | public String getProject() { |
| | | return project; |
| | | } |
| | | |
| | | public void setProject(String project) { |
| | | this.project = project; |
| | | } |
| | | |
| | | public String getControllerName() { |
| | | return controllerName; |
| | | } |
| | | |
| | | public void setControllerName(String controllerName) { |
| | | this.controllerName = controllerName; |
| | | } |
| | | } |