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