| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.framework.web.domain.R; |
| | | import com.ruoyi.safe.pojo.SafeCertification; |
| | | import com.ruoyi.safe.pojo.SafeContingencyPlan; |
| | | import com.ruoyi.safe.service.SafeCertificationService; |
| | | import com.ruoyi.safe.service.SafeContingencyPlanService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.List; |
| | |
| | | @RestController |
| | | @RequestMapping("/safeContingencyPlan") |
| | | @Api(tags = "安全生产--应急预案查阅") |
| | | @AllArgsConstructor |
| | | public class SafeContingencyPlanController { |
| | | |
| | | @Autowired |
| | | private SafeContingencyPlanService safeContingencyPlanService; |
| | | private final SafeContingencyPlanService safeContingencyPlanService; |
| | | |
| | | @GetMapping("/page") |
| | | @ApiOperation("分页查询") |