无关风月
2024-08-19 5a22de857470ed18e993260e2cf3a38a1a43de7e
ruoyi-api/ruoyi-api-chargingPile/src/main/java/com/ruoyi/chargingPile/api/feignClient/ChargingGunClient.java
@@ -6,6 +6,7 @@
import com.ruoyi.common.core.domain.R;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
/**
@@ -20,8 +21,8 @@
    * @param id
    * @return
    */
   @PostMapping("/t-charging-gun/getAllName")
   R<String> getAllName(Integer id);
   @PostMapping("/t-charging-gun/getAllName/{id}")
   R<String> getAllName(@PathVariable("id") Integer id);
   
   
   /**
@@ -29,6 +30,6 @@
    * @param id
    * @return
    */
   @PostMapping("/t-charging-gun/getChargingGunById")
   R<TChargingGun> getChargingGunById(Integer id);
   @PostMapping("/t-charging-gun/getChargingGunById/{id}")
   R<TChargingGun> getChargingGunById(@PathVariable("id") Integer id);
}