mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 11:35:12 +08:00
桩固件信息表新增 “url”、“使用范围”字段
This commit is contained in:
@@ -47,6 +47,18 @@ public class PileFirmwareInfo extends BaseEntity {
|
||||
@Excel(name = "适用类型")
|
||||
private String applyType;
|
||||
|
||||
/**
|
||||
* 使用范围
|
||||
*/
|
||||
@Excel(name = "使用范围")
|
||||
private String useRange;
|
||||
|
||||
/**
|
||||
* 下载链接url
|
||||
*/
|
||||
@Excel(name = "下载链接url")
|
||||
private String downloadUrl;
|
||||
|
||||
/**
|
||||
* 删除标识(0-正常;1-删除)
|
||||
*/
|
||||
@@ -54,16 +66,15 @@ public class PileFirmwareInfo extends BaseEntity {
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this, ToStringStyle.JSON_STYLE)
|
||||
.append("id", getId())
|
||||
.append("name", getName())
|
||||
.append("desc", getDescription())
|
||||
.append("filePath", getFilePath())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
.append("delFlag", getDelFlag())
|
||||
return new ToStringBuilder(this)
|
||||
.append("id", id)
|
||||
.append("name", name)
|
||||
.append("description", description)
|
||||
.append("filePath", filePath)
|
||||
.append("applyType", applyType)
|
||||
.append("useRange", useRange)
|
||||
.append("downloadUrl", downloadUrl)
|
||||
.append("delFlag", delFlag)
|
||||
.toString();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user