167 lines
4.1 KiB
PHP
Executable File
167 lines
4.1 KiB
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: liu21st <liu21st@gmail.com>
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace think\model;
|
|
|
|
use think\db\Query;
|
|
use think\Exception;
|
|
use think\Model;
|
|
|
|
/**
|
|
* Class Relation
|
|
* @package think\model
|
|
*
|
|
* @mixin Query
|
|
*/
|
|
abstract class Relation
|
|
{
|
|
// 父模型对象
|
|
protected $parent;
|
|
/** @var Model 当前关联的模型类 */
|
|
protected $model;
|
|
/** @var Query 关联模型查询对象 */
|
|