基于云平台功能调整

This commit is contained in:
xy
2026-01-07 19:20:11 +08:00
parent 6b0feb1320
commit b774b7ce91
14 changed files with 196 additions and 62 deletions

View File

@@ -81,4 +81,7 @@ public interface CsLineFeignClient {
@PostMapping("/getLineDetailData")
HttpResult<LineDetailDataVO> getLineDetailData(@RequestParam("id") String id);
@GetMapping("/getSimpleLine")
HttpResult<List<CsLinePO>> getSimpleLine();
}

View File

@@ -131,6 +131,12 @@ public class CsLineClientFallbackFactory implements FallbackFactory<CsLineFeignC
log.error("{}异常,降级处理,异常为:{}","查询监测点详情异常",cause.toString());
throw new BusinessException(finalExceptionEnum);
}
@Override
public HttpResult<List<CsLinePO>> getSimpleLine() {
log.error("{}异常,降级处理,异常为:{}","查询登录用户拥有的监测点台账",cause.toString());
throw new BusinessException(finalExceptionEnum);
}
};
}
}

View File

@@ -23,31 +23,31 @@ public class DeviceExcelTemplete implements Serializable {
/**
* 装置名称
*/
@Excel(name = "装置名称", width = 15)
@Excel(name = "设备名称", width = 15)
private String name;
/**
* 网关识别码
*/
@Excel(name = "关识别码", width = 15)
@Excel(name = "络设备ID", width = 15)
private String ndid;
/**
* 装置类型(直连设备、网关设备、装置)
*/
@Excel(name = "装置类型(直连设备,网关设备)", width = 30)
@Excel(name = "设备类型(直连设备,网关设备、便携式设备", width = 30)
private String devType;
/**
* 装置型号pqs588、pqs680...
*/
@Excel(name = "装置型号", width = 15)
@Excel(name = "设备型号", width = 15)
private String devModel;
/**
* 装置接入方式mqtt、cloud
*/
@Excel(name = "装置接入方式mqtt、cloud", width = 25)
@Excel(name = "通讯协议MQTT、CLD", width = 25)
private String devAccessMethod;
/**