You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
846 B
Java

package com.supervision.model;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import java.io.Serializable;
import lombok.Data;
/**
* 16MB(16,777,215)
* @TableName ge_bytearray
*/
@TableName(value ="ge_bytearray")
@Data
public class GeBytearray implements Serializable {
/**
*
*/
@TableId
private String id;
/**
*
*/
private String fileName;
/**
*
*/
private Long fileSize;
/**
*
*/
private String fileType;
/**
*
*/
private byte[] content;
@TableField(exist = false)
private static final long serialVersionUID = 1L;
}