Your Name
2023-03-17 696fb59e8e88162e5c21ceeb7794853216d413db
java110-interface/src/main/java/com/java110/intf/store/IAllocationStorehouseInnerServiceSMO.java
@@ -17,7 +17,7 @@
 * @Version 1.0
 * add by wuxw 2019/4/24
 **/
@FeignClient(name = "store-service", configuration = {FeignConfiguration.class})
@FeignClient(name = "${java110.store-service}", configuration = {FeignConfiguration.class})
@RequestMapping("/allocationStorehouseApi")
public interface IAllocationStorehouseInnerServiceSMO {
@@ -38,4 +38,12 @@
     */
    @RequestMapping(value = "/queryAllocationStorehousesCount", method = RequestMethod.POST)
    int queryAllocationStorehousesCount(@RequestBody AllocationStorehouseDto allocationStorehouseDto);
    /**
     * 新增调拨记录
     *
     * @param allocationStorehouseDto
     */
    @RequestMapping(value = "/saveAllocationStorehouses", method = RequestMethod.POST)
    void saveAllocationStorehouses(@RequestBody AllocationStorehouseDto allocationStorehouseDto);
}