1234567891011121314151617 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class JxStarLiveOrderList extends Model
- {
- public $timestamps = false;
- protected $table = 'jx_star_live_order_list';
- protected static $unguarded = true;
- # 星直播订单数据入库队列
- const JUXING_STAR_LIVE_ORDER_INDB_LIST = 'juxingStarLiveOrderIndbList';
- }
|