package com.landtool.lanbase.modules.res.service;
|
|
import java.util.List;
|
|
import com.landtool.lanbase.modules.res.entity.Res_Theme_Relation;
|
|
public interface ResThemeRelationService {
|
|
int insert(Res_Theme_Relation record);
|
|
int insertSelective(Res_Theme_Relation record);
|
|
Res_Theme_Relation selectById(Integer themeid);
|
|
int deleteByThemeId(Integer themeid);
|
|
int deleteByModuleId(Integer moduleid);
|
|
List<Res_Theme_Relation> selectByIdList(Integer themeid);
|
|
int deleteByThemeIdAndModuleId(Res_Theme_Relation resThemeRelation);
|
}
|