2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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);
}