From 2f87539ec3b0f27559a5bde0c35640ed4a9acfc5 Mon Sep 17 00:00:00 2001 From: wucongxing <815046773@qq.com> Date: Wed, 10 May 2023 09:29:56 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9gdxz=5Fpatient=5Ffamily=5Fhea?= =?UTF-8?q?lth=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Model/PatientFamilyHealth.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Model/PatientFamilyHealth.php b/app/Model/PatientFamilyHealth.php index f0b8333..6bce86b 100644 --- a/app/Model/PatientFamilyHealth.php +++ b/app/Model/PatientFamilyHealth.php @@ -17,6 +17,7 @@ use Hyperf\Snowflake\Concern\Snowflake; * @property string $disease_class_name 疾病名称-系统 * @property string $diagnosis_date 确诊日期 * @property string $diagnosis_hospital 确诊医院 + * @property int $is_take_medicine 正在服药(0:否 1:是) * @property string $drugs_name 正在服药名称 * @property \Carbon\Carbon $created_at 创建时间 * @property \Carbon\Carbon $updated_at 修改时间 @@ -33,7 +34,7 @@ class PatientFamilyHealth extends Model /** * The attributes that are mass assignable. */ - protected array $fillable = ['family_health_id', 'family_id', 'patient_id', 'disease_class_id', 'disease_class_name', 'diagnosis_date', 'diagnosis_hospital', 'drugs_name', 'created_at', 'updated_at']; + protected array $fillable = ['family_health_id', 'family_id', 'patient_id', 'disease_class_id', 'disease_class_name', 'diagnosis_date', 'diagnosis_hospital', 'is_take_medicine', 'drugs_name', 'created_at', 'updated_at']; protected string $primaryKey = "family_health_id";