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 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 selectAllUrl(); List selectBatchUrl(List resourceids); List checkAllUrls(); Res_ExtMapUrl queryResourceId(Res_ExtMapUrl extMapUrl); void updateSpcStatus(Map param); }