
7 changed files with 129 additions and 4 deletions
@ -0,0 +1,36 @@ |
|||||
|
package com.yxt.oms.feign.warehouse.warehouseInventory; |
||||
|
|
||||
|
import com.yxt.common.core.result.ResultBean; |
||||
|
import com.yxt.oms.biz.func.warehouseinfo.SmsOrderHouseInfo; |
||||
|
import io.swagger.annotations.Api; |
||||
|
import io.swagger.annotations.ApiOperation; |
||||
|
import org.springframework.cloud.openfeign.FeignClient; |
||||
|
import org.springframework.web.bind.annotation.PostMapping; |
||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
|
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* Project: anrui_portal(门户建设) <br/> |
||||
|
* File: SysRoleFeign.java <br/> |
||||
|
* Class: com.yxt.anrui.portal.api.sysrole.SysRoleFeign <br/> |
||||
|
* Description: 角色. <br/> |
||||
|
* Copyright: Copyright (c) 2011 <br/> |
||||
|
* Company: https://gitee.com/liuzp315 <br/>
|
||||
|
* Makedate: 2021-08-03 00:24:29 <br/> |
||||
|
* |
||||
|
* @author liupopo |
||||
|
* @version 1.0 |
||||
|
* @since 1.0 |
||||
|
*/ |
||||
|
@Api(tags = "库存") |
||||
|
@FeignClient( |
||||
|
contextId = "ss-common-warehouse-WarehouseInventory", |
||||
|
name = "ss-common-WarehouseInventory", |
||||
|
path = "/apiadmin/inventory/Warehouseinventory" |
||||
|
) |
||||
|
public interface WarehouseInventoryFeign { |
||||
|
@ApiOperation("根据skuSid查询商品库存") |
||||
|
@PostMapping("/selInventoryCountBySkuSid") |
||||
|
public String selInventoryCountBySkuSid(@RequestParam("skuSid") String skuSid); |
||||
|
} |
Loading…
Reference in new issue