Ei kuvausta

JxQtaskLiveOrderList.php 419B

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