药品、处方列表关联药房信息

This commit is contained in:
haomingming
2026-09-07 16:25:04 +08:00
parent 5f2baaace7
commit 3205005b9a
10 changed files with 224 additions and 1 deletions
+6
View File
@@ -34,6 +34,9 @@ type GetOrderProductPage struct {
ProductName string `json:"product_name" form:"product_name" label:"药品名称"`
CommonName string `json:"common_name" form:"common_name" label:"药品通用名"`
PrescriptionCode string `json:"prescription_code" form:"prescription_code" label:"处方编号"`
PharmacyId string `json:"pharmacy_id" form:"pharmacy_id" label:"药房id"`
PharmacyCode string `json:"pharmacy_code" form:"pharmacy_code" label:"药房代码"`
PharmacyName string `json:"pharmacy_name" form:"pharmacy_name" label:"药房名称"`
AnnualReviewHide *int `json:"-" form:"-"` // 内部传递条件
}
@@ -67,5 +70,8 @@ type OrderProductExportList struct {
ConsigneeTel string `json:"consignee_tel" form:"cancel_reason" label:"收货人电话"`
PatientName string `json:"patient_name" form:"patient_name" label:"患者姓名-就诊人"`
Mobile string `json:"mobile" form:"mobile" label:"手机号-医生/患者"`
PharmacyId string `json:"pharmacy_id" form:"pharmacy_id" label:"药房id"`
PharmacyCode string `json:"pharmacy_code" form:"pharmacy_code" label:"药房代码"`
PharmacyName string `json:"pharmacy_name" form:"pharmacy_name" label:"药房名称"`
AnnualReviewHide *int `json:"-" form:"-"` // 内部传递条件
}