This commit is contained in:
2023-06-28 11:45:57 +08:00
parent 5a8e283789
commit ac46544730
3 changed files with 18 additions and 4 deletions

View File

@@ -136,7 +136,7 @@ public class EquipmentDeliveryController extends BaseController {
@ApiImplicitParam(name = "type", value = "类型", required = true),
})
public HttpResult<DeviceManagerVO> getDeviceData(@RequestParam String deviceId,@RequestParam String type){
String methodDescribe = getMethodDescribe("getDeviceData");
String methodDescribe = getMethodDescribe("deviceData");
DeviceManagerVO vo = csEquipmentDeliveryService.getDeviceData(deviceId,type);
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, vo, methodDescribe);
}