package com.thhy.secure.modules.biz.inspect.controller; import com.thhy.general.common.BasicResult; import com.thhy.secure.modules.biz.inspect.service.TSecureInspectService; 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 javax.annotation.Resource; import java.util.Map; @RestController @RequestMapping("/inspect") public class TSecureInspectController { @Resource private TSecureInspectService inspectService; //安全检查添加 @PostMapping("/inspectInsert") public BasicResult inspectInsert(@RequestBody Map values){ return inspectService.inspectInsert(values); } //安全检查列表 @PostMapping("/inspectList") public BasicResult inspectList(@RequestBody Map values){ return inspectService.inspectList(values); } //安全检查详情 @PostMapping("/inspectInfo") public BasicResult inspectInfo(@RequestBody Map values){ return inspectService.inspectInfo(values); } //安全检查反馈 @PostMapping("/inspectFeedbackInfo") public BasicResult inspectFeedbackInfo(@RequestBody Map values){ return inspectService.inspectFeedbackInfo(values); } //整改通知列表 @PostMapping("/rectificationNoticeList") public BasicResult rectificationNotice(@RequestBody Map values){ return inspectService.rectificationNotice(values); } }