package com.java110.dto.chargeMachine;
|
|
import com.java110.dto.PageDto;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.List;
|
|
/**
|
* @ClassName FloorDto
|
* @Description 充电桩数据层封装
|
* @Author wuxw
|
* @Date 2019/4/24 8:52
|
* @Version 1.0
|
* add by wuxw 2019/4/24
|
**/
|
public class ChargeMachineDto extends PageDto implements Serializable {
|
|
public static final String STATE_ONLINE = "ONLINE";
|
public static final String STATE_OFFLINE = "OFFLINE";
|
|
private String heartbeatTime;
|
private String implBean;
|
private String machineId;
|
private String machineCode;
|
private String energyPrice;
|
private String ruleId;
|
|
private String ruleName;
|
private String communityId;
|
private String machineName;
|
|
|
private Date createTime;
|
|
private String statusCd = "0";
|
|
private String portCount;
|
|
private String factoryName;
|
|
private String qrCode;
|
|
private String state;
|
|
private String stateName;
|
|
private List<ChargeRuleFeeDto> fees;
|
|
public String getHeartbeatTime() {
|
return heartbeatTime;
|
}
|
|
public void setHeartbeatTime(String heartbeatTime) {
|
this.heartbeatTime = heartbeatTime;
|
}
|
|
public String getImplBean() {
|
return implBean;
|
}
|
|
public void setImplBean(String implBean) {
|
this.implBean = implBean;
|
}
|
|
public String getMachineId() {
|
return machineId;
|
}
|
|
public void setMachineId(String machineId) {
|
this.machineId = machineId;
|
}
|
|
public String getMachineCode() {
|
return machineCode;
|
}
|
|
public void setMachineCode(String machineCode) {
|
this.machineCode = machineCode;
|
}
|
|
public String getEnergyPrice() {
|
return energyPrice;
|
}
|
|
public void setEnergyPrice(String energyPrice) {
|
this.energyPrice = energyPrice;
|
}
|
|
|
public String getCommunityId() {
|
return communityId;
|
}
|
|
public void setCommunityId(String communityId) {
|
this.communityId = communityId;
|
}
|
|
public String getMachineName() {
|
return machineName;
|
}
|
|
public void setMachineName(String machineName) {
|
this.machineName = machineName;
|
}
|
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
|
public String getPortCount() {
|
return portCount;
|
}
|
|
public void setPortCount(String portCount) {
|
this.portCount = portCount;
|
}
|
|
public String getFactoryName() {
|
return factoryName;
|
}
|
|
public void setFactoryName(String factoryName) {
|
this.factoryName = factoryName;
|
}
|
|
public String getQrCode() {
|
return qrCode;
|
}
|
|
public void setQrCode(String qrCode) {
|
this.qrCode = qrCode;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getStateName() {
|
return stateName;
|
}
|
|
public void setStateName(String stateName) {
|
this.stateName = stateName;
|
}
|
|
public String getRuleId() {
|
return ruleId;
|
}
|
|
public void setRuleId(String ruleId) {
|
this.ruleId = ruleId;
|
}
|
|
public String getRuleName() {
|
return ruleName;
|
}
|
|
public void setRuleName(String ruleName) {
|
this.ruleName = ruleName;
|
}
|
|
public List<ChargeRuleFeeDto> getFees() {
|
return fees;
|
}
|
|
public void setFees(List<ChargeRuleFeeDto> fees) {
|
this.fees = fees;
|
}
|
}
|