update 修改站点运营商时将此站点下所有桩的运营商也进行修改

This commit is contained in:
Lemon
2023-07-04 16:38:45 +08:00
parent 3ea5589592
commit 196f412473
5 changed files with 44 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ import com.jsowell.pile.vo.uniapp.PersonalPileInfoVO;
import com.jsowell.pile.vo.uniapp.PileConnectorDetailVO;
import com.jsowell.pile.vo.web.IndexGeneralSituationVO;
import com.jsowell.pile.vo.web.PileDetailVO;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -164,4 +165,10 @@ public interface IPileBasicInfoService {
List<PileBasicInfo> getPileListByStationId(String stationId);
List<PileInfoVO> queryPileDetailList(List<String> stationIdList);
/**
* 批量修改充电桩运营商
* @param oldMerchantId
*/
void updatePileMerchantBatch(String oldMerchantId, String newMerchantId);
}