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<Res_ExtMapUrl> selectByCondition(Integer resourceid);
|
|
int deleteByResourceId(Integer resourceId);
|
|
Res_ExtMapUrl queryFirstOrderByResId(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);
|
}
|