| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.errand.domain.Feedback; |
| | | import com.ruoyi.errand.object.dto.app.AddFeedbackDTO; |
| | | import com.ruoyi.errand.object.dto.sys.FeedbackPageListDTO; |
| | | import com.ruoyi.errand.object.vo.sys.FeedbackPageListVO; |
| | | |
| | | import javax.validation.Valid; |
| | | |
| | | public interface FeedbackService extends IService<Feedback> { |
| | | void add(String content); |
| | | void add(AddFeedbackDTO dto); |
| | | |
| | | IPage<FeedbackPageListVO> getFeedbackPageList(FeedbackPageListDTO feedbackPageListDTO); |
| | | |