mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 03:55:17 +08:00
update 修改字段名
This commit is contained in:
@@ -29,7 +29,7 @@ public class PileFirmwareInfo extends BaseEntity {
|
||||
* 固件描述
|
||||
*/
|
||||
@Excel(name = "固件描述")
|
||||
private String desc;
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 路径
|
||||
@@ -58,12 +58,12 @@ public class PileFirmwareInfo extends BaseEntity {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setDesc(String desc) {
|
||||
this.desc = desc;
|
||||
public String getDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
public String getDesc() {
|
||||
return desc;
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
public void setFilePath(String filePath) {
|
||||
@@ -87,7 +87,7 @@ public class PileFirmwareInfo extends BaseEntity {
|
||||
return new ToStringBuilder(this, ToStringStyle.JSON_STYLE)
|
||||
.append("id", getId())
|
||||
.append("name", getName())
|
||||
.append("desc", getDesc())
|
||||
.append("desc", getDescription())
|
||||
.append("filePath", getFilePath())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("createBy", getCreateBy())
|
||||
|
||||
Reference in New Issue
Block a user