package com.sandu.ximon.dao.bo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.sandu.ximon.dao.domain.RemoteUpdateFile;
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
/**
|
* @author ZZQ
|
* @date 2022/8/29 17:30
|
*/
|
@Data
|
public class RemoteUpdateFileBo extends RemoteUpdateFile {
|
/**
|
*
|
*/
|
private Integer id;
|
|
/**
|
* 上传者昵称
|
*/
|
private String uploadName;
|
|
/**
|
* 升级文件名
|
*/
|
private String filename;
|
|
/**
|
* 软件版本
|
*/
|
private BigDecimal softwareVersion;
|
|
/**
|
* 硬件版本
|
*/
|
private BigDecimal hardwareVersion;
|
|
/**
|
* 阿里文件存储地址
|
*/
|
private String aliAddress;
|
|
/**
|
* 文件类型
|
*/
|
private String fileType;
|
|
/**
|
*
|
*/
|
private LocalDateTime createTime;
|
|
/**
|
* 文件长度
|
*/
|
private String fileLength;
|
}
|