Files
jianfeng-server/app/Common/model/LongbingTabbar.php
2025-10-02 10:33:06 +08:00

17 lines
316 B
PHP
Executable File

<?php
namespace app\Common\model;
use app\BaseModel;
class LongbingTabbar extends BaseModel
{
//定义表名称
protected $name = 'longbing_card_tabbar';
public function getTabbar($filter)
{
$result = $this->where($filter)->find();
if(!empty($result)) $result = $result->toArray();
return $result;
}
}