New file |
| | |
| | | package com.whyc.pojo; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | /** |
| | | * <p> |
| | | * 设备远程升级表 |
| | | * </p> |
| | | * |
| | | * @author lxw |
| | | * @since 2023-11-09 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @Accessors(chain = true) |
| | | @TableName("tb_dev_update_state") |
| | | @ApiModel(value="DevUpdateState对象", description="设备远程升级表") |
| | | public class DevUpdateState implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @TableId(value = "num", type = IdType.AUTO) |
| | | private Long num; |
| | | |
| | | private int devId; |
| | | |
| | | private String sysversionNew; |
| | | |
| | | private Integer softversionNew; |
| | | |
| | | private String sysversionDev; |
| | | |
| | | private Integer softversionDev; |
| | | |
| | | private String dfuFile; |
| | | |
| | | private Integer dfuEn; |
| | | |
| | | private Integer dfuWrStat; |
| | | |
| | | private Integer dfuDataBlocknum; |
| | | |
| | | private Integer dfuDataBlocklen; |
| | | |
| | | private String dfuPassword; |
| | | |
| | | private Integer dfuFileLen; |
| | | |
| | | @ApiModelProperty(value = "错误代码[0:无;1:文件未找到;2:参数错误;3:文件发送超时;4:远程停止]") |
| | | private Integer errorCode; |
| | | |
| | | |
| | | } |