支付宝接口

This commit is contained in:
wanyongkang
2020-10-11 19:23:42 +08:00
parent ce067b91dc
commit 517b026891
1110 changed files with 139880 additions and 95 deletions

17
app/api/model/Logs.php Normal file
View File

@@ -0,0 +1,17 @@
<?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();
}
}