package com.landtool.lanbase.modules.res.service; import java.util.List; import com.landtool.lanbase.modules.res.entity.Res_Evaluation; import com.landtool.lanbase.modules.res.entity.UserDefined.MainInfoJoinEvaluation; public interface ResEvaluationService { int deleteByPrimaryKey(Integer evalid); int insert(Res_Evaluation record); int insertSelective(Res_Evaluation record); Res_Evaluation selectByPrimaryKey(Integer evalid); int updateByPrimaryKeySelective(Res_Evaluation record); int updateByPrimaryKey(Res_Evaluation record); Res_Evaluation selectByResourceidAndUserid(Integer resourceid,Integer userid); List selectResEvaluation(Res_Evaluation record); int selectResEvaluationCount(Res_Evaluation record); int updateResEvaluationResult(Res_Evaluation record); List selectOtherByResourceid(Res_Evaluation evaluation); Res_Evaluation selectByResourceidAndUseridNoShengHe(Integer resourceid,Integer userid); int deleteByResourceid(Integer resourceid); int selectCountByResourceid(Integer resourceid); }