|
@@ -12,6 +12,7 @@ import com.ruoyi.common.core.controller.BaseController;
|
|
|
import com.ruoyi.common.core.domain.R;
|
|
|
import com.ruoyi.common.core.page.TableDataInfo;
|
|
|
import com.ruoyi.common.enums.DataSourceType;
|
|
|
+import com.ruoyi.common.utils.StringUtils;
|
|
|
import com.ruoyi.framework.datasource.DynamicDataSourceContextHolder;
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -107,6 +108,11 @@ public class BusinessController extends BaseController {
|
|
|
@GetMapping("/devicePageList")
|
|
|
public TableDataInfo devicePageList(DeviceReq deviceReq){
|
|
|
log.info("进入了 分页获取设备列表(通过类型区分是实验室的还是连续检测的) 接口,类型是{}", JSON.toJSONString(deviceReq));
|
|
|
+ String type = deviceReq.getType();
|
|
|
+ if(StringUtils.isBlank(type))
|
|
|
+ throw new RuntimeException("设备类型为必填参数");
|
|
|
+ if(!"1".equals(type) && !"2".equals(type))
|
|
|
+ throw new RuntimeException("请输入正确的设备类型");
|
|
|
DynamicDataSourceContextHolder.setDataSourceType(DataSourceType.SLAVE.name());
|
|
|
startPage();
|
|
|
List<DeviceRes> list = this.businessService.devicePageList(deviceReq);
|