Keine Beschreibung

JxQtaskVideoFlowOrderList.php 456B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Factories\HasFactory;
  4. use Illuminate\Database\Eloquent\Model;
  5. class JxQtaskVideoFlowOrderList extends Model
  6. {
  7. public $timestamps = false;
  8. protected $table = 'jx_qtask_video_flow_order_list';
  9. protected static $unguarded = true;
  10. #流量助推:星任务-视频订单数据入库队列
  11. const JUXING_QTASK_VIDEO_FLOW_ORDER_INDB_LIST = 'juxingQtaskVideoFlowOrderIndbList';
  12. }