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