forked from github/dataease
30 lines
851 B
Java
30 lines
851 B
Java
|
package io.dataease.base.mapper;
|
||
|
|
||
|
import io.dataease.base.domain.SysDict;
|
||
|
import io.dataease.base.domain.SysDictExample;
|
||
|
import java.util.List;
|
||
|
import org.apache.ibatis.annotations.Param;
|
||
|
|
||
|
public interface SysDictMapper {
|
||
|
long countByExample(SysDictExample example);
|
||
|
|
||
|
int deleteByExample(SysDictExample example);
|
||
|
|
||
|
int deleteByPrimaryKey(String id);
|
||
|
|
||
|
int insert(SysDict record);
|
||
|
|
||
|
int insertSelective(SysDict record);
|
||
|
|
||
|
List<SysDict> selectByExample(SysDictExample example);
|
||
|
|
||
|
SysDict selectByPrimaryKey(String id);
|
||
|
|
||
|
int updateByExampleSelective(@Param("record") SysDict record, @Param("example") SysDictExample example);
|
||
|
|
||
|
int updateByExample(@Param("record") SysDict record, @Param("example") SysDictExample example);
|
||
|
|
||
|
int updateByPrimaryKeySelective(SysDict record);
|
||
|
|
||
|
int updateByPrimaryKey(SysDict record);
|
||
|
}
|