Paypal.php 383 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Http\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * Paypal支付订单
  6. * Class Paypal
  7. * @package App\Http\Models
  8. */
  9. class Paypal extends Model
  10. {
  11. protected $table = 'paypal';
  12. protected $primaryKey = 'id';
  13. protected $fillable = [
  14. 'oid',
  15. 'invoice_number',
  16. 'items',
  17. 'response_data',
  18. 'error',
  19. ];
  20. }