修改医生问诊配置

This commit is contained in:
2024-04-10 08:55:44 +08:00
parent ccd5817faf
commit 6ff6ba2851
5 changed files with 100 additions and 18 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ use Hyperf\Snowflake\Concern\Snowflake;
/**
* @property int $health_package_id 主键id
* @property int $doctor_id 医生id
* @property int $config_health_package_id 健康包配置id
* @property int $package_id 健康包配置id
* @property string $service_price 服务价格(根据图文问诊价格计算)
* @property Carbon $created_at 创建时间
* @property Carbon $updated_at 修改时间
@@ -30,7 +30,7 @@ class DoctorConfigHealthPackage extends Model
/**
* The attributes that are mass assignable.
*/
protected array $fillable = ['health_package_id', 'doctor_id', 'config_health_package_id', 'service_price', 'created_at', 'updated_at'];
protected array $fillable = ['health_package_id', 'doctor_id', 'package_id', 'service_price', 'created_at', 'updated_at'];
protected string $primaryKey = "health_package_id";