固件升级完善

This commit is contained in:
kerwincui
2022-06-16 23:41:30 +08:00
parent a574bcc5aa
commit b9f56459d4
6 changed files with 68 additions and 2 deletions

View File

@@ -43,6 +43,10 @@ public class Firmware extends BaseEntity
@Excel(name = "是否系统通用", readConverterExp = "0=-否1-是")
private Integer isSys;
/** 是否最新版0-否1-是) */
@Excel(name = "是否系统通用", readConverterExp = "0=-否1-是")
private Integer isLatest;
/** 固件版本 */
@Excel(name = "固件版本")
private BigDecimal version;
@@ -54,7 +58,15 @@ public class Firmware extends BaseEntity
/** 删除标志0代表存在 2代表删除 */
private String delFlag;
public void setFirmwareId(Long firmwareId)
public Integer getIsLatest() {
return isLatest;
}
public void setIsLatest(Integer isLatest) {
this.isLatest = isLatest;
}
public void setFirmwareId(Long firmwareId)
{
this.firmwareId = firmwareId;
}