Browse Source

添加controller注解

master
dimengzhe 3 years ago
parent
commit
e3f6c46942
  1. 3
      anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehicleinbound/ScmVehicleInboundRest.java

3
anrui-scm/anrui-scm-biz/src/main/java/com/yxt/anrui/scm/biz/scmvehicleinbound/ScmVehicleInboundRest.java

@ -6,7 +6,9 @@ import com.yxt.common.core.result.ResultBean;
import com.yxt.common.core.vo.PagerVo; import com.yxt.common.core.vo.PagerVo;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/** /**
* @Author dimengzhe * @Author dimengzhe
@ -15,6 +17,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
*/ */
@Api(tags = "车辆入库管理") @Api(tags = "车辆入库管理")
@RequestMapping("v1/scmvehicleinbound") @RequestMapping("v1/scmvehicleinbound")
@Controller
public class ScmVehicleInboundRest implements ScmVehicleInboundFeign { public class ScmVehicleInboundRest implements ScmVehicleInboundFeign {
@Autowired @Autowired

Loading…
Cancel
Save