package com.ruoyi.system.domain; import com.baomidou.mybatisplus.annotation.TableField; import lombok.Data; import org.apache.ibatis.type.JdbcType; @Data public class AttachMngs { @TableField(jdbcType = JdbcType.INTEGER) private Long sysId; @TableField(jdbcType = JdbcType.INTEGER) private Long attachId; // BLOB SUB_TYPE BINARY @TableField(jdbcType = JdbcType.BLOB) private Byte[] attachFile; }