mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-25 21:45:08 +08:00
add 运营端小程序新增查询枪口详情接口
This commit is contained in:
@@ -1264,6 +1264,17 @@ public class PileConnectorInfoServiceImpl implements PileConnectorInfoService {
|
||||
detailVO.setFaultReason(faultReason);
|
||||
}
|
||||
}
|
||||
detailVO.setPileSn(pileConnectorInfoVO.getPileSn());
|
||||
detailVO.setPileName(pileConnectorInfoVO.getPileName());
|
||||
detailVO.setStationId(pileConnectorInfoVO.getStationId());
|
||||
detailVO.setStationName(pileConnectorInfoVO.getStationName());
|
||||
detailVO.setMerchantId(pileConnectorInfoVO.getMerchantId());
|
||||
detailVO.setMerchantName(pileConnectorInfoVO.getMerchantName());
|
||||
detailVO.setModelName(pileConnectorInfoVO.getModelName());
|
||||
detailVO.setChargeType(pileConnectorInfoVO.getChargeType());
|
||||
detailVO.setRatedPower(pileConnectorInfoVO.getRatedPower());
|
||||
detailVO.setCreateTime(pileConnectorInfoVO.getCreateTime());
|
||||
|
||||
detailVO.setPileConnectorCode(pileConnectorCode);
|
||||
detailVO.setStatus(status);
|
||||
|
||||
|
||||
@@ -61,4 +61,54 @@ public class BusinessConnectorDetailVO {
|
||||
* 充电开始时间
|
||||
*/
|
||||
private String chargeStartTime;
|
||||
|
||||
/**
|
||||
* 桩编号
|
||||
*/
|
||||
private String pileSn;
|
||||
|
||||
/**
|
||||
* 桩名称
|
||||
*/
|
||||
private String pileName;
|
||||
|
||||
/**
|
||||
* 站点id
|
||||
*/
|
||||
private String stationId;
|
||||
|
||||
/**
|
||||
* 站点名称
|
||||
*/
|
||||
private String stationName;
|
||||
|
||||
/**
|
||||
* 运营商id
|
||||
*/
|
||||
private String merchantId;
|
||||
|
||||
/**
|
||||
* 运营商名称
|
||||
*/
|
||||
private String merchantName;
|
||||
|
||||
/**
|
||||
* 充电桩型号
|
||||
*/
|
||||
private String modelName;
|
||||
|
||||
/**
|
||||
* 充电类型
|
||||
*/
|
||||
private String chargeType;
|
||||
|
||||
/**
|
||||
* 额定功率
|
||||
*/
|
||||
private String ratedPower;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private String createTime;
|
||||
}
|
||||
|
||||
@@ -189,4 +189,24 @@ public class PileConnectorInfoVO {
|
||||
*/
|
||||
private GroundLockData groundLockData;
|
||||
|
||||
/**
|
||||
* 创建时间
|
||||
*/
|
||||
private String createTime;
|
||||
|
||||
/**
|
||||
* 充电桩型号
|
||||
*/
|
||||
private String modelName;
|
||||
|
||||
/**
|
||||
* 充电类型
|
||||
*/
|
||||
private String chargeType;
|
||||
|
||||
/**
|
||||
* 充电桩名称
|
||||
*/
|
||||
private String pileName;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user