huliguo
2 天以前 8115295a64e0809246897fefb8c45de06dce0799
ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/feignClient/ChargingGunClient.java
@@ -8,10 +8,7 @@
import com.ruoyi.common.core.constant.ServiceNameConstants;
import com.ruoyi.common.core.domain.R;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.*;
import java.util.List;
@@ -112,5 +109,9 @@
   @PostMapping("/t-charging-gun/getChargingGunByFullNumber")
   R<TChargingGun> getChargingGunByFullNumber(@RequestParam("fullNumber") String fullNumber);
   /**
    * 大屏 根据站点ids和充电模式集合查询充电枪集合
    */
   @GetMapping("/t-charging-gun/getGunIdsBySiteIdsAndChargeModels")
   R<List<Integer>> getGunIdsBySiteIdsAndChargeModels(@RequestParam("siteIds") List<Integer> siteIds ,@RequestParam("chargeModels") List<Integer> chargeModels);
}