| | |
| | | package com.java110.intf.acct; |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.accountWithdrawalApply.AccountWithdrawalApplyDto; |
| | | import com.java110.dto.account.AccountWithdrawalApplyDto; |
| | | import com.java110.po.accountWithdrawalApply.AccountWithdrawalApplyPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "${java110.community-service}", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "community-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/accountWithdrawalApplyApi") |
| | | public interface IAccountWithdrawalApplyInnerServiceSMO { |
| | | |
| | |
| | | * @return AccountWithdrawalApplyDto 对象数据 |
| | | */ |
| | | @RequestMapping(value = "/listStateWithdrawalApplys", method = RequestMethod.POST) |
| | | List<AccountWithdrawalApplyDto> listStateWithdrawalApplys(@RequestParam String [] states, int page, int row); |
| | | List<AccountWithdrawalApplyDto> listStateWithdrawalApplys(@RequestParam String [] states); |
| | | /** |
| | | * 查询<p>小区楼</p>总记录数 |
| | | * |