22 lines
1.3 KiB
Go
22 lines
1.3 KiB
Go
package orderEvaluationResponse
|
||
|
||
import (
|
||
"hospital-admin-api/api/model"
|
||
)
|
||
|
||
type OrderEvaluation struct {
|
||
EvaluationId string `json:"evaluation_id"` // 主键id
|
||
DoctorId string `json:"doctor_id"` // 医生id;NOT NULL
|
||
PatientId string `json:"patient_id"` // 患者id;NOT NULL
|
||
OrderInquiryId string `json:"order_inquiry_id"` // 订单-问诊id;NOT NULL
|
||
NameMask string `json:"name_mask"` // 患者姓名(掩码)
|
||
ReplyQuality float64 `json:"reply_quality"` // 回复质量(百分制)
|
||
ServiceAttitude float64 `json:"service_attitude"` // 服务态度(百分制)
|
||
ReplyProgress float64 `json:"reply_progress"` // 回复速度(百分制)
|
||
AvgScore float64 `json:"avg_score"` // 平均得分(百分制,回复质量占4、服务态度占3、回复速度占3,计算公式:每个得分 * 占比 相加)
|
||
Type int `json:"type"` // 类型(1:默认评价 2:主动评价)
|
||
Content string `json:"content"` // 评价内容
|
||
CreatedAt model.LocalTime `json:"created_at"` // 创建时间
|
||
UpdatedAt model.LocalTime `json:"updated_at"` // 修改时间
|
||
}
|