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";