AttachMngsMapper.java 463 B

12345678910111213141516171819202122
  1. package com.ruoyi.system.mapper;
  2. import com.ruoyi.system.domain.AttachMngs;
  3. import org.apache.ibatis.annotations.Mapper;
  4. @Mapper
  5. public interface AttachMngsMapper {
  6. /**
  7. * 上传图片
  8. * @param attachMngs 实体类
  9. * @return
  10. */
  11. Integer insertAttachmngs(AttachMngs attachMngs);
  12. /**
  13. * 查询图片二进制集合
  14. * @param attachId
  15. * @return
  16. */
  17. AttachMngs getAttachmngsBySysIdAndAttchId(String attachId);
  18. }