华为云处理

This commit is contained in:
2023-02-15 11:27:49 +08:00
parent 6e840fa650
commit bec51dc9ac
57 changed files with 245 additions and 104 deletions

View File

@@ -19,6 +19,7 @@ import java.util.List;
@FeignClient(
value = ServerInfo.DEVICE,
path = "/pms/distributionMonitor",
contextId = "pms/distributionMonitor",
fallbackFactory = DistributionMonitorClientFallbackFactory.class)
public interface DistributionMonitorClient {

View File

@@ -23,6 +23,7 @@ import java.util.List;
@FeignClient(
value = ServerInfo.DEVICE,
path = "/pms/monitor",
contextId = "/pms/monitor",
fallbackFactory = MonitorClientFallbackFactory.class)
public interface MonitorClient {

View File

@@ -16,7 +16,7 @@ import java.util.List;
* @version 1.0.0
* @date 2022年02月14日 14:02
*/
@FeignClient(value = ServerInfo.DEVICE, path = "/pmsDeviceInfo", fallbackFactory = PmsGeneralDeviceInfoClientFallbackFactory.class)
@FeignClient(value = ServerInfo.DEVICE, path = "/pmsDeviceInfo", contextId = "pmsDeviceInfo", fallbackFactory = PmsGeneralDeviceInfoClientFallbackFactory.class)
public interface PmsGeneralDeviceInfoClient {
@@ -25,7 +25,7 @@ public interface PmsGeneralDeviceInfoClient {
* @author hongawen
* @date 2022/10/18 10:12
* @param pmsDeviceInfoParam 查询条件
* @return HttpResult<List<PmsGeneralDeviceDTO>> 统计结果
* @return HttpResult<List < PmsGeneralDeviceDTO>> 统计结果
*/
@PostMapping("/getPmsDeviceInfoWithInOrg")
HttpResult<List<PmsGeneralDeviceDTO>> getPmsDeviceInfoWithInOrg(@RequestBody PmsDeviceInfoParam pmsDeviceInfoParam);
@@ -35,7 +35,7 @@ public interface PmsGeneralDeviceInfoClient {
* @author cdf
* @date 2022/10/18 10:12
* @param pmsDeviceInfoParam 查询条件
* @return HttpResult<List<PmsGeneralDeviceDTO>> 统计结果
* @return HttpResult<List < PmsGeneralDeviceDTO>> 统计结果
*/
@PostMapping("/getPwPmsDeviceInfoWithOrgId")
HttpResult<List<PmsGeneralDeviceDTO>> getPwPmsDeviceInfoWithOrgId(@RequestBody PmsDeviceInfoParam pmsDeviceInfoParam);

View File

@@ -18,6 +18,7 @@ import java.util.List;
*/
@FeignClient(value = ServerInfo.DEVICE,
path = "/pmsGeneratrixWire",
contextId = "pmsGeneratrixWire",
fallbackFactory = PmsGeneratrixClientFallbackFactory.class)
public interface PmsGeneratrixClient {

View File

@@ -19,6 +19,7 @@ import java.util.List;
@FeignClient(
value = ServerInfo.DEVICE,
path = "/pms/terminal",
contextId = "pms/terminal",
fallbackFactory = PwMonitorClientFallbackFactory.class)
public interface PmsTerminalClient {

View File

@@ -19,6 +19,7 @@ import java.util.List;
@FeignClient(
value = ServerInfo.DEVICE,
path = "/pms/pwMonitor",
contextId = "pms/pwMonitor",
fallbackFactory = PwMonitorClientFallbackFactory.class)
public interface PwMonitorClient {

View File

@@ -18,6 +18,7 @@ import java.util.List;
*/
@FeignClient(value = ServerInfo.DEVICE,
path = "/pms/statationStat",
contextId = "pms/statationStat",
fallbackFactory = StatationStatClientFallbackFactory.class)
public interface StatationStatClient {

View File

@@ -20,6 +20,7 @@ import java.util.List;
@FeignClient(
value = ServerInfo.DEVICE,
path = "/pms/tractionStation",
contextId = "pms/tractionStation",
fallbackFactory = TractionStationClientFallbackFactory.class)
public interface TractionStationClient {