| | |
| | | |
| | | DataResponse struct { |
| | | |
| | | // 报价单状态 |
| | | QuotationStatus []*model.QuotationStatus `json:"quotationStatus"` |
| | | |
| | | |
| | | // 退货仓库 |
| | | Repository []*model.Repository `json:"repository"` |
| | | |
| | | |
| | | // 退货单状态 |
| | | SalesReturnStatus []*model.SalesReturnStatus `json:"salesReturnStatus"` |
| | | |
| | | |
| | | // 账户 |
| | | AccountId []*model.AccountId `json:"accountId"` |
| | | |
| | |
| | | AccountIdResponse struct { |
| | | List []*model.AccountId `json:"list"` |
| | | } |
| | | |
| | | SalesReturnStatusResponse struct { |
| | | List []*model.SalesReturnStatus `json:"list"` |
| | | } |
| | | |
| | | RepositoryResponse struct { |
| | | List []*model.Repository `json:"list"` |
| | | } |
| | | |
| | | QuotationStatusResponse struct { |
| | | List []*model.QuotationStatus `json:"list"` |
| | | } |
| | | ) |