LogMapper.java 831 B

123456789101112131415161718192021222324252627282930
  1. package com.jsh.erp.datasource.mappers;
  2. import com.jsh.erp.datasource.entities.Log;
  3. import com.jsh.erp.datasource.entities.LogExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface LogMapper extends BaseMapperX<Log> {
  7. long countByExample(LogExample example);
  8. int deleteByExample(LogExample example);
  9. int deleteByPrimaryKey(Long id);
  10. int insert(Log record);
  11. int insertSelective(Log record);
  12. List<Log> selectByExample(LogExample example);
  13. Log selectByPrimaryKey(Long id);
  14. int updateByExampleSelective(@Param("record") Log record, @Param("example") LogExample example);
  15. int updateByExample(@Param("record") Log record, @Param("example") LogExample example);
  16. int updateByPrimaryKeySelective(Log record);
  17. int updateByPrimaryKey(Log record);
  18. }