Files
sentcms/app/model/CompanyApt.php
2020-08-15 21:47:14 +08:00

19 lines
662 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;
/**
* Company模型
*/
class CompanyApt extends \think\Model{
protected $auto = array('update_time');
protected $insert = array('create_time');
}