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