heheng
2 天以前 a8a6760635f0642a2cbf61854b5587d9d0944985
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.web;
 
 
import com.gkhy.exam.common.annotation.RepeatSubmit;
import com.gkhy.exam.common.api.CommonResult;
import com.gkhy.exam.system.domain.ManagementReview;
import com.gkhy.exam.system.domain.Meetings;
import com.gkhy.exam.system.service.ManagementReviewService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
 
/**
 * <p>
 * 管理评审会议、输入、报告 前端控制器
 * </p>
 *
 * @author hh
 * @since 2025-07-10 15:11:50
 */
@RestController
@RequestMapping("/system/managementReview")
@Api(tags = "管理评审会议、输入、报告")
public class ManagementReviewController {
    @Autowired
    private ManagementReviewService managementReviewService;
 
 
 
    @ApiOperation(value = "管理评审会议、输入、报告列表(分页)")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"),
            @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10"),
            @ApiImplicitParam(paramType = "query", name = "companyId", dataType = "int", required = false, value = "公司id"),
            @ApiImplicitParam(paramType = "query", name = "reviewType", dataType = "int", required = true, value = "1会议、2输入、3报告")
    })
    @GetMapping("/selectMeetingsList")
    public CommonResult selectMeetingsList(Integer companyId,@RequestParam("reviewType") Integer reviewType){
        return CommonResult.success(managementReviewService.selectManagementReviewList(companyId,reviewType));
    }
    @RepeatSubmit
    @ApiOperation(value = "新增管理评审会议、输入、报告")
    @PostMapping("/saveManagementReview")
    public CommonResult insertManagementReview(@RequestBody @Validated ManagementReview managementReview){
        return managementReviewService.insertManagementReview(managementReview);
    }
    @ApiOperation(value = "修改管理评审会议、输入、报告")
    @PostMapping("/updateManagementReview")
    public CommonResult updateManagementReview(@RequestBody @Validated ManagementReview managementReview){
        return managementReviewService.updateManagementReview(managementReview);
    }
    @ApiOperation(value = "删除管理评审会议、输入、报告")
    @ApiImplicitParams({
            @ApiImplicitParam(paramType = "query", name = "id", dataType = "int", required = true, value = "id"),
    })
    @GetMapping("/deletedManagementReview")
    public CommonResult deletedManagementReview(@RequestParam Integer id){
        return managementReviewService.deletedManagementReview(id);
    }
 
}