mirror of https://gitee.com/karson/fastadmin.git
21 lines
421 B
PHP
21 lines
421 B
PHP
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
use think\Model;
|
|
|
|
class Page extends Model
|
|
{
|
|
|
|
// 自动写入时间戳字段
|
|
protected $autoWriteTimestamp = 'int';
|
|
// 定义时间戳字段名
|
|
protected $createTime = 'createtime';
|
|
protected $updateTime = 'updatetime';
|
|
|
|
public function category()
|
|
{
|
|
return $this->belongsTo('Category', 'category_id')->setEagerlyType(0);
|
|
}
|
|
}
|