StationTypeBinMonitor.php 389 B

1234567891011121314151617
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class StationTypeBinMonitor extends ModelExtended
  5. {
  6. protected $fillable=['station_id','bin_row_length','bin_column_length','bin_wall_amount'];
  7. public static $default=[
  8. "station_id" => null,
  9. "bin_row_length" => 2,
  10. "bin_column_length" => 4,
  11. "bin_wall_amount" => 2,
  12. ];
  13. }