New file |
| | |
| | | package com.stylefeng.guns.modular.system.dao; |
| | | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.stylefeng.guns.modular.system.dto.FeedbackQuery; |
| | | import com.stylefeng.guns.modular.system.model.Feedback; |
| | | import com.stylefeng.guns.modular.system.vo.FeedbackVO; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 用户反馈 Mapper 接口 |
| | | * </p> |
| | | * |
| | | * @author 无关风月 |
| | | * @since 2024-02-06 |
| | | */ |
| | | public interface FeedbackMapper extends BaseMapper<Feedback> { |
| | | |
| | | List<FeedbackVO> listAll(@Param("req") FeedbackQuery query); |
| | | } |