Files
juipphp/app/api/model/Logs.php

18 lines
331 B
PHP
Raw Normal View History

2020-10-11 19:23:42 +08:00
<?php
namespace app\api\model;
use fastphp\base\Model;
class Logs extends Model
{
protected $table = 'logs';
//按照页数获取日志数据
public function getUserListPage($page)
{
return $this->field('user,operation,record,create_time')->order('create_time desc')->limit($page)->fetchAll();
}
}