medicine.go 327 B

123456789
  1. package dto
  2. // MedicineBatchNumberReq 使用的结构体
  3. type MedicineBatchNumberReq struct {
  4. ProductID int `json:"productId"` // 药品名称id
  5. EnterpriseID int `json:"enterpriseId"` // 生产企业id
  6. SpecID int `json:"specId"` // 规格id
  7. BatchNumber string `json:"batchNumber"` // 批号
  8. }