PayTemplate.php 255 B

123456789101112
  1. <?php
  2. namespace App\Modules\Channel\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class PayTemplate extends Model
  5. {
  6. protected $table = 'distribution_pay_template';
  7. protected $fillable = ['distribution_channel_id','product_template_type'];
  8. }