123456789101112131415161718192021222324252627282930 |
- package com.jsh.erp.datasource.mappers;
- import com.jsh.erp.datasource.entities.Log;
- import com.jsh.erp.datasource.entities.LogExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface LogMapper extends BaseMapperX<Log> {
- long countByExample(LogExample example);
- int deleteByExample(LogExample example);
- int deleteByPrimaryKey(Long id);
- int insert(Log record);
- int insertSelective(Log record);
- List<Log> selectByExample(LogExample example);
- Log selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") Log record, @Param("example") LogExample example);
- int updateByExample(@Param("record") Log record, @Param("example") LogExample example);
- int updateByPrimaryKeySelective(Log record);
- int updateByPrimaryKey(Log record);
- }
|