heheng
5 天以前 3341599719e0ae63889b6bfb4eea3cf4521b0ab8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.gkhy.exam.admin.controller.system;
 
import com.gkhy.exam.common.annotation.Log;
import com.gkhy.exam.common.annotation.RepeatSubmit;
import com.gkhy.exam.common.api.CommonResult;
import com.gkhy.exam.common.enums.BusinessType;
import com.gkhy.exam.system.domain.SysNotice;
import com.gkhy.exam.system.service.SysNoticeService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
 
@Api(tags = "通知前端控制器")
@RestController
@RequestMapping("/system/notice")
public class SysNoticeController {
 
    @Autowired
    private SysNoticeService noticeService;
 
    @ApiOperation(value = "获取通知公告列表")
    @GetMapping("/list")
    public CommonResult list(SysNotice notice){
        return CommonResult.success(noticeService.selectNoticeList(notice));
    }
 
 
    @ApiOperation(value = "根据通知公告编号获取详细信息")
    @GetMapping(value = "/{noticeId}")
    public CommonResult getInfo(@PathVariable Long noticeId)
    {
        return CommonResult.success(noticeService.selectNoticeById(noticeId));
    }
 
 
    @RepeatSubmit
    @Log(title = "通知公告", businessType = BusinessType.INSERT)
    @ApiOperation(value = "新增通知公告")
    @PostMapping
    public CommonResult add(@Validated @RequestBody SysNotice notice)
    {
        return CommonResult.success(noticeService.insertNotice(notice));
    }
 
    @RepeatSubmit
    @Log(title = "通知公告", businessType = BusinessType.UPDATE)
    @ApiOperation(value = "修改通知公告")
    @PutMapping
    public CommonResult edit(@Validated @RequestBody SysNotice notice)
    {
        return CommonResult.success(noticeService.updateNotice(notice));
    }
 
    @RepeatSubmit
    @Log(title = "通知公告", businessType = BusinessType.DELETE)
    @ApiOperation(value = "删除通知公告")
    @DeleteMapping("/{noticeIds}")
    public CommonResult remove(@PathVariable Long[] noticeIds)
    {
        noticeService.deleteNoticeByIds(noticeIds);
        return CommonResult.success();
    }
}