AdjustApiController.java 1.43 KB
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;
    }

}