mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-13 22:40:16 +08:00
update 浙江省平台
This commit is contained in:
@@ -978,7 +978,7 @@ public class PileBasicInfoServiceImpl implements PileBasicInfoService {
|
|||||||
/**
|
/**
|
||||||
* 获取桩列表信息
|
* 获取桩列表信息
|
||||||
*
|
*
|
||||||
* @param pileStationInfo
|
// * @param pileStationInfo
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
/*@Override
|
/*@Override
|
||||||
@@ -1074,7 +1074,7 @@ public class PileBasicInfoServiceImpl implements PileBasicInfoService {
|
|||||||
/**
|
/**
|
||||||
* 获取枪口列表
|
* 获取枪口列表
|
||||||
*
|
*
|
||||||
* @param pileBasicInfo
|
// * @param pileBasicInfo
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
/*@Override
|
/*@Override
|
||||||
@@ -1133,6 +1133,9 @@ public class PileBasicInfoServiceImpl implements PileBasicInfoService {
|
|||||||
connectorInfo.setVoltageLowerLimits(Integer.valueOf(modelInfo.getRatedVoltage()));
|
connectorInfo.setVoltageLowerLimits(Integer.valueOf(modelInfo.getRatedVoltage()));
|
||||||
connectorInfo.setCurrent(Integer.valueOf(modelInfo.getRatedCurrent()));
|
connectorInfo.setCurrent(Integer.valueOf(modelInfo.getRatedCurrent()));
|
||||||
connectorInfo.setConnectorName(pileConnectorInfo.getPileConnectorCode());
|
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")) {
|
if (!StringUtils.equals(modelInfo.getConnectorNum(), "1")) {
|
||||||
// 如果不是单枪,则枪口功率需要除以枪口数量
|
// 如果不是单枪,则枪口功率需要除以枪口数量
|
||||||
|
|||||||
@@ -70,4 +70,28 @@ public class ConnectorInfo {
|
|||||||
@JSONField(name = "ParkNo")
|
@JSONField(name = "ParkNo")
|
||||||
private String 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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -168,8 +168,8 @@ public class ZheJiangPlatformServiceImpl implements ThirdPartyPlatformService {
|
|||||||
SupOperatorInfo supOperatorInfo;
|
SupOperatorInfo supOperatorInfo;
|
||||||
for (MerchantInfoVO merchantInfoVO : pageInfo.getList()) {
|
for (MerchantInfoVO merchantInfoVO : pageInfo.getList()) {
|
||||||
supOperatorInfo = new SupOperatorInfo();
|
supOperatorInfo = new SupOperatorInfo();
|
||||||
supOperatorInfo.setOperatorID(MerchantUtils.getOperatorID(merchantInfoVO.getOrganizationCode()));
|
supOperatorInfo.setOperatorID(Constants.OPERATORID_JIANG_SU);
|
||||||
supOperatorInfo.setOperatorUSCID(merchantInfoVO.getOrganizationCode());
|
supOperatorInfo.setOperatorUSCID(Constants.OPERATORID_JIANG_SU);
|
||||||
supOperatorInfo.setOperatorName(merchantInfoVO.getMerchantName());
|
supOperatorInfo.setOperatorName(merchantInfoVO.getMerchantName());
|
||||||
supOperatorInfo.setOperatorTel1(merchantInfoVO.getMerchantTel());
|
supOperatorInfo.setOperatorTel1(merchantInfoVO.getMerchantTel());
|
||||||
supOperatorInfo.setOperatorRegAddress(merchantInfoVO.getMerchantAddress());
|
supOperatorInfo.setOperatorRegAddress(merchantInfoVO.getMerchantAddress());
|
||||||
|
|||||||
Reference in New Issue
Block a user