IAttachMngsService.java 371 B

123456789101112131415161718192021
  1. package com.ruoyi.system.service;
  2. import com.ruoyi.system.domain.AttachMngs;
  3. public interface IAttachMngsService {
  4. /**
  5. * 上传图片
  6. * @param attachMngs 实体类
  7. * @return
  8. */
  9. Integer insertAttachMngs(AttachMngs attachMngs);
  10. /**
  11. * 获取图片
  12. * @param attachId
  13. * @return
  14. */
  15. Byte[] getImg(String attachId);
  16. }