houzhongjian
2024-07-23 a6de490948278991e47952e90671ddba4555e9a2
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
package com.iailab.module.mcs.controller.admin;
 
import com.iailab.common.annotation.LogOperation;
import com.iailab.framework.common.page.PageData;
import com.iailab.common.utils.Constant;
import com.iailab.framework.common.pojo.CommonResult;
 
import com.iailab.framework.common.util.validation.ValidationUtils;
import com.iailab.framework.common.validation.group.AddGroup;
import com.iailab.framework.common.validation.group.DefaultGroup;
import com.iailab.framework.common.validation.group.UpdateGroup;
import com.iailab.module.mcs.dto.StModelRunlogDTO;
import com.iailab.module.mcs.service.StModelRunlogService;
import io.swagger.v3.oas.annotations.tags.Tag;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.Parameters;
import javax.annotation.Resource;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
 
 
import java.util.Map;
 
 
/**
 * 运行日志表
 *
 * @author lirm ${email}
 * @since 1.0.0 2023-07-04
 */
@RestController
@RequestMapping("/model/mcs/runlog")
@Tag(name = "运行日志表")
public class StModelRunlogController {
    @Resource
    private StModelRunlogService runlogService;
 
    @GetMapping("page")
    @Operation(summary = "分页")
    @Parameters({
        @Parameter(name = Constant.PAGE, description = "当前页码,从1开始", required = true) ,
        @Parameter(name = Constant.LIMIT, description = "每页显示记录数", required = true) ,
        @Parameter(name = Constant.ORDER_FIELD, description = "排序字段") ,
        @Parameter(name = Constant.ORDER, description = "排序方式,可选值(asc、desc)")
    })
    public CommonResult<PageData<StModelRunlogDTO>> page(@RequestParam Map<String, Object> params){
        PageData<StModelRunlogDTO> page = runlogService.queryPage(params);
 
        return new CommonResult<PageData<StModelRunlogDTO>>().setData(page);
    }
 
    @GetMapping("{id}")
    @Operation(summary = "信息")
    @PreAuthorize("@ss.hasPermission('mcs:runlog:info')")
    public CommonResult<StModelRunlogDTO> get(@PathVariable("id") Long id){
        StModelRunlogDTO data = runlogService.get(id);
 
        return new CommonResult<StModelRunlogDTO>().setData(data);
    }
 
    @PostMapping
    @Operation(summary = "保存")
    @LogOperation("保存")
    @PreAuthorize("@ss.hasPermission('mcs:runlog:save')")
    public CommonResult save(@RequestBody StModelRunlogDTO dto){
        //效验数据
        ValidationUtils.validate(dto, AddGroup.class, DefaultGroup.class);
 
        runlogService.save(dto);
 
        return new CommonResult();
    }
 
    @PutMapping
    @Operation(summary = "修改")
    @LogOperation("修改")
    @PreAuthorize("@ss.hasPermission('mcs:runlog:update')")
    public CommonResult update(@RequestBody StModelRunlogDTO dto){
        //效验数据
        ValidationUtils.validate(dto, UpdateGroup.class, DefaultGroup.class);
 
        runlogService.update(dto);
 
        return new CommonResult();
    }
 
    @DeleteMapping
    @Operation(summary = "删除")
    @LogOperation("删除")
    @PreAuthorize("@ss.hasPermission('mcs:runlog:delete')")
    public CommonResult delete(@RequestBody Long[] ids){
        runlogService.delete(ids);
        return new CommonResult();
    }
 
//    @GetMapping("export")
//    @Operation(summary = "导出")
//    @LogOperation("导出")
//    @PreAuthorize("@ss.hasPermission('mcs:runlog:export')")
//    public void export(@RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception {
//        List<StModelRunlogDTO> list = runlogService.listAll(params);
//
//        ExcelUtils.exportExcelToTarget(response, null, list, StModelRunlogExcel.class);
//    }
 
    @GetMapping("list")
    @LogOperation("日志")
    public CommonResult<PageData<StModelRunlogDTO>> runlog(@RequestParam Map<String, Object> params) {
        params.put("limit", "8");
        PageData<StModelRunlogDTO> page = runlogService.queryPage(params);
 
        return new CommonResult<PageData<StModelRunlogDTO>>().setData(page);
    }
 
}