1234567891011121314151617181920212223242526272829303132333435 |
- package com.willalp.event.service.impl;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.willalp.event.domain.HsEventImg;
- import com.willalp.event.mapper.HsEventImgMapper;
- import com.willalp.event.service.IHsEventImgService;
- import org.springframework.stereotype.Service;
- import javax.annotation.Resource;
- import java.util.List;
- /**
- * 事件(活动)图片信息Service业务层处理
- *
- * @author willalp
- * @date 2023-04-10
- */
- @Service
- public class HsEventImgServiceImpl extends ServiceImpl<HsEventImgMapper, HsEventImg> implements IHsEventImgService
- {
- @Resource
- private HsEventImgMapper hsEventImgMapper;
- /**
- * 查询事件(活动)图片信息列表
- *
- * @param hsEventImg 事件(活动)图片信息
- * @return 事件(活动)图片信息
- */
- @Override
- public List<HsEventImg> selectHsEventImgList(HsEventImg hsEventImg)
- {
- return hsEventImgMapper.selectHsEventImgList(hsEventImg);
- }
- }
|