设置位置如下:prefix属性设置为对应的数据表前缀
Mysql数据库存储字段格式应设置为date
数据表表名中有下划线又该怎么处理呢?比如数据表名为tp_user_his.
首先在Model文件夹下创建UserHis.php的文件,然后打开配置如下代码:
<?php
namespace app\index\model;
use think\Model;
class UserHis extends Model{
//方法1:不包含表前缀
protected $tableName = 'user_his';
//方法2:包含表前缀
protected $trueTableName = 'tp_user_his';
}
以上,就是thinkphp 数据表有下划线时模型的定义方法