package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
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 xuzhongpei
|
* @since 2021-12-15
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@Accessors(chain = true)
|
@TableName(schema = "db_ram_db",value = "tb_fbs9100s_dfu_state")
|
@ApiModel(value="Fbs9100sDfuState对象", description="")
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
public class Fbs9100sDfuState implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@TableId(value = "num", type = IdType.AUTO)
|
private Long num;
|
|
private Long devId;
|
|
@TableField("sysVersion_new")
|
private String sysversionNew;
|
|
@TableField("softVersion_new")
|
private String softversionNew;
|
|
@TableField("sysVersion_dev")
|
private String sysversionDev;
|
|
@TableField("softVersion_dev")
|
private String softversionDev;
|
|
private String dfuFile;
|
|
private Integer dfuEn;
|
|
private Integer dfuWrStat;
|
|
private Integer dfuDataBlocknum;
|
|
private Integer dfuDataBlocklen;
|
|
private String dfuPassword;
|
|
private Integer dfuFileLen;
|
@ApiModelProperty("错误代码[0:无;1:文件未找到;2:参数错误;3:文件发送超时;4:远程停止]")
|
private Integer errorCode;
|
|
@TableField(exist = false)
|
private String stationName;
|
|
|
@TableField(exist = false)
|
private String stationName1;
|
|
|
@TableField(exist = false)
|
private String stationName2;
|
|
|
@TableField(exist = false)
|
private String stationName3;
|
|
|
@TableField(exist = false)
|
private String stationName5;
|
|
@TableField(exist = false)
|
private String stationId;
|
|
@TableField(exist = false)
|
private String fBSDeviceName;
|
|
@TableField(value = "dev_version",exist = false)
|
private String devVersion;
|
|
|
}
|