mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
update 浙江省平台
This commit is contained in:
@@ -978,7 +978,7 @@ public class PileBasicInfoServiceImpl implements PileBasicInfoService {
|
||||
/**
|
||||
* 获取桩列表信息
|
||||
*
|
||||
* @param pileStationInfo
|
||||
// * @param pileStationInfo
|
||||
* @return
|
||||
*/
|
||||
/*@Override
|
||||
@@ -1074,7 +1074,7 @@ public class PileBasicInfoServiceImpl implements PileBasicInfoService {
|
||||
/**
|
||||
* 获取枪口列表
|
||||
*
|
||||
* @param pileBasicInfo
|
||||
// * @param pileBasicInfo
|
||||
* @return
|
||||
*/
|
||||
/*@Override
|
||||
@@ -1133,6 +1133,9 @@ public class PileBasicInfoServiceImpl implements PileBasicInfoService {
|
||||
connectorInfo.setVoltageLowerLimits(Integer.valueOf(modelInfo.getRatedVoltage()));
|
||||
connectorInfo.setCurrent(Integer.valueOf(modelInfo.getRatedCurrent()));
|
||||
connectorInfo.setConnectorName(pileConnectorInfo.getPileConnectorCode());
|
||||
connectorInfo.setOperateStatus(50); // 50-正常使用
|
||||
connectorInfo.setNationalStandard(2); // 2-2015
|
||||
connectorInfo.setAuxPower(3); // 3-兼容12V和24V
|
||||
|
||||
if (!StringUtils.equals(modelInfo.getConnectorNum(), "1")) {
|
||||
// 如果不是单枪,则枪口功率需要除以枪口数量
|
||||
|
||||
@@ -70,4 +70,28 @@ public class ConnectorInfo {
|
||||
@JSONField(name = "ParkNo")
|
||||
private String parkNo;
|
||||
|
||||
|
||||
/**
|
||||
* 运营状态
|
||||
* 0-未知
|
||||
* 1-建设中
|
||||
* 5-关闭下线
|
||||
* 6-维护中
|
||||
* 50-正常使用
|
||||
*/
|
||||
@JSONField(name = "OperateStatus")
|
||||
private Integer operateStatus;
|
||||
|
||||
/**
|
||||
* 国家标准
|
||||
*/
|
||||
@JSONField(name = "NationalStandard")
|
||||
private Integer nationalStandard;
|
||||
|
||||
/**
|
||||
* 辅助电源
|
||||
*/
|
||||
@JSONField(name = "AuxPower")
|
||||
private Integer auxPower;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user