36 lines
2.5 KiB
Go
36 lines
2.5 KiB
Go
package orderInquiryCaseResponse
|
||
|
||
import (
|
||
"hospital-admin-api/api/model"
|
||
)
|
||
|
||
// OrderInquiryCase 问诊病例详情
|
||
type OrderInquiryCase struct {
|
||
InquiryCaseId string `json:"inquiry_case_id"` // 主键id
|
||
UserId string `json:"user_id"` // 用户id
|
||
PatientId string `json:"patient_id"` // 患者id
|
||
OrderInquiryId string `json:"order_inquiry_id"` // 订单-问诊id;NOT NULL
|
||
FamilyId string `json:"family_id"` // 家庭成员id
|
||
Relation int `json:"relation"` // 与患者关系(1:本人 2:父母 3:爱人 4:子女 5:亲戚 6:其他)
|
||
Status int `json:"status"` // 状态(1:正常 2:删除)
|
||
Name string `json:"name"` // 患者名称
|
||
Sex int `json:"sex"` // 患者性别(0:未知 1:男 2:女)
|
||
Age int `json:"age"` // 患者年龄
|
||
Height string `json:"height"` // 身高(cm)
|
||
Weight string `json:"weight"` // 体重(kg)
|
||
DiseaseClassId string `json:"disease_class_id"` // 疾病分类id-系统
|
||
DiseaseClassName string `json:"disease_class_name"` // 疾病名称-系统
|
||
DiagnosisDate model.LocalTime `json:"diagnosis_date"` // 确诊日期
|
||
DiseaseDesc string `json:"disease_desc"` // 病情描述(主诉)
|
||
DiagnoseImages string `json:"diagnose_images"` // 复诊凭证(多个使用逗号分隔)
|
||
IsAllergyHistory int `json:"is_allergy_history"` // 是否存在过敏史(0:否 1:是)
|
||
AllergyHistory string `json:"allergy_history"` // 过敏史描述
|
||
IsFamilyHistory int `json:"is_family_history"` // 是否存在家族病史(0:否 1:是)
|
||
FamilyHistory string `json:"family_history"` // 家族病史描述
|
||
IsPregnant int `json:"is_pregnant"` // 是否备孕、妊娠、哺乳期(0:否 1:是)
|
||
Pregnant string `json:"pregnant"` // 备孕、妊娠、哺乳期描述
|
||
IsTaboo int `json:"is_taboo"` // 是否服用过禁忌药物,且无相关禁忌(0:否 1:是)问诊购药时存在
|
||
CreatedAt model.LocalTime `json:"created_at"` // 创建时间
|
||
UpdatedAt model.LocalTime `json:"updated_at"` // 修改时间
|
||
}
|