Lius
2025-02-18 3423bb9ee5b25d270a00763b69ed73970d790f63
lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/controller/MdcDownTimeController.java
@@ -170,7 +170,7 @@
    @AutoLog(value = "设备故障停机时长表-计算MTBF")
    @ApiOperation(value = "设备故障停机时长表-计算MTBF", notes = "设备故障停机时长表-计算MTBF")
    @PostMapping(value = "/computeMtbf")
    public Result<?> computeMtbf(@RequestBody String month) {
    public Result<?> computeMtbf(@RequestParam(name = "month", required = true) String month) {
        mdcDownTimeService.computeMtbf(month);
        return Result.OK("计算成功!");
    }