大屏获取试验室修复
This commit is contained in:
@@ -13,7 +13,7 @@ import java.util.List;
|
||||
*/
|
||||
public interface LaboratoryMapper extends BaseMapper<Laboratory> {
|
||||
|
||||
List<Laboratory> getList(Long id, String name, int type, Long standardId);
|
||||
List<Laboratory> getList(Long id, String name, Integer type, Long standardId);
|
||||
|
||||
List<Integer> getCategoryIds(Long id);
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ public class LaboratoryDto{
|
||||
/**
|
||||
* 实验室类型
|
||||
*/
|
||||
private int type;
|
||||
private Integer type;
|
||||
|
||||
/**
|
||||
* 行业
|
||||
|
||||
@@ -59,6 +59,7 @@ public class LaboratoryVo {
|
||||
public static LaboratoryVo getLaboratoryVo(Laboratory laboratory){
|
||||
LaboratoryVo laboratoryVo = new LaboratoryVo();
|
||||
laboratoryVo.setId(laboratory.getId());
|
||||
laboratoryVo.setName(laboratory.getName());
|
||||
laboratoryVo.setCoordinateA(laboratory.getCoordinateA());
|
||||
laboratoryVo.setCoordinateB(laboratory.getCoordinateB());
|
||||
laboratoryVo.setOrgId(laboratory.getOrgId());
|
||||
|
||||
Reference in New Issue
Block a user