1234567891011121314151617 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class JxStarLiveInfoList extends Model
- {
- public $timestamps = false;
- protected $table = 'jx_star_live_info_list';
- protected static $unguarded = true;
- # 星直播任务数据入库队列
- const JUXING_STAR_LIVE_INFO_INDB_LIST = 'juxingStarLiveInfoIndbList';
- }
|