| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * |
| | | * @TableName remote_update_file |
| | | */ |
| | | @TableName(value ="remote_update_file") |
| | | @TableName(value = "remote_update_file") |
| | | @Data |
| | | public class RemoteUpdateFile implements Serializable { |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Integer id; |
| | | /** |
| | | * 上传者ID |
| | | */ |
| | | private Long uploadUserId; |
| | | |
| | | /** |
| | | * 上传者类型,0:管理员;1:普通用户上传 |
| | | */ |
| | | private Integer uploadUserType; |
| | | |
| | | /** |
| | | * 升级文件名 |
| | |
| | | private String fileType; |
| | | |
| | | /** |
| | | * |
| | | * |
| | | */ |
| | | private LocalDateTime createTime; |
| | | |