
13 changed files with 103 additions and 73 deletions
@ -0,0 +1,25 @@ |
|||
package com.yxt.anrui.as.feign.wms.wmsinventorycheckbill; |
|||
|
|||
import com.yxt.anrui.as.feign.wms.wmsInventory.*; |
|||
import com.yxt.common.core.query.PagerQuery; |
|||
import com.yxt.common.core.result.ResultBean; |
|||
import com.yxt.common.core.vo.PagerVo; |
|||
import io.swagger.annotations.ApiOperation; |
|||
import org.springframework.cloud.openfeign.FeignClient; |
|||
import org.springframework.web.bind.annotation.PostMapping; |
|||
import org.springframework.web.bind.annotation.RequestBody; |
|||
import org.springframework.web.bind.annotation.RequestParam; |
|||
|
|||
import java.util.List; |
|||
|
|||
@FeignClient( |
|||
contextId = "yxt-wms-WmsInventoryCheckBill", |
|||
name = "yxt-wms", |
|||
path = "v1/wmsinventorycheckbill" |
|||
) |
|||
public interface WmsInventoryCheckBillFegin { |
|||
|
|||
@ApiOperation("查询本部门下是否有盘点中的商品") |
|||
@PostMapping("/selPdByDeptSid") |
|||
public ResultBean<Integer> selPdByDeptSid(@RequestParam("deptSid") String deptSid); |
|||
} |
Loading…
Reference in new issue