23 lines
792 B
PHP
23 lines
792 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Models\YiiModels;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* App\Models\YiiModels\DrugUseNum
|
||
|
|
*
|
||
|
|
* @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\DrugUseNum newModelQuery()
|
||
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\DrugUseNum newQuery()
|
||
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\DrugUseNum query()
|
||
|
|
* @mixin \Eloquent
|
||
|
|
*/
|
||
|
|
class DrugUseNum extends YiiBaseModel
|
||
|
|
{
|
||
|
|
}
|