2022-08-26 16:13:18 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
// ResponseSupplierInfo ...
|
|
|
|
type ResponseSupplierInfo struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
}
|
2022-08-29 07:25:12 +00:00
|
|
|
|
|
|
|
// ResponseSupplierContract ...
|
|
|
|
type ResponseSupplierContract struct {
|
|
|
|
ID string `json:"id"`
|
|
|
|
Supplier string `json:"supplier"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
}
|