1234567891011121314151617181920212223242526 |
- <?php
- // +----------------------------------------------------------------------
- // | Ceeen Wise System
- // +----------------------------------------------------------------------
- // | Copyright (c) 2007-2017 http://fely.cc All rights reserved.
- // +----------------------------------------------------------------------
- // | Date: 2017/6/6 Time: 0:25
- // +----------------------------------------------------------------------
- // | Author: fely <fely@fely.cc>
- // +----------------------------------------------------------------------
- namespace app\common\model\jarc;
- use think\Model;
- /**
- * Class Config 系统配置
- * @package common\model
- */
- class UserScoreLog extends Model
- {
- // 直接使用配置参数名
- protected $connection = 'db_jarc';
- }
|