Files
sentcms/app/model/client/Client.php
2022-04-29 20:26:03 +08:00

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');
}