package orderPrescriptionProductResponse import ( "hospital-admin-api/api/model" ) type OrderPrescriptionProduct struct { PrescriptionProductId string `json:"prescription_product_id"` // 主键id OrderPrescriptionId string `json:"order_prescription_id"` // 订单-处方id;NOT NULL ProductId string `json:"product_id"` // 商品id;NOT NULL UseStatus int `json:"use_status"` // 使用状态(1:已使用 0:未使用) PrescriptionProductNum int `json:"prescription_product_num"` // 商品数量 ProductName string `json:"product_name"` // 商品名称 ProductSpec string `json:"product_spec"` // 商品规格 LicenseNumber string `json:"license_number"` // 批准文号 Manufacturer string `json:"manufacturer"` // 生产厂家 SingleUnit string `json:"single_unit"` // 单次剂量(例:1次1包) SingleUse string `json:"single_use"` // 单次用法(例:口服) PackagingUnit string `json:"packaging_unit"` // 基本包装单位(例:盒/瓶) FrequencyUse string `json:"frequency_use"` // 使用频率(例:1天3次) AvailableDays int `json:"available_days"` // 可用天数(3) CreatedAt model.LocalTime `json:"created_at"` // 创建时间 UpdatedAt model.LocalTime `json:"updated_at"` // 修改时间 }