| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "community-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/allocationAllocationStorehouseApplyhouseApplyApi") |
| | | @FeignClient(name = "store-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/allocationStorehouseApplyApi") |
| | | public interface IAllocationStorehouseApplyInnerServiceSMO { |
| | | |
| | | /** |
| | | * <p>查询小区楼信息</p> |
| | | * |
| | | * |
| | | * @param allocationAllocationStorehouseApplyhouseApplyDto 数据对象分享 |
| | | * @return AllocationStorehouseApplyDto 对象数据 |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryAllocationStorehouseApplysCount", method = RequestMethod.POST) |
| | | int queryAllocationStorehouseApplysCount(@RequestBody AllocationStorehouseApplyDto allocationAllocationStorehouseApplyhouseApplyDto); |
| | | |
| | | /** |
| | | * 添加调拨申请记录 |
| | | * |
| | | * @param allocationStorehouseApplyDto |
| | | */ |
| | | @RequestMapping(value = "/saveAllocationStorehouseApplys", method = RequestMethod.POST) |
| | | void saveAllocationStorehouseApplys(@RequestBody AllocationStorehouseApplyDto allocationStorehouseApplyDto); |
| | | } |