mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
update 内蒙古平台添加、修改字段
This commit is contained in:
@@ -1259,6 +1259,11 @@ public class PileBasicInfoServiceImpl implements PileBasicInfoService {
|
||||
equipmentInfo.setEquipmentPower(new BigDecimal(pileDetailInfoVO.getRatedPower()).setScale(1, BigDecimal.ROUND_HALF_UP));
|
||||
equipmentInfo.setNewNationalStandard(1);
|
||||
equipmentInfo.setVinFlag(1);
|
||||
equipmentInfo.setSvin(1);
|
||||
equipmentInfo.setSautoPower(1);
|
||||
equipmentInfo.setVoltageUpperLimits(new BigDecimal(pileDetailInfoVO.getRatedPower()).setScale(1, BigDecimal.ROUND_HALF_UP));
|
||||
equipmentInfo.setVoltageLowerLimits(new BigDecimal(pileDetailInfoVO.getRatedPower()).setScale(1, BigDecimal.ROUND_HALF_UP));
|
||||
equipmentInfo.setCurrent(new BigDecimal(pileDetailInfoVO.getRatedCurrent()).setScale(1, BigDecimal.ROUND_HALF_UP));
|
||||
equipmentInfo.setEquipmentName(pileSn);
|
||||
equipmentInfo.setEquipmentApplication(Constants.ONE);
|
||||
equipmentInfo.setEquipmentInvestment(new BigDecimal("0.0"));
|
||||
|
||||
@@ -169,6 +169,36 @@ public class EquipmentInfo {
|
||||
@JSONField(name = "ProductSN")
|
||||
private String productSN;
|
||||
|
||||
/**
|
||||
* 是否支持自动识别VIN码
|
||||
*/
|
||||
@JSONField(name = "SVIN")
|
||||
private Integer svin;
|
||||
|
||||
/**
|
||||
* 是否支持有序充电
|
||||
*/
|
||||
@JSONField(name = "SautoPower")
|
||||
private Integer sautoPower;
|
||||
|
||||
/**
|
||||
* 额定电压上限
|
||||
*/
|
||||
@JSONField(name = "VoltageUpperLimits")
|
||||
private BigDecimal voltageUpperLimits;
|
||||
|
||||
/**
|
||||
* 额定电压下限
|
||||
*/
|
||||
@JSONField(name = "VoltageLowerLimits")
|
||||
private BigDecimal voltageLowerLimits;
|
||||
|
||||
/**
|
||||
* 额定电流
|
||||
*/
|
||||
@JSONField(name = "Current")
|
||||
private BigDecimal current;
|
||||
|
||||
|
||||
/**
|
||||
* 站点额定功率
|
||||
|
||||
Reference in New Issue
Block a user