RenewLogic.php
763 字节
<?php
/**
* @remark :
* @name :RenewLogic.php
* @author :lyh
* @method :post
* @time :2023/8/11 17:29
*/
namespace App\Http\Logic\Aside\Project;
use App\Http\Logic\Aside\BaseLogic;
use App\Models\Project\Project;
use App\Models\Project\ProjectRenew;
class RenewLogic extends BaseLogic
{
public function __construct()
{
parent::__construct();
$this->model = new ProjectRenew();
}
/**
* @remark :续费单记录列表
* @name :renewLog
* @author :lyh
* @method :post
* @time :2023/8/11 17:30
*/
public function renewListsLog($map,$page,$row,$order,$field = ['*']){
$lists = $this->model->lists($map,$page,$row,$order,$field);
return $this->success($lists);
}
}