33 lines
1.2 KiB
PHP
33 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Models\YiiModels;
|
|
|
|
/**
|
|
* App\Models\YiiModels\ChineseRecipe
|
|
*
|
|
* @property int $id
|
|
* @property string|null $content 药方内容
|
|
* @property int $deployment 调配 1煎煮2外配
|
|
* @property int $dosage 剂数
|
|
* @property int $consumption 每天几次
|
|
* @property int|null $usage 用法
|
|
* @property int|null $fufa_id 关联使用时间表
|
|
* @property int $volume
|
|
* @property int|null $is_deepfry 是否浓煎 0否1是
|
|
* @property string $cm_id 中药处方的中药表id
|
|
* @property string $total_price 价格
|
|
* @property string|null $remark 备注
|
|
* @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\ChineseRecipe newModelQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\ChineseRecipe newQuery()
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Models\YiiModels\ChineseRecipe query()
|
|
* @mixin \Eloquent
|
|
*/
|
|
class ChineseRecipe extends YiiBaseModel
|
|
{
|
|
}
|