ProjectsLogLogic.php
809 字节
<?php
namespace App\Http\Logic\Aside\Optimize;
use App\Http\Logic\Aside\BaseLogic;
use App\Models\GoogleSeoIps\ProjectsSeoTask;
/**
* @remark :谷歌流量日志记录
* @class :ProjectsLogLogic.php
* @author :lyh
* @time :2023/7/11 10:37
*/
class ProjectsLogLogic extends BaseLogic
{
public function __construct()
{
parent::__construct();
$this->param = $this->requestAll;
$this->model = new ProjectsSeoTask();
}
/**
* @remark :获取列表
* @name :projectsLists
* @author :lyh
* @method :post
* @time :2023/7/11 9:56
*/
public function projectsLogLists($map,$page,$row,$order = 'id',$filed = ['*']){
$lists = $this->model->lists($map,$page,$row,$order,$filed);
return $this->success($lists);
}
}