- <?php
- /**
- * bs_knowledge_money_records(知识币变动表)数据库连接model
- * 2018-07-19 17:58
- * 韩
- */
-
- namespace App\Models;
-
- use Illuminate\Database\Eloquent\Model;
-
- class KnowledgeRecords extends Model
- {
- public $timestamps = false; //取消框架默认的created_at时间
- protected $table = 'bs_knowledge_money_records';
- }
|