录波文件下载优化

This commit is contained in:
xy
2024-09-14 11:43:44 +08:00
parent d54ec83d1c
commit 5a6677ce3d
5 changed files with 35 additions and 0 deletions

View File

@@ -297,4 +297,13 @@ public class EquipmentDeliveryController extends BaseController {
}
}
@OperateInfo(info = LogEnum.BUSINESS_COMMON)
@PostMapping("/getAll")
@ApiOperation("获取所有装置")
public HttpResult<List<CsEquipmentDeliveryPO>> getAll(){
String methodDescribe = getMethodDescribe("getAll");
List<CsEquipmentDeliveryPO> result = csEquipmentDeliveryService.getAll();
return HttpResultUtil.assembleCommonResponseResult(CommonResponseEnum.SUCCESS, result, methodDescribe);
}
}