31 lines
449 B
PHP
31 lines
449 B
PHP
<?php
|
||
/*
|
||
* description:
|
||
* author:wh
|
||
* email:
|
||
* createTime:{2021/6/21} {15:02}
|
||
*/
|
||
|
||
namespace app\common\model;
|
||
|
||
|
||
use think\Db;
|
||
use think\Model;
|
||
|
||
class BaseModel extends Model
|
||
{
|
||
|
||
protected static $log_file = '';//日志文件名
|
||
|
||
|
||
|
||
/**
|
||
* desc:
|
||
* author:wh
|
||
* @param $self_table
|
||
* @return \think\db\Query
|
||
*/
|
||
protected static function tab($self_table){
|
||
return Db::table($self_table);
|
||
}
|
||
} |