mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
update 高德
This commit is contained in:
@@ -2,12 +2,13 @@ package com.jsowell.pile.mapper;
|
||||
|
||||
import com.jsowell.pile.domain.PileBasicInfo;
|
||||
import com.jsowell.pile.dto.IndexQueryDTO;
|
||||
import com.jsowell.pile.vo.uniapp.PersonalPileInfoVO;
|
||||
import com.jsowell.pile.vo.web.IndexGeneralSituationVO;
|
||||
import com.jsowell.pile.dto.QueryPileDTO;
|
||||
import com.jsowell.pile.dto.ReplaceMerchantStationDTO;
|
||||
import com.jsowell.pile.vo.web.PileDetailVO;
|
||||
import com.jsowell.pile.vo.base.PileInfoVO;
|
||||
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 org.springframework.stereotype.Repository;
|
||||
|
||||
@@ -150,4 +151,6 @@ public interface PileBasicInfoMapper {
|
||||
* @return
|
||||
*/
|
||||
List<PileBasicInfo> getPileListByStationId(@Param("stationId") String stationId);
|
||||
|
||||
List<PileInfoVO> queryPileDetailList(@Param("stationIdList") List<String> stationIdList);
|
||||
}
|
||||
|
||||
@@ -162,4 +162,6 @@ public interface IPileBasicInfoService {
|
||||
* @return
|
||||
*/
|
||||
List<PileBasicInfo> getPileListByStationId(String stationId);
|
||||
|
||||
List<PileInfoVO> queryPileDetailList(List<String> stationIdList);
|
||||
}
|
||||
|
||||
@@ -653,4 +653,9 @@ public class PileBasicInfoServiceImpl implements IPileBasicInfoService {
|
||||
}
|
||||
return pileList;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<PileInfoVO> queryPileDetailList(List<String> stationIdList) {
|
||||
return pileBasicInfoMapper.queryPileDetailList(stationIdList);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,4 +54,14 @@ public class PileInfoVO {
|
||||
* 设备名称
|
||||
*/
|
||||
private String modelName;
|
||||
|
||||
/**
|
||||
* 类型
|
||||
*/
|
||||
private String speedType;
|
||||
|
||||
/**
|
||||
* 枪口编号
|
||||
*/
|
||||
private String pileConnectorCode;
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ import java.util.List;
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class PileDetailVO {
|
||||
public class PileInfoVO {
|
||||
/**
|
||||
* 站点id
|
||||
*/
|
||||
@@ -1,17 +0,0 @@
|
||||
package com.jsowell.pile.vo.web;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class PileInfoVO {
|
||||
private String pileSn;
|
||||
private String stationId;
|
||||
private String merchantId;
|
||||
private String modelId;
|
||||
}
|
||||
Reference in New Issue
Block a user