zxl
2025-11-10 cb415813de667096290d6bd0f924f5b523104117
ycl-server/src/main/java/com/ycl/platform/controller/MonitorConstructionController.java
@@ -1,15 +1,16 @@
package com.ycl.platform.controller;
import com.ycl.platform.domain.form.DailyMonitorDemeritRecordForm;
import com.ycl.platform.service.IDailyMonitorDemeritRecordService;
import com.ycl.platform.service.IMonitorConstructionService;
import com.ycl.system.Result;
import jakarta.servlet.http.HttpServletResponse;
import lombok.RequiredArgsConstructor;
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.*;
import org.springframework.web.multipart.MultipartFile;
import java.io.IOException;
/**
 * zgyw
@@ -32,4 +33,6 @@
    public void importTemplate(HttpServletResponse httpServletResponse) {
        monitorConstructionService.getImportTemplate(httpServletResponse);
    }
}