- <?php
- /**
- * bs_user_lotterys(活动实例表)数据库连接model
- * 2018-05-22 17:58
- * 韩
- */
-
- namespace App\Models;
-
- use Illuminate\Database\Eloquent\Model;
-
- class Lotterys extends Model
- {
- public $timestamps = false; //取消框架默认的created_at时间
- protected $table = 'bs_user_lotterys';
- }
|