lxw
2023-05-25 f3c27fb78447449a950ba73c5e72ceda64ad8a12
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
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.util.Date;
 
@Data
@EqualsAndHashCode(callSuper = false)
@TableName(schema = "db_ram_db",value = "tb_ld9_updatestatue")
@ApiModel(value="Ld9updatestatue对象", description="")
public class Ld9UpdateStatus {
    @TableId
    private Long num;
    private Long devId;
    private String updateFile;
    @ApiModelProperty("升级使能:0:不操作;1:开始升级")
    private Integer updateEn;
    @ApiModelProperty("0:升级LD9;1:升级显示屏")
    private Integer updateType;
    @ApiModelProperty("升级是否成功")
    private Integer sendUpfileOk;
    @TableField("stopreason")
    private Integer stopReason;
    @TableField("countpackage")
    @ApiModelProperty("总数据包数量")
    private Integer countPackage;
    @ApiModelProperty("当前数据包编号")
    @TableField("nowpackagenum")
    private Integer nowPackageNum;
    @TableField("updatetime")
    private Date updateTime;
    @TableField("starttime")
    private Date startTime;
    private String note;
 
    @TableField(exist = false,value = "StationName")
    private String stationName;
 
    @TableField(exist = false,value = "FBSDeviceId")
    private Integer fbsDeviceId;
 
    @TableField(exist = false)
    private String devVersion;
}