| | |
| | | package com.stylefeng.guns.modular.system.dao; |
| | | |
| | | import com.baomidou.mybatisplus.mapper.BaseMapper; |
| | | import com.stylefeng.guns.modular.system.model.AppUser; |
| | | import com.stylefeng.guns.modular.system.dto.FeedBackVo; |
| | | import com.stylefeng.guns.modular.system.model.FeedBack; |
| | | import com.stylefeng.guns.modular.system.warpper.req.SearchIntermediaryReq; |
| | | import com.stylefeng.guns.modular.system.warpper.res.SearchIntermediaryListRes; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface FeedBackMapper extends BaseMapper<FeedBack> { |
| | | |
| | | |
| | | |
| | | List<FeedBackVo> list(String phone,String name); |
| | | } |