StationTaskChildren.php 282 B

123456789101112131415
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class StationTaskChildren extends Model
  5. {
  6. protected $table="station_task_children";
  7. protected $fillable=[
  8. "station_task_id",
  9. "station_task_table_type",
  10. "station_task_table_id",
  11. ];
  12. }