QappChargeTemplate.php 356 B

123456789101112131415161718
  1. <?php
  2. namespace App\Modules\Product\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class QappChargeTemplate extends Model
  5. {
  6. protected $table = 'qapp_charge_template';
  7. protected $fillable = [
  8. 'qapp_channel_account_id',
  9. 'is_default',
  10. 'product_ids',
  11. 'type',
  12. 'is_official',
  13. 'template_name',
  14. ];
  15. }