|
1
2
3
|
package com.huaheng.api.general.controller;
|
|
4
5
6
7
8
9
10
11
|
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;
|
|
12
13
|
import com.huaheng.api.general.domain.AdjustDomain;
import com.huaheng.api.general.service.AdjustService;
|
|
14
|
import com.huaheng.framework.aspectj.lang.annotation.ApiLogger;
|
|
15
16
17
|
import com.huaheng.framework.aspectj.lang.annotation.Log;
import com.huaheng.framework.aspectj.lang.constant.BusinessType;
import com.huaheng.framework.web.domain.AjaxResult;
|
|
18
|
|
|
19
20
21
22
23
|
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
@RestController
@RequestMapping("/api/adjustApi")
|
|
24
|
@Api(tags = {"调整单接口"}, value = "调整单接口adjust")
|
|
25
|
public class AdjustApiController {
|
|
26
27
28
29
30
31
32
33
34
35
36
37
|
@Resource
private AdjustService adjustService;
/**
* 同步调整单
*/
@Log(title = "调整单添加", action = BusinessType.INSERT)
@PostMapping("/adjust")
@ApiOperation("调整单添加公共接口")
@ResponseBody
|
|
38
|
@ApiLogger(apiName = "添加调整单", from="ERP")
|
|
39
40
41
42
43
44
45
|
public AjaxResult adjust(@RequestBody AdjustDomain adjustDomain)
{
AjaxResult ajaxResult = adjustService.insertAdjust(adjustDomain);
return ajaxResult;
}
}
|