16 lines
263 B
PHP
16 lines
263 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Station extends BaseModel
|
|
{
|
|
use HasFactory;
|
|
protected $table = 'station';
|
|
|
|
const NO_FIXED_STATION = '虚拟工位';
|
|
|
|
}
|