12345678910111213141516171819202122 |
- package com.ruoyi.system.mapper;
- import com.ruoyi.system.domain.AttachMngs;
- import org.apache.ibatis.annotations.Mapper;
- @Mapper
- public interface AttachMngsMapper {
- /**
- * 上传图片
- * @param attachMngs 实体类
- * @return
- */
- Integer insertAttachmngs(AttachMngs attachMngs);
- /**
- * 查询图片二进制集合
- * @param attachId
- * @return
- */
- AttachMngs getAttachmngsBySysIdAndAttchId(String attachId);
- }
|