2022-08-26 16:13:18 +00:00
|
|
|
package model
|
|
|
|
|
2022-08-31 07:18:04 +00:00
|
|
|
// SupplierBrief ...
|
|
|
|
type SupplierBrief struct {
|
|
|
|
ID string `json:"_id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
CreatedAt string `json:"createdAt"`
|
|
|
|
UpdatedAt string `json:"updatedAt"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type SupplierAll struct {
|
|
|
|
Suppliers []SupplierBrief `json:"suppliers"`
|
|
|
|
Total int64 `json:"total"`
|
2022-08-26 16:13:18 +00:00
|
|
|
}
|