|
@@ -61,7 +61,6 @@ public class QueryController extends BaseController {
|
|
* 门户查询报告信息
|
|
* 门户查询报告信息
|
|
*/
|
|
*/
|
|
@PostMapping("/getReport")
|
|
@PostMapping("/getReport")
|
|
- @RepeatSubmit
|
|
|
|
public AjaxResult list(ReportQueryLog reportQueryLog)
|
|
public AjaxResult list(ReportQueryLog reportQueryLog)
|
|
{
|
|
{
|
|
return queryService.selectReport(reportQueryLog);
|
|
return queryService.selectReport(reportQueryLog);
|
|
@@ -105,7 +104,6 @@ public class QueryController extends BaseController {
|
|
* 提交送检信息
|
|
* 提交送检信息
|
|
*/
|
|
*/
|
|
@PostMapping("/sendInspectInFor")
|
|
@PostMapping("/sendInspectInFor")
|
|
- @RepeatSubmit
|
|
|
|
public AjaxResult sendInspectInFor(InspectInfor inspectInfor)
|
|
public AjaxResult sendInspectInFor(InspectInfor inspectInfor)
|
|
{
|
|
{
|
|
if (UserConstants.NOT_UNIQUE.equals(inspectInforService.checkSampleNameUnique(inspectInfor)))
|
|
if (UserConstants.NOT_UNIQUE.equals(inspectInforService.checkSampleNameUnique(inspectInfor)))
|
|
@@ -119,7 +117,6 @@ public class QueryController extends BaseController {
|
|
* 获取新闻文章
|
|
* 获取新闻文章
|
|
*/
|
|
*/
|
|
@PostMapping("/getNewS")
|
|
@PostMapping("/getNewS")
|
|
- @RepeatSubmit
|
|
|
|
public TableDataInfo getNewS(ColumnNews columnNews)
|
|
public TableDataInfo getNewS(ColumnNews columnNews)
|
|
{
|
|
{
|
|
startPage();
|
|
startPage();
|
|
@@ -131,7 +128,6 @@ public class QueryController extends BaseController {
|
|
* 获取新闻文章详情
|
|
* 获取新闻文章详情
|
|
*/
|
|
*/
|
|
@GetMapping("/{newsId}")
|
|
@GetMapping("/{newsId}")
|
|
- @RepeatSubmit
|
|
|
|
public AjaxResult getNewSDetail(@PathVariable("newsId") Integer newsId)
|
|
public AjaxResult getNewSDetail(@PathVariable("newsId") Integer newsId)
|
|
{
|
|
{
|
|
ColumnNews columnNews = columnNewsService.selectColumnNewsDetailMenHu(newsId);
|
|
ColumnNews columnNews = columnNewsService.selectColumnNewsDetailMenHu(newsId);
|
|
@@ -142,7 +138,6 @@ public class QueryController extends BaseController {
|
|
* 获取通知公告
|
|
* 获取通知公告
|
|
*/
|
|
*/
|
|
@PostMapping("/getNotice")
|
|
@PostMapping("/getNotice")
|
|
- @RepeatSubmit
|
|
|
|
public TableDataInfo getNotice(SysNotice notice)
|
|
public TableDataInfo getNotice(SysNotice notice)
|
|
{
|
|
{
|
|
startPage();
|
|
startPage();
|
|
@@ -154,7 +149,6 @@ public class QueryController extends BaseController {
|
|
* 获取友链
|
|
* 获取友链
|
|
*/
|
|
*/
|
|
@PostMapping("/getFriendLink")
|
|
@PostMapping("/getFriendLink")
|
|
- @RepeatSubmit
|
|
|
|
public AjaxResult getFriendLink()
|
|
public AjaxResult getFriendLink()
|
|
{
|
|
{
|
|
List<FriendLink> list = friendLinkService.selectFriendLinkList(new FriendLink());
|
|
List<FriendLink> list = friendLinkService.selectFriendLinkList(new FriendLink());
|