StationTypeBinMonitor.php 442 B

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