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 implements IHsEventImgService { @Resource private HsEventImgMapper hsEventImgMapper; /** * 查询事件(活动)图片信息列表 * * @param hsEventImg 事件(活动)图片信息 * @return 事件(活动)图片信息 */ @Override public List selectHsEventImgList(HsEventImg hsEventImg) { return hsEventImgMapper.selectHsEventImgList(hsEventImg); } }