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
package com.landtool.lanbase.modules.res.service;
 
import java.util.List;
import java.util.Map;
 
import com.landtool.lanbase.modules.res.entity.Res_ExtMapUrl;
 
/**
 * @Author: lizhao
 * @Date: 2018-03-05 14:33
 * @Description:5资源支持协议与地址(RES_EXTMAPURL)
 *
 */
public interface ResExtMapUrlService {
    int deleteByPrimaryKey(int urlid);
 
    int insert(Res_ExtMapUrl record);
 
    int insertSelective(Res_ExtMapUrl record);
 
    Res_ExtMapUrl selectByPrimaryKey(int urlid);
 
    int updateByPrimaryKeySelective(Res_ExtMapUrl record);
 
    int updateByPrimaryKey(Res_ExtMapUrl record);
 
    List<Res_ExtMapUrl> selectByCondition(Integer resourceid);
 
    int deleteByResourceId(Integer resourceId);
    
    Res_ExtMapUrl queryFirstOrderByResId(Integer resourceId);
 
    String getFirstServerUrl(Integer resourceid);
 
    void deleteAndInsertMapUrlArray(Integer resourceid,String extMapUrlStr);
 
    String queryRsbidsByResourceid(Integer resourceid);
 
    int isExistContextPath(String contextPth);
    
    List<Res_ExtMapUrl> selectAllUrl();
    
    List<Map>  selectBatchUrl(List<Integer> resourceids);
 
    List<Res_ExtMapUrl> checkAllUrls();
 
    Res_ExtMapUrl queryResourceId(Res_ExtMapUrl extMapUrl);
 
    void updateSpcStatus(Map<String, Object> param);
}