package com.landtool.lanbase.modules.res.dao; import java.util.List; import java.util.Map; import org.apache.ibatis.annotations.Mapper; import com.landtool.lanbase.modules.res.entity.Res_ExtMapUrl; @Mapper public interface Res_ExtMapUrlMapper { 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); int isExistContextPath(String contextPth); List selectAllUrl(); List selectBatchUrl(List resourceids); List checkAllUrls(); Res_ExtMapUrl queryResourceId(Res_ExtMapUrl extMapUrl); void updateSpcStatus(Map param); }