Interface ILogDao

All Superinterfaces:
com.baomidou.mybatisplus.core.mapper.BaseMapper<LogEntity>, net.mingsoft.base.dao.IBaseDao<LogEntity>, com.baomidou.mybatisplus.core.mapper.Mapper<LogEntity>

@Component("basicLogDao") public interface ILogDao extends net.mingsoft.base.dao.IBaseDao<LogEntity>
系统日志持久层
Author:
铭飞开发团队 创建日期:2020-11-21 9:41:34
历史修订:
  • Method Summary

    Modifier and Type
    Method
    Description
    query(LogEntity logEntity)
    批量查询日志,注意此接口不会返回logParam、logResult和logErrorMsg字段信息,如有需要返回,建议使用 BaseMapper.selectList(Wrapper)方法

    Methods inherited from interface com.baomidou.mybatisplus.core.mapper.BaseMapper

    delete, deleteBatchIds, deleteById, deleteById, deleteById, deleteByIds, deleteByIds, deleteByMap, exists, insert, insert, insert, insertOrUpdate, insertOrUpdate, insertOrUpdate, insertOrUpdate, insertOrUpdate, selectBatchIds, selectBatchIds, selectById, selectByIds, selectByIds, selectByMap, selectByMap, selectCount, selectList, selectList, selectList, selectList, selectMaps, selectMaps, selectMaps, selectMaps, selectMapsPage, selectObjs, selectObjs, selectOne, selectOne, selectPage, update, update, updateById, updateById, updateById

    Methods inherited from interface net.mingsoft.base.dao.IBaseDao

    alterTable, createTable, delete, delete, deleteByEntity, deleteBySQL, deleteEntity, dropTable, excuteSql, getByEntity, getEntity, getEntity, insertBySQL, query, queryAll, queryByPage, queryCount, saveBatch, saveEntity, updateBySQL, updateCache, updateEntity
  • Method Details

    • query

      List<LogEntity> query(LogEntity logEntity)
      批量查询日志,注意此接口不会返回logParam、logResult和logErrorMsg字段信息,如有需要返回,建议使用 BaseMapper.selectList(Wrapper)方法
      Parameters:
      logEntity -
      Returns: