|
@@ -43,8 +43,13 @@ public class PlatformApiController {
|
|
|
public AjaxMessage sendCommond (
|
|
|
@ApiParam(value = "客户id", required = true) @RequestParam String customerNo,
|
|
|
@RequestParam String meterNo,Integer type) {
|
|
|
- platformAapiService.sendCommond(meterNo,type,customerNo);
|
|
|
- return new AjaxMessage<>(ResultStatus.OK);
|
|
|
+ int result=platformAapiService.sendCommond(meterNo,type,customerNo);
|
|
|
+ if(result==0){
|
|
|
+ return new AjaxMessage<>(ResultStatus.OK);
|
|
|
+ }else{
|
|
|
+ return new AjaxMessage<>(ResultStatus.TASK_OPERATE_FAILED);
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
@GetMapping ("/getWaterMeterNo")
|
|
|
@ApiOperation(value = "获取电子号")
|