QappPackage.php 353 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Modules\User\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class QappPackage extends Model
  5. {
  6. protected $table = 'qapp_package_info';
  7. protected $fillable =
  8. [
  9. 'package',
  10. 'channel_id',
  11. 'company',
  12. 'app_pay_merchat_id',
  13. 'h5_pay_merchat_id',
  14. 'ali_pay_merchat_id',
  15. ];
  16. }