mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
第三方平台站点关系表新增 启动方式字段
This commit is contained in:
@@ -2,6 +2,7 @@ package com.jsowell.pile.domain;
|
||||
|
||||
import com.jsowell.common.annotation.Excel;
|
||||
import com.jsowell.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
|
||||
@@ -11,6 +12,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
* @author jsowell
|
||||
* @date 2023-06-06
|
||||
*/
|
||||
@Data
|
||||
public class ThirdPartyStationRelation extends BaseEntity {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@@ -31,43 +33,16 @@ public class ThirdPartyStationRelation extends BaseEntity {
|
||||
@Excel(name = "三方配置类型")
|
||||
private String thirdPartyType;
|
||||
|
||||
/**
|
||||
* 启动方式(1-我方启动)
|
||||
*/
|
||||
private String startMode;
|
||||
|
||||
/**
|
||||
* 删除标识
|
||||
*/
|
||||
private String delFlag;
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setStationId(Long stationId) {
|
||||
this.stationId = stationId;
|
||||
}
|
||||
|
||||
public Long getStationId() {
|
||||
return stationId;
|
||||
}
|
||||
|
||||
public void setThirdPartyType(String thirdPartyType) {
|
||||
this.thirdPartyType = thirdPartyType;
|
||||
}
|
||||
|
||||
public String getThirdPartyType() {
|
||||
return thirdPartyType;
|
||||
}
|
||||
|
||||
public void setDelFlag(String delFlag) {
|
||||
this.delFlag = delFlag;
|
||||
}
|
||||
|
||||
public String getDelFlag() {
|
||||
return delFlag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this, ToStringStyle.JSON_STYLE)
|
||||
|
||||
@@ -14,6 +14,8 @@ public class ThirdPartyStationRelationVO {
|
||||
|
||||
private String thirdPartyType;
|
||||
|
||||
private String startMode;
|
||||
|
||||
private String urlAddress;
|
||||
private String operatorId;
|
||||
private String operatorSecret;
|
||||
|
||||
Reference in New Issue
Block a user