| 123456789101112131415161718192021 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use App\Traits\LogModelChanging;
- class StationTypeBinMonitor extends Model
- {
- use LogModelChanging;
- protected $fillable=['station_id','bin_row_length','bin_column_length','bin_wall_amount'];
- public static $default=[
- "station_id" => null,
- "bin_row_length" => 2,
- "bin_column_length" => 4,
- "bin_wall_amount" => 2,
- ];
- }
|