23 lines
782 B
PHP
23 lines
782 B
PHP
<?php
|
|
|
|
namespace App\Models\YiiModels;
|
|
|
|
/**
|
|
* App\Models\YiiModels\WestUnit
|
|
*
|
|
* @property int $id
|
|
* @property string $name
|
|
* @property \Illuminate\Support\Carbon $created_at
|
|
* @property \Illuminate\Support\Carbon $updated_at
|
|
* @property-read string $created_at_format 创建时间的格式化
|
|
* @property-read string $status_string 状态名称
|
|
* @property-read string $updated_at_format 更新时间的格式化
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\WestUnit newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\WestUnit newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\WestUnit query()
|
|
* @mixin \Eloquent
|
|
*/
|
|
class WestUnit extends YiiBaseModel
|
|
{
|
|
}
|