ICSBasicDataApi.java
4.9 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
package com.huaheng.api.U8.controller;
import com.alibaba.fastjson.JSON;
import com.huaheng.framework.aspectj.lang.annotation.ApiLogger;
import com.huaheng.framework.aspectj.lang.annotation.Log;
import com.huaheng.framework.aspectj.lang.constant.BusinessType;
import com.huaheng.framework.web.controller.BaseController;
import com.huaheng.framework.web.domain.AjaxResult;
import com.huaheng.pc.u8.domain.*;
import com.huaheng.pc.u8.service.*;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import java.util.List;
/**
 * @BelongsProject: hhwms
 * @BelongsPackage: com.huaheng.api.U8.controller
 * @Author: zhouhong
 * @CreateTime: 2022-09-08  14:41
 * @Description: TODO
 * @Version: 1.0
 */
@RestController
@RequestMapping("/api/icsBasicData1")
@Api(tags = {"icsBasicData"}, description = "ICS基本数据接口")
public class ICSBasicDataApi extends BaseController {
    private static final Logger logger = LoggerFactory.getLogger(ICSBasicDataApi.class);
    @Resource
    private MaterialAPIService materialAPIService;
    @Resource
    private ComputationUnitApiService computationUnitApiService;
    @Resource
    private UserAPIService userAPIService;
    @Resource
    private DeptAPIService deptAPIService;
    @Resource
    private CustomerAPIService customerAPIService;
    @Resource
    private SupplierAPIService supplierAPIService;
    @Resource
    private WarehouseApiService warehouseApiService;
    @Log(title = "物料添加", operating = "物料添加", action = BusinessType.INSERT)
    @PostMapping("/GetICSInventory")
    @ApiOperation("ICS物料添加接口")
    @ResponseBody
    @ApiLogger(apiName = "ICS物料添加接口", from = "U8")
    public AjaxResult ICSInventory(@RequestBody List<ICSMaterialModel> iCSInventorys) {
        String json = JSON.toJSONString(iCSInventorys);
        logger.info("物料:{}", json);
        // 添加物料保存到字典
        AjaxResult ajaxResult = materialAPIService.ICSInventory(iCSInventorys);
        return ajaxResult;
    }
    @Log(title = "人员档案添加", action = BusinessType.INSERT)
    @PostMapping("/GetICSPerson")
    @ApiOperation("ICS人员档案添加接口")
    @ResponseBody
    public AjaxResult ICSPerson(@RequestBody ICSPersonModel icsPerson) {
        String json = JSON.toJSONString(icsPerson);
        logger.info("人员:{}", json);
        AjaxResult ajaxResult = userAPIService.ICSPerson(icsPerson);
        return ajaxResult;
    }
    @Log(title = "计量单位添加", action = BusinessType.INSERT)
    @PostMapping("/GetICSComputationUnit")
    @ApiOperation("ICS计量单位添加接口")
    @ResponseBody
    public AjaxResult ICSComputationUnit(@RequestBody ICScomputationUnitModel icsComputationUnit) {
        String json = JSON.toJSONString(icsComputationUnit);
        logger.info("计量单位:{}", json);
        AjaxResult ajaxResult = computationUnitApiService.ICSUnit(icsComputationUnit);
        return ajaxResult;
    }
    @Log(title = "部门档案添加", action = BusinessType.INSERT)
    @PostMapping("/GetICSDepartment")
    @ApiOperation("ICS部门档案添加接口")
    @ResponseBody
    public AjaxResult ICSDepartment(@RequestBody ICSDepartmentModel icsDepartment) {
        String json = JSON.toJSONString(icsDepartment);
        logger.info("部门:{}", json);
        AjaxResult ajaxResult = deptAPIService.ICSDepartment(icsDepartment);
        return ajaxResult;
    }
    @Log(title = "客户档案添加", action = BusinessType.INSERT)
    @PostMapping("/GetICSCustomer")
    @ApiOperation("ICS客户档案添加接口")
    @ResponseBody
    @ApiLogger(apiName = "客户档案添加", from = "U8")
    public AjaxResult ICSCustomer(@RequestBody ICSCustomerModel icsCustomer) {
        String json = JSON.toJSONString(icsCustomer);
        logger.info("客户:{}", json);
        AjaxResult ajaxResult = customerAPIService.ICSCustomer(icsCustomer);
        return ajaxResult;
    }
    @Log(title = "供应商档案添加", action = BusinessType.INSERT)
    @PostMapping("/GetICSVendor")
    @ApiOperation("ICS供应商档案添加接口")
    @ResponseBody
    @ApiLogger(apiName = "ICS供应商档案添加接口", from = "U8")
    public AjaxResult ICSVendor(@RequestBody ICSVendorModel icsVendor) {
        String json = JSON.toJSONString(icsVendor);
        logger.info("供应商:{}", json);
        AjaxResult ajaxResult = supplierAPIService.ICSVendor(icsVendor);
        return ajaxResult;
    }
    @Log(title = "仓库档案添加", action = BusinessType.INSERT)
    @PostMapping("/GetICSWarehouse")
    @ApiOperation("ICS仓库档案添加接口")
    @ResponseBody
    public AjaxResult ICSWarehouse(@RequestBody ICSWarehouseModel icsWarehouse) {
        AjaxResult ajaxResult = warehouseApiService.ICSWarehouse(icsWarehouse);
        return ajaxResult;
    }
}