AdjustApiController.java
1.43 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
package com.huaheng.api.general.controller;
import javax.annotation.Resource;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;
import com.huaheng.api.general.domain.AdjustDomain;
import com.huaheng.api.general.service.AdjustService;
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.domain.AjaxResult;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
@RestController
@RequestMapping("/api/adjustApi")
@Api(tags = {"调整单接口"}, value = "调整单接口adjust")
public class AdjustApiController {
@Resource
private AdjustService adjustService;
/**
* 同步调整单
*/
@Log(title = "调整单添加", action = BusinessType.INSERT)
@PostMapping("/adjust")
@ApiOperation("调整单添加公共接口")
@ResponseBody
@ApiLogger(apiName = "添加调整单", from="ERP")
public AjaxResult adjust(@RequestBody AdjustDomain adjustDomain)
{
AjaxResult ajaxResult = adjustService.insertAdjust(adjustDomain);
return ajaxResult;
}
}