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);
|
}
|