修改订单评价

This commit is contained in:
wucongxing 2023-04-17 08:55:32 +08:00
parent 0f67f87ae2
commit 8ff1205e7c

View File

@ -38,11 +38,6 @@ class OrderEvaluation extends Model
*/
protected array $fillable = ['evaluation_id', 'doctor_id', 'patient_id', 'order_inquiry_id', 'name_mask', 'reply_quality', 'service_attitude', 'reply_progress', 'avg_score', 'type', 'content', 'created_at', 'updated_at'];
/**
* The attributes that should be cast to native types.
*/
protected array $casts = ['evaluation_id' => 'integer', 'doctor_id' => 'integer', 'patient_id' => 'integer', 'order_inquiry_id' => 'integer', 'type' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime'];
protected string $primaryKey = "evaluation_id";
/**