24 lines
852 B
PHP
24 lines
852 B
PHP
<?php
|
|
|
|
namespace App\Models\YiiModels;
|
|
|
|
/**
|
|
* App\Models\YiiModels\Drugstore
|
|
*
|
|
* @property int $id 主键id
|
|
* @property string $name 药房名称
|
|
* @property string $position 药房位置
|
|
* @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\Drugstore newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\Drugstore newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\Drugstore query()
|
|
* @mixin \Eloquent
|
|
*/
|
|
class Drugstore extends YiiBaseModel
|
|
{
|
|
}
|