| | |
| | | package com.java110.intf.store; |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.allocationStorehouse.AllocationStorehouseDto; |
| | | import com.java110.dto.purchase.AllocationStorehouseDto; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryAllocationStorehousesCount", method = RequestMethod.POST) |
| | | int queryAllocationStorehousesCount(@RequestBody AllocationStorehouseDto allocationStorehouseDto); |
| | | |
| | | /** |
| | | * 新增调拨记录 |
| | | * |
| | | * @param allocationStorehouseDto |
| | | */ |
| | | @RequestMapping(value = "/saveAllocationStorehouses", method = RequestMethod.POST) |
| | | void saveAllocationStorehouses(@RequestBody AllocationStorehouseDto allocationStorehouseDto); |
| | | } |