| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.TacEvaluationExternalExpert;
- import cn.com.goldenwater.dcproj.param.TacEvaluationExternalExpertParam;
- import cn.com.goldenwater.dcproj.vo.TacEvaluationExternalExpertVo;
- import com.github.pagehelper.PageInfo;
- import javax.servlet.http.HttpServletResponse;
- import java.util.List;
- /**
- * 稽查专家测评Service接口
- *
- * @author ruoyi
- * @date 2023-03-06
- */
- public interface TacEvaluationExternalExpertService extends CrudService<TacEvaluationExternalExpert, TacEvaluationExternalExpertParam>
- {
- /**
- * 导出
- *
- * @param tacEvaluationExternalExpertParam
- * @param response
- */
- void export(TacEvaluationExternalExpertParam tacEvaluationExternalExpertParam, HttpServletResponse response);
- /**
- * 批量添加
- * @param tacEvaluationExternalExpertList
- * @return
- */
- int insertBatchFile(List<TacEvaluationExternalExpert> tacEvaluationExternalExpertList);
- /**
- * 待测评的稽查外聘专家列表
- * @param externalExpertParam
- * @return
- */
- List<TacEvaluationExternalExpertVo> selectEavlPersListByGroupId(TacEvaluationExternalExpertParam externalExpertParam);
- PageInfo<TacEvaluationExternalExpertVo> findEvaluationResult(TacEvaluationExternalExpertParam externalExpertParam);
- PageInfo<TacEvaluationExternalExpertVo> findEvaluationResultDetails(TacEvaluationExternalExpertParam externalExpertParam);
- /**
- * 修改评分
- * @param externalExpertParam
- * @return
- */
- int updateScoreById(TacEvaluationExternalExpert externalExpertParam);
- /**
- * 恢复评分
- * @param id
- * @return
- */
- int revertScoreById(String id);
- // 查询是否存在综合评分记录
- TacEvaluationExternalExpert selectOneDetailByProjIdAndExpertId(String projId,String expertId);
- // 查询综合评分信息
- TacEvaluationExternalExpert selectHjScoreByProjIdAndExpertId(String projId,String expertId);
- // 新增综合评分信息
- int insertHjScoreByProjIdAndExpertId(TacEvaluationExternalExpert vo);
- List<TacEvaluationExternalExpertVo> findEvaluationResultDetails2(String expertId,String projId);
- }
|