OrderParam.php 248 B

1234567891011
  1. <?php
  2. namespace App\Modules\Subscribe\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class OrderParam extends Model
  5. {
  6. protected $table = 'order_params';
  7. protected $fillable = ['order_id','gxhp','appid','bid','data_hour_key','times'];
  8. }