| | |
| | | package response |
| | | |
| | | type Info struct { |
| | | MakeInfo []WorkOrderInfo `json:"makeInfo"` |
| | | PurchaseInfo []Purchase `json:"purchaseInfo"` |
| | | } |
| | | |
| | | type WorkOrderInfo struct { |
| | | OrderId string `json:"orderId"` |
| | | ProductName string `json:"productName"` |
| | |
| | | EndTime string `json:"endTime"` |
| | | } |
| | | |
| | | type Purchase struct { |
| | | PurchaseNumber string `json:"purchaseNumber"` |
| | | PurchaseName string `json:"purchaseName"` |
| | | SupplierName string `json:"supplierName"` |
| | | Amount int64 `json:"amount"` |
| | | Status int64 `json:"status"` |
| | | } |
| | | |
| | | type ProductInfo struct { |
| | | Id string `json:"id"` |
| | | Number string `json:"number"` |
| | | Name string `json:"name"` |
| | | OrderAmount string `json:"orderAmount"` //订单数量 |
| | | Unit string `json:"unit"` |