package com.panzhihua.service_user.dao; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.panzhihua.common.model.dtos.user.PageFeedBackDTO; import com.panzhihua.common.model.vos.user.SysUserFeedbackVO; import com.panzhihua.service_user.model.dos.SysUserFeedbackDO; /** * @program: springcloud_k8s_panzhihuazhihuishequ * @description: 意见反馈 * @author: huang.hongfa weixin hhf9596 qq 959656820 * @create: 2020-12-31 13:25 **/ @Mapper public interface SysUserFeedbackDAO extends BaseMapper { IPage pageFeedback(Page page, @Param("pageFeedBackDTO") PageFeedBackDTO pageFeedBackDTO); SysUserFeedbackVO detailFeedback(Long id); int reply(@Param("dto") SysUserFeedbackDO sysUserFeedbackDO1); }