派生自 projectDept/qhighschool

EricsHu
2023-09-01 19e6057d3797b6fd6770ed5a98ddaef0b86a4c47
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.qxueyou.scc.portal.expert.service;
 
import com.qxueyou.scc.base.model.Result;
import com.qxueyou.scc.portal.expert.vo.ExpertVO;
import com.qxueyou.scc.portal.information.vo.ListArticleVO;
import com.qxueyou.scc.portal.information.vo.SaveArticleVO;
import com.qxueyou.scc.portal.information.vo.UpdateArticleVO;
 
public interface IExpertService {
 
 
    /**
     * 查询专家列表
     */
 
    Result listExpert(ExpertVO vo);
 
    /**
     *获取专家总条数
     * @param
     * @return
     */
    int findExpertCount(ExpertVO vo) ;
    /**
     * 添加专家
     *
     * @param vo
     * @return
     */
    Result save(ExpertVO vo);
    /**
     * 删除专家
     *
     * @param ids
     * @return
     */
    Result delete(String ids);
    /**
     * 更新专家信息
     *
     * @param vo
     * @return
     */
    Result update(ExpertVO vo);
    /**
     * 获取专家信息
     *
     * @param id
     * @return
     */
    Result getExpertById(String id);
}