dataease-dm/backend/src/main/java/io/dataease/base/mapper/ApiModuleMapper.java
2021-02-20 10:23:37 +08:00

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);
}