PayProduct.php 227 B

1234567891011121314
  1. <?php
  2. namespace Modules\Channel\Models;
  3. class PayProduct extends BaseModel
  4. {
  5. protected $table = 'pay_products';
  6. protected $fillable = [
  7. 'id', 'price', 'type', 'given', 'created_at', 'updated_at',
  8. ];
  9. }