예제 #1
0
  /**
   * 分页查找OperLog
   *
   * @param cond 查询条件
   * @return OperLog列表
   */
  public List<OperLog> findOperLogPage(OperLogCond cond) throws RuntimeException {
    int recordCount = operLogMapper.findOperLogCount(cond);

    cond.recordCount = recordCount;

    return operLogMapper.findOperLogPage(cond);
  }
예제 #2
0
 /** 查找记录数 */
 @Override
 public int findOperLogCount(OperLogCond operCond) throws RuntimeException {
   return operLogMapper.findOperLogCount(operCond);
 }