| | |
| | | package com.java110.intf.acct; |
| | | |
| | | import com.java110.config.feign.FeignConfiguration; |
| | | import com.java110.dto.parkingCouponShop.ParkingCouponShopDto; |
| | | import com.java110.dto.parkingCoupon.ParkingCouponShopDto; |
| | | import com.java110.po.parkingCouponShop.ParkingCouponShopPo; |
| | | import org.springframework.cloud.openfeign.FeignClient; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | |
| | | */ |
| | | @RequestMapping(value = "/queryParkingCouponShopsCount", method = RequestMethod.POST) |
| | | int queryParkingCouponShopsCount(@RequestBody ParkingCouponShopDto parkingCouponShopDto); |
| | | |
| | | /** |
| | | * 按 商铺id shopId 查询 各个商铺的停车卷数量 |
| | | * @param parkingCouponShopDto |
| | | * @return |
| | | */ |
| | | @RequestMapping(value = "/queryParkingCouponShopStatistics", method = RequestMethod.POST) |
| | | List<ParkingCouponShopDto> queryParkingCouponShopStatistics(@RequestBody ParkingCouponShopDto parkingCouponShopDto); |
| | | } |