mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
Merge branch 'dev-zzx' into dev-new
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.jsowell.pile.domain;
|
||||
|
||||
import com.alibaba.fastjson2.annotation.JSONField;
|
||||
import com.jsowell.common.annotation.Excel;
|
||||
import com.jsowell.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
@@ -8,6 +9,7 @@ import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 充电站信息对象 pile_station_info
|
||||
@@ -336,6 +338,57 @@ public class PileStationInfo extends BaseEntity {
|
||||
@Excel(name = "是否有地锁(0-无;1-有)")
|
||||
private String parkingLockFlag;
|
||||
|
||||
/**
|
||||
*服务车型描述
|
||||
*/
|
||||
@Excel(name = "服务车型描述")
|
||||
private List<String> swapMatchCars;
|
||||
|
||||
/**
|
||||
*是否为通用类型
|
||||
*/
|
||||
@Excel(name = "是否为通用类型(1-通用 ; 2-非通用)")
|
||||
private Integer generalApplicationType;
|
||||
|
||||
/**
|
||||
*充换电站方位
|
||||
* 1:地面-停车场
|
||||
* 2:地面-路侧
|
||||
* 3:地下停车场
|
||||
* 4:立体式停车楼
|
||||
*/
|
||||
@Excel(name = "充换电站方位")
|
||||
private Integer stationOrientation;
|
||||
|
||||
/**
|
||||
* 充换电站建筑面积
|
||||
*/
|
||||
@Excel(name = "充换电站建筑面积")
|
||||
private String stationArea;
|
||||
|
||||
/**
|
||||
* 充换电站人工值守
|
||||
*/
|
||||
@Excel(name = "是否有充换电站人工值守(0-无 ; 1-有)")
|
||||
private String havePerson;
|
||||
|
||||
/**
|
||||
* 周边配套设施
|
||||
* 1:卫生间
|
||||
* 2:便利店
|
||||
* 3:餐厅
|
||||
* 4:休息室
|
||||
* 5:雨棚
|
||||
*/
|
||||
@Excel(name = "周边配套设施")
|
||||
private String supportingFacilities;
|
||||
|
||||
/**
|
||||
* 站点额定总功率
|
||||
*/
|
||||
@Excel(name = "站点额定总功率")
|
||||
private BigDecimal ratedPower;
|
||||
|
||||
/**
|
||||
* 删除标识(0-正常;1-删除)
|
||||
*/
|
||||
@@ -386,6 +439,9 @@ public class PileStationInfo extends BaseEntity {
|
||||
.append("barrierFlag", barrierFlag)
|
||||
.append("parkingLockFlag", parkingLockFlag)
|
||||
.append("delFlag", delFlag)
|
||||
.append("swapMatchCars", swapMatchCars)
|
||||
.append("generalApplicationType",generalApplicationType)
|
||||
.append("ratedPower",ratedPower)
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user