package com.landtool.lanbase.modules.res.service;
|
|
import java.util.List;
|
import java.util.Map;
|
|
import com.landtool.lanbase.modules.res.entity.Res_ApplyRecommend;
|
import com.landtool.lanbase.modules.res.entity.Res_Catalog;
|
import com.landtool.lanbase.modules.res.entity.Res_MainInfo;
|
import com.landtool.lanbase.modules.res.entity.UserDefined.MainInfoJoinApplyRecommend;
|
import com.landtool.lanbase.modules.res.entity.UserDefined.MainInfoJoinApplyRecommendInfo;
|
|
public interface ResApplyRecommendService {
|
int deleteByPrimaryKey(Integer actionid);
|
|
int insert(Res_ApplyRecommend record);
|
|
int insertSelective(Res_ApplyRecommend record);
|
|
Res_ApplyRecommend selectByPrimaryKey(Integer actionid);
|
|
int updateByPrimaryKeySelective(Res_ApplyRecommend record);
|
|
int updateByPrimaryKey(Res_ApplyRecommend record);
|
|
List<MainInfoJoinApplyRecommend> shenQingZiYuan(Res_ApplyRecommend recommend);
|
|
List<MainInfoJoinApplyRecommendInfo> selectResApplyreCommend(Res_ApplyRecommend recommend);
|
|
int selectResApplyreCommendCount(Res_ApplyRecommend recommend);
|
|
int updateResApplyreCommendResult(Res_ApplyRecommend record);
|
|
Res_ApplyRecommend selectByResApplyRecommend(Res_ApplyRecommend recommend);
|
|
List<MainInfoJoinApplyRecommend> selectResMainInfoShenQingZiYuan(MainInfoJoinApplyRecommend recommend);
|
|
List<Res_MainInfo> getTopRecommend(Map<String, Object> map);
|
|
List<Res_MainInfo> getAllRecommend(Map<String, Object> map);
|
|
List<Res_ApplyRecommend> getRecommendListByResourceid(Res_ApplyRecommend resApplyRecommend);
|
|
//add: Xxx ������ȡ��Դ��������ͳ��
|
int getApplyCount(Integer resourceid);
|
|
Res_ApplyRecommend checkZiYuanShenQing(Map<String, Object> map);
|
|
int selectCountByResourceid(Integer resourceid);
|
|
int deleteByResourceid(Integer resourceid);
|
|
Res_ApplyRecommend selectByResourceidAndUserid(Res_ApplyRecommend recommend);
|
|
List<MainInfoJoinApplyRecommend> selectResMainInfoBySysid(MainInfoJoinApplyRecommend recommend);
|
|
int checkAppZiYuan(Map<String, Object> map);
|
|
List<Res_Catalog> selectCatalog(Map<String, Object> map);
|
|
List<Res_MainInfo> selectCatalogZiYuanList(Map<String, Object> map);
|
|
List<Res_MainInfo> getResourceList(Map<String, Object> map);
|
|
List<MainInfoJoinApplyRecommendInfo> selectResApplyreCommendForSys(Res_ApplyRecommend resApplyRecommend);
|
|
Res_ApplyRecommend getApplyDate(Map<String, Object> param);
|
}
|