Blame view

src/main/java/com/huaheng/api/general/controller/AdjustApi.java 1.28 KB
1
2
3
4
5
6
7
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;
周峰 authored
8
import com.huaheng.framework.aspectj.lang.annotation.ApiLogger;
9
10
11
12
13
14
15
16
17
18
19
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")
xqs authored
20
@Api(tags = {"调整单接口"}, value = "调整单接口adjust")
21
22
23
24
25
26
27
28
29
30
31
32
33
public class AdjustApi {

    @Resource
    private AdjustService adjustService;


    /**
     * 同步调整单
     */
    @Log(title = "调整单添加", action = BusinessType.INSERT)
    @PostMapping("/adjust")
    @ApiOperation("调整单添加公共接口")
    @ResponseBody
周峰 authored
34
    @ApiLogger(apiName = "添加调整单", from="ERP")
35
36
37
38
39
40
41
    public AjaxResult adjust(@RequestBody AdjustDomain adjustDomain)
    {
        AjaxResult ajaxResult = adjustService.insertAdjust(adjustDomain);
        return ajaxResult;
    }

}