| | |
| | | import com.ruoyi.doublePrevention.vo.ResultVO; |
| | | import org.apache.tomcat.util.net.openssl.ciphers.Authentication; |
| | | 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.*; |
| | | |
| | | import java.util.List; |
| | | |
| | | @RestController |
| | | @RequestMapping("/prevent/riskControlMeasure") |
| | | @RequestMapping("/riskControlMeasure") |
| | | public class PreventRiskControlMeasureController { |
| | | |
| | | @Autowired |
| | |
| | | /** |
| | | * 管控措施- 获取管控措施模板 |
| | | */ |
| | | @PostMapping("/select/listMeasureTemplates") |
| | | @GetMapping("/select/listMeasureTemplates") |
| | | public ResultVO<List<PreventRiskMeasureTemplatesListQueryRespDTO>> listMeasures() { |
| | | return riskService.listMeasureTemplates(); |
| | | } |