地质所 沉降监测网建设项目
zmk
2024-05-29 602be3f64c3709f9773284c48ca8aead180d060f
javaweb-plus/javaweb-cms/src/main/java/com/javaweb/geo/controller/TubLogController.java
@@ -141,10 +141,10 @@
    /**
     * 统计
     */
    @GetMapping("/countTubLogDate")
    @GetMapping("/countTubLogDate/{projectId}")
    @ResponseBody
    public AjaxResult countTubLogDate() {
        return tubLogService.countTubLogDate();
    public AjaxResult countTubLogDate(@PathVariable("projectId") String projectId) {
        return tubLogService.countTubLogDate(projectId);
    }
}