BqFlow.php 318 B

1234567891011121314151617
  1. <?php
  2. namespace App\Http\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class BqFlow extends Model
  5. {
  6. protected $primaryKey = 'id';
  7. protected $table = 'bq_flow';
  8. protected $guarded = [];
  9. public function bqFlowInfo()
  10. {
  11. return $this->hasMany(BqFlowInfo::class, 'stage_id', 'id');
  12. }
  13. }