18 lines
655 B
PHP
18 lines
655 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2013 http://www.tensent.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
|
|
// +----------------------------------------------------------------------
|
|
namespace app\model\client;
|
|
|
|
/**
|
|
* Client模型
|
|
*/
|
|
class Client extends \think\Model{
|
|
protected $auto = array('update_time');
|
|
protected $insert = array('create_time');
|
|
|
|
} |