289 lines
7.8 KiB
PHP
Executable File
289 lines
7.8 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\concern;
|
|
|
|
use think\Collection;
|
|
use think\Exception;
|
|
use think\Loader;
|
|
use think\Model;
|
|
use think\model\Collection as ModelCollection;
|
|
|
|
/**
|
|
* 模型数据转换处理
|
|
*/
|
|
trait Conversion
|
|
{
|
|
/**
|
|
* 数据输出显示的属性
|
|
* @var array
|
|
*/
|
|