16 lines
713 B
Go
16 lines
713 B
Go
package orderPrescriptionIcdResponse
|
||
|
||
import (
|
||
"hospital-admin-api/api/model"
|
||
)
|
||
|
||
type OrderPrescriptionIcd struct {
|
||
PrescriptionIcdId string `json:"prescription_icd_id"` // 主键id
|
||
OrderPrescriptionId string `json:"order_prescription_id"` // 订单-处方id
|
||
IcdId string `json:"icd_id"` // 疾病id(icd)
|
||
IcdName string `json:"icd_name"` // 疾病名称(icd)
|
||
IcdCode string `json:"icd_code"` // icd编码
|
||
CreatedAt model.LocalTime `json:"created_at"` // 创建时间
|
||
UpdatedAt model.LocalTime `json:"updated_at"` // 修改时间
|
||
}
|