Bez popisu

JxStarLiveInfoList.php 405B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\Model;
  5. class JxStarLiveInfoList extends Model
  6. {
  7. public $timestamps = false;
  8. protected $table = 'jx_star_live_info_list';
  9. protected static $unguarded = true;
  10. # 星直播任务数据入库队列
  11. const JUXING_STAR_LIVE_INFO_INDB_LIST = 'juxingStarLiveInfoIndbList';
  12. }