* 内容管理 */ namespace app\green\model; use think\Model; class GreenSign extends Model{ protected $autoWriteTimestamp = true; protected $createTime = false; //用户 public function user(){ return $this->hasOne('app\common\model\SystemUser','id','uid'); } }