21 lines
630 B
Plaintext
21 lines
630 B
Plaintext
package com.sercurityControl.proteam.callInterface.service;
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
import com.sercurityControl.proteam.callInterface.domain.TeamEvaDto;
|
|
import com.sercurityControl.proteam.callInterface.domain.TeamEvaVo;
|
|
|
|
/**
|
|
* 第三方调用接口
|
|
*/
|
|
public interface CallInterfaceService {
|
|
|
|
/**
|
|
* @return com.github.pagehelper.PageInfo<com.sercurityControl.proteam.callInterface.domain.TeamEvaBean>
|
|
* @author cw chen
|
|
* @description 获取班组评价数据
|
|
* @Param bean
|
|
* @date 2023-06-06 10:49
|
|
*/
|
|
PageInfo<TeamEvaVo> getTeamEvaList(TeamEvaDto bean) throws Exception;
|
|
}
|