| 1234567891011121314151617 |
- <?php
- namespace app\common\model;
- /**
- * 渠道-区服数据表
- * @author Administrator
- */
- class ComplexServer extends \think\Model
- {
- protected $pk = 'id';
- protected $table = 'nw_complex_server';
-
- protected $autoWriteTimestamp = true;
- protected $createTime = 'create_time';
- protected $dateFormat = 'Y-m-d H:i:s';
- }
|