StationTaskBatch.php 357 B

12345678910111213141516
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Database\Eloquent\Relations\HasOne;
  5. class StationTaskBatch extends Model
  6. {
  7. protected $fillable=['batch_id','station_id','station_task_batch_type_id','status'];
  8. public function batch()
  9. { //波次
  10. return $this->hasOne(Batch::class,"id","batch_id");
  11. }
  12. }