| | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.fee.FeeReceiptDto; |
| | | import com.java110.dto.fee.FeeReceiptDtoNew; |
| | | import com.java110.po.feeReceipt.FeeReceiptPo; |
| | | import com.java110.po.fee.FeeReceiptPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | |
| | | * @Version 1.0 |
| | | * add by wuxw 2019/4/24 |
| | | **/ |
| | | @FeignClient(name = "${java110.fee-service}", configuration = {FeignConfiguration.class}) |
| | | @FeignClient(name = "fee-service", configuration = {FeignConfiguration.class}) |
| | | @RequestMapping("/feeReceiptApi") |
| | | public interface IFeeReceiptInnerServiceSMO { |
| | | |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryFeeReceiptsCount", method = RequestMethod.POST) |
| | | int queryFeeReceiptsCount(@RequestBody FeeReceiptDto feeReceiptDto); |
| | | |
| | | |
| | | /** |
| | | * 生成收据编号 |
| | | * |
| | | * @param communityId 小区ID |
| | | * @return 收据编号 |
| | | */ |
| | | @RequestMapping(value = "/generatorReceiptCode", method = RequestMethod.POST) |
| | | String generatorReceiptCode(@RequestBody String communityId); |
| | | } |