package com.landtool.lanbase.modules.res.dao;
|
|
import org.apache.ibatis.annotations.Mapper;
|
|
import com.landtool.lanbase.modules.res.entity.Res_ThemeType;
|
|
@Mapper
|
public interface Res_ThemeTypeMapper {
|
int deleteByPrimaryKey(Integer typeid);
|
|
int insert(Res_ThemeType record);
|
|
int insertSelective(Res_ThemeType record);
|
|
Res_ThemeType selectByPrimaryKey(Integer typeid);
|
|
int updateByPrimaryKeySelective(Res_ThemeType record);
|
|
int updateByPrimaryKey(Res_ThemeType record);
|
}
|