java110
2023-08-15 20001a775126c1be95a2b84cebb8813a54608712
java110-interface/src/main/java/com/java110/intf/store/IAllocationStorehouseApplyInnerServiceSMO.java
@@ -1,7 +1,7 @@
package com.java110.intf.store;
import com.java110.config.feign.FeignConfiguration;
import com.java110.dto.allocationStorehouseApply.AllocationStorehouseApplyDto;
import com.java110.dto.purchase.AllocationStorehouseApplyDto;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
@@ -24,7 +24,6 @@
    /**
     * <p>查询小区楼信息</p>
     *
     *
     * @param allocationAllocationStorehouseApplyhouseApplyDto 数据对象分享
     * @return AllocationStorehouseApplyDto 对象数据
     */
@@ -39,4 +38,12 @@
     */
    @RequestMapping(value = "/queryAllocationStorehouseApplysCount", method = RequestMethod.POST)
    int queryAllocationStorehouseApplysCount(@RequestBody AllocationStorehouseApplyDto allocationAllocationStorehouseApplyhouseApplyDto);
    /**
     * 添加调拨申请记录
     *
     * @param allocationStorehouseApplyDto
     */
    @RequestMapping(value = "/saveAllocationStorehouseApplys", method = RequestMethod.POST)
    void saveAllocationStorehouseApplys(@RequestBody AllocationStorehouseApplyDto allocationStorehouseApplyDto);
}