whyclxw
2024-07-01 0ce771b4a4ff5897dc91bb1b84a4561781b00ca5
src/main/java/com/whyc/controller/CKPowerDevRtSetLogController.java
@@ -6,14 +6,11 @@
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
@RestController
@RequestMapping("ckPowerDevRtSetLog")
@Api("电源设备遥测量设置日志")
@Api(tags = "电源遥测量设置日志")
public class CKPowerDevRtSetLogController {
    @Autowired
@@ -25,4 +22,9 @@
        return service.getPage(param);
    }
    @ApiOperation("查询-按天")
    @PostMapping("getList")
    public Response getList(@RequestParam String param, @RequestParam String dayTime){
        return service.getList(param,dayTime);
    }
}