- package dto
- // MedicineBatchNumberReq 使用的结构体
- type MedicineBatchNumberReq struct {
- ProductID int `json:"productId"` // 药品名称id
- EnterpriseID int `json:"enterpriseId"` // 生产企业id
- SpecID int `json:"specId"` // 规格id
- BatchNumber string `json:"batchNumber"` // 批号
- }
|