package com.panzhihua.service_community.dao; import com.panzhihua.common.model.vos.community.ComActMicroWishFeedbackVO; import com.panzhihua.service_community.model.dos.ComActMicroWishFeedbackDO; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Mapper; import java.util.List; /** * @auther lyq * @create 2021-08-26 14:26:50 * @describe mapper类 */ @Mapper public interface ComActMicroWishFeedbackMapper extends BaseMapper { /** * 根据心愿Id查询反馈列表 * @param id * @return */ List selectByWishId(Long id); }