HsEventImgServiceImpl.java 998 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.willalp.event.service.impl;
  2. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  3. import com.willalp.event.domain.HsEventImg;
  4. import com.willalp.event.mapper.HsEventImgMapper;
  5. import com.willalp.event.service.IHsEventImgService;
  6. import org.springframework.stereotype.Service;
  7. import javax.annotation.Resource;
  8. import java.util.List;
  9. /**
  10. * 事件(活动)图片信息Service业务层处理
  11. *
  12. * @author willalp
  13. * @date 2023-04-10
  14. */
  15. @Service
  16. public class HsEventImgServiceImpl extends ServiceImpl<HsEventImgMapper, HsEventImg> implements IHsEventImgService
  17. {
  18. @Resource
  19. private HsEventImgMapper hsEventImgMapper;
  20. /**
  21. * 查询事件(活动)图片信息列表
  22. *
  23. * @param hsEventImg 事件(活动)图片信息
  24. * @return 事件(活动)图片信息
  25. */
  26. @Override
  27. public List<HsEventImg> selectHsEventImgList(HsEventImg hsEventImg)
  28. {
  29. return hsEventImgMapper.selectHsEventImgList(hsEventImg);
  30. }
  31. }