luoyb
2021-02-20 d0295276c2161f6e4d0b43c5f55e256952116992
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
package cc.mrbird.febs.server.hr.controller;
 
import cc.mrbird.febs.server.hr.entity.EmpJobChange;
import cc.mrbird.febs.server.hr.service.IEmpJobChangeService;
import cc.mrbird.febs.common.core.entity.FebsResponse;
import cc.mrbird.febs.common.core.entity.QueryRequest;
import cc.mrbird.febs.common.core.exception.FebsException;
import cc.mrbird.febs.common.core.utils.FebsUtil;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import lombok.RequiredArgsConstructor;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
 
import javax.validation.Valid;
import java.util.Map;
 
/**
 * name:EmpJobchange
 * package:cc.mrbird.febs.server.hr.controller
 * description:员工调岗记录控制器
 *
 * @author luoyibo
 * @date 2021-02-18 17:57:36
 * @since JDK1.8
 */
@Api(tags = "员工调岗记录管理接口")
@Slf4j
@Validated
@RestController
@RequestMapping("empJobChange")
@RequiredArgsConstructor
public class EmpJobChangeController {
 
    private final IEmpJobChangeService empJobchangeService;
 
    @ApiOperation(value = "员工调岗记录无翻页列表")
    @GetMapping
    @PreAuthorize("hasAuthority('empJobchange:list')")
    public FebsResponse getAllEmpJobchanges(EmpJobChange empJobchange) {
        return new FebsResponse().data(empJobchangeService.findEmpJobChanges(empJobchange));
    }
 
    @ApiOperation(value = "员工调岗记录翻页列表")
    @GetMapping("list")
    @PreAuthorize("hasAuthority('empJobchange:list')")
    public FebsResponse empJobchangeList(QueryRequest request, EmpJobChange empJobchange) {
        Map
                <String, Object> dataTable = FebsUtil.getDataTable(this.empJobchangeService.findEmpJobChanges(request, empJobchange));
        return new FebsResponse().data(dataTable);
    }
 
    @ApiOperation(value = "员工调岗记录增加")
    @PostMapping
    @PreAuthorize("hasAuthority('empJobchange:add')")
    public void addEmpJobchange(@Valid EmpJobChange empJobchange) throws FebsException {
        try {
            this.empJobchangeService.createEmpJobChange(empJobchange);
        } catch (Exception e) {
            String message = "新增员工调岗记录失败";
            log.error(message, e);
            throw new FebsException(message);
        }
    }
 
    @ApiOperation(value = "员工调岗记录物理删除")
    @DeleteMapping
    @PreAuthorize("hasAuthority('empJobchange:delete')")
    public void deleteEmpJobchange(EmpJobChange empJobchange) throws FebsException {
        try {
            this.empJobchangeService.deleteEmpJobChange(empJobchange);
        } catch (Exception e) {
            String message = "删除员工调岗记录失败";
            log.error(message, e);
            throw new FebsException(message);
        }
    }
 
    @ApiOperation(value = "员工调岗记录逻辑删除")
    @DeleteMapping("{ids}")
    @PreAuthorize("hasAuthority('empJobchange:delete')")
    public void logicDeleteEmpJobchange(@PathVariable("ids") String ids) throws FebsException {
        try {
            this.empJobchangeService.logicDelEmpJobChange(ids);
        } catch (Exception e) {
            String message = "逻辑删除员工调岗记录失败";
            log.error(message, e);
            throw new FebsException(message);
        }
    }
 
    @ApiOperation(value = "员工调岗记录修改")
    @PutMapping
    @PreAuthorize("hasAuthority('empJobchange:update')")
    public void updateEmpJobchange(EmpJobChange empJobchange) throws FebsException {
        try {
            this.empJobchangeService.updateEmpJobChange(empJobchange);
        } catch (Exception e) {
            String message = "修改员工调岗记录失败";
            log.error(message, e);
            throw new FebsException(message);
        }
    }
}