| | |
| | | import com.ruoyi.safe.service.SafeCertificationService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | |
| | | @RestController |
| | | @RequestMapping("/safeCertification") |
| | | @Api(tags = "安全生产--安全规程与资质管理") |
| | | @AllArgsConstructor |
| | | public class SafeCertificationController { |
| | | |
| | | @Autowired |
| | | private SafeCertificationService safeCertificationService; |
| | | |
| | | @GetMapping("/page") |