AdjustApi.java
1.28 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
package com.huaheng.api.general.controller;
import com.huaheng.api.general.domain.AdjustDomain;
import com.huaheng.api.general.domain.CycCountDomain;
import com.huaheng.api.general.service.AdjustService;
import com.huaheng.api.general.service.CycleCountService;
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;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
@RestController
@RequestMapping("/api/adjustApi")
@Api(tags = {"调整单接口"}, value = "调整单接口adjust")
public class AdjustApi {
@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;
}
}