package com.panzhihua.service_community.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.panzhihua.common.model.vos.community.ComActEasyPhotoFeedbackVO; import com.panzhihua.service_community.model.dos.ComActEasyPhotoFeedbackDO; /** * @auther lyq * @create 2021-08-13 14:40:06 * @describe mapper类 */ @Mapper public interface ComActEasyPhotoFeedbackMapper extends BaseMapper { List getPhotoFeedbackList(@Param("easyId") Long easyId); /** * 获取人大代表反馈记录 * @param easyId * @return */ List getPhotoFeedbackListForDpc(@Param("easyId") Long easyId); }