危化品全生命周期管理后端
kongzy
2024-09-14 ed36af4d4cc5feac72a384d85f9032fc6dc1223a
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
package com.gkhy.hazmat.admin.controller.web;
 
 
import com.gkhy.hazmat.common.annotation.RepeatSubmit;
import com.gkhy.hazmat.common.api.CommonResult;
import com.gkhy.hazmat.system.domain.HzHazmat;
import com.gkhy.hazmat.system.service.HzHazmatService;
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.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.*;
 
/**
 * <p>
 * 危化品表 前端控制器
 * </p>
 *
 * @author kzy
 * @since 2024-08-05 14:41:40
 */
@Api(tags = "原材料危化品前端控制器")
@RestController
@RequestMapping("/hazmat")
public class HzHazmatController {
    @Autowired
    private HzHazmatService hazmatService;
 
    @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 = "warehouseId", dataType = "long", required = true, value = "仓库id"),
            @ApiImplicitParam(paramType = "query", name = "basicId", dataType = "long", required = true, value = "危化品基础数据id")
    })
    @GetMapping("/list")
    public CommonResult list(HzHazmat hazmat){
        return CommonResult.success(hazmatService.selectHazmatList(hazmat));
    }
 
 
    @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 = "warehouseId", dataType = "long", required = true, value = "仓库id"),
            @ApiImplicitParam(paramType = "query", name = "basicId", dataType = "long", required = true, value = "危化品基础数据id")
    })
    @GetMapping("/hazmatCollect")
    public CommonResult hazmatCollect(HzHazmat hazmat){
        return CommonResult.success(hazmatService.selectHazmatGroupWarehouse(hazmat));
    }
 
 
    @RepeatSubmit
    @PreAuthorize("hasAnyAuthority('hazmat:manage:company','hazmat:manage:common')")
    @ApiOperation(value = "删除危化品")
    @DeleteMapping(value = { "/{hazmatId}" })
    public CommonResult delete(@PathVariable(value = "hazmatId", required = true) Long hazmatId){
        return CommonResult.success(hazmatService.deleteHazmatById(hazmatId));
    }
 
    @PreAuthorize("hasAnyAuthority('hazmat:manage:company','hazmat:manage:common')")
    @RepeatSubmit
    @ApiOperation(value = "二维码作废")
    @PostMapping(value = { "/hazmatDiscard/{hazmatId}" })
    public CommonResult hazmatDiscard(@PathVariable(value = "hazmatId", required = true) Long hazmatId){
        hazmatService.hazmatDiscard(hazmatId);
        return CommonResult.success();
    }
 
    @PreAuthorize("hasAnyAuthority('hazmat:manage:company','hazmat:manage:common')")
    @RepeatSubmit
    @ApiOperation(value = "零头修改")
    @PostMapping(value = { "/changeRemaining" })
    public CommonResult changeRemaining(@RequestBody HzHazmat hazmat){
        hazmatService.changeRemaining(hazmat);
        return CommonResult.success();
    }
 
 
    @PreAuthorize("hasAnyAuthority('hazmat:manage:company','hazmat:manage:common')")
    @RepeatSubmit
    @ApiOperation(value = "修改状态")
    @PostMapping(value = { "/changeState" })
    public CommonResult changeState(@RequestBody HzHazmat hazmat){
        hazmatService.changeState(hazmat);
        return CommonResult.success();
    }
 
 
}