Files
sentcms/app/model/Client.php
2020-02-18 14:50:57 +08:00

19 lines
657 B
PHP

<?php
// +----------------------------------------------------------------------
// | OneThink [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013 http://www.onethink.cn All rights reserved.
// +----------------------------------------------------------------------
// | Author: 麦当苗儿 <zuojiazi@vip.qq.com> <http://www.zjzit.cn>
// +----------------------------------------------------------------------
namespace app\model;
/**
* Client模型
*/
class Client extends \think\Model{
protected $auto = array('update_time');
protected $insert = array('create_time');
}