木垒添加吊装作业

This commit is contained in:
guoshengxiong 2024-09-14 17:11:37 +08:00
parent 995bd33dab
commit a7f9af6f1c

View File

@ -186,9 +186,9 @@ public class MlHoistController {
@OperLog(operModul = "吊装作业管理", operType = "", operDesc = "统计吊装作业信息")
@ApiOperation(value = "统计吊装作业信息", notes = "统计吊装作业信息", httpMethod = "GET")
@ApiImplicitParam(name = "projectSn", value = "项目sn", paramType = "query", required = true, dataType = "String")
@ApiImplicitParam(name = "projectSn", value = "项目sn", paramType = "query", required = false, dataType = "String")
@GetMapping(value = "/stats")
public Result<Map<String, Object>> statsMlHoist(@RequestParam(name = "id", required = true) String id) {
public Result<Map<String, Object>> statsMlHoist() {
HashMap<String, Object> map = new HashMap<>();
String projectSn = MapUtils.getString(map, "projectSn");
map.put("total", mlHoistService.count(new LambdaQueryWrapper<MlHoist>()