<?php
namespace app\common\model;
use think\facade\Db;
use think\Model;
class AddBasis extends Model
{
// $table = Db::name('q')->where('state','启用')->column('data');
protected $table ='table';
public function findtable()
{
return $this -> order('id', 'asc')->paginate(10);
}
}
上面这个表名,我想改成变量,随着数据库指定表名的字段而改变,谢谢了!
最佳答案
