32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Models\YiiModels;
|
|
|
|
/**
|
|
* App\Models\YiiModels\WestRecipe
|
|
*
|
|
* @property int $id
|
|
* @property string|null $content
|
|
* @property int $number 药品数量
|
|
* @property string|null $instruction 说明书
|
|
* @property int|null $time_id
|
|
* @property int $type_id
|
|
* @property int $grain_number 每天几粒
|
|
* @property int $wu_id 西药单位id
|
|
* @property int $available_days 可用天数
|
|
* @property int $f_id 频率id
|
|
* @property string $total_price 价格
|
|
* @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\WestRecipe newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\WestRecipe newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\WestRecipe query()
|
|
* @mixin \Eloquent
|
|
*/
|
|
class WestRecipe extends YiiBaseModel
|
|
{
|
|
}
|