xiangpei
2025-05-14 47cd9ecc0eff38ffe6b3b794b2bf197e958f4403
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mindskip.xzs.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.github.pagehelper.PageInfo;
import com.mindskip.xzs.domain.QuestionAnswer;
import com.mindskip.xzs.domain.vo.QuestionAnswerVO;
 
/**
 * @author gonghl
 * @description 针对表【t_question_answer(问答)】的数据库操作Service
 * @createDate 2024-05-11 11:53:55
 */
public interface QuestionAnswerService extends IService<QuestionAnswer> {
 
    PageInfo<QuestionAnswerVO> questionAnswerPage(QuestionAnswerVO questionAnswer);
 
    void updateStatus(Integer id);
 
    Integer getLastSequence();
}