dataease-dm/backend/src/main/java/io/dataease/base/mapper/SysDictItemMapper.java

30 lines
915 B
Java
Raw Normal View History

2021-04-19 11:51:22 +08:00
package io.dataease.base.mapper;
import io.dataease.base.domain.SysDictItem;
import io.dataease.base.domain.SysDictItemExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface SysDictItemMapper {
long countByExample(SysDictItemExample example);
int deleteByExample(SysDictItemExample example);
int deleteByPrimaryKey(String id);
int insert(SysDictItem record);
int insertSelective(SysDictItem record);
List<SysDictItem> selectByExample(SysDictItemExample example);
SysDictItem selectByPrimaryKey(String id);
int updateByExampleSelective(@Param("record") SysDictItem record, @Param("example") SysDictItemExample example);
int updateByExample(@Param("record") SysDictItem record, @Param("example") SysDictItemExample example);
int updateByPrimaryKeySelective(SysDictItem record);
int updateByPrimaryKey(SysDictItem record);
}