123456789101112131415161718 |
- package dto
- import "Medical_ERP/common/dto"
- // ProductCodePageReq 列表或者搜索使用结构体
- type ProductCodePageReq struct {
- dto.Pagination `search:"-"`
- Name string `json:"name" search:"-"` // 收货单位
- }
- // GenProductCodePageReq 列表或者搜索使用结构体
- type GenProductCodePageReq struct {
- Product string `json:"product" valid:"MinSize(1)"` // 产品
- Enterprise string `json:"enterprise" valid:"MinSize(1)"` // 生产企业
- Spec string `json:"spec" valid:"MinSize(1)"` // 规格
- BatchNumber string `json:"batchNumber" valid:"MinSize(1)"` // 批号
- Quantity int `json:"quantity"` // 数量
- }
|