2022-08-26 16:13:18 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetSupplierRequest ...
|
|
|
|
type GetSupplierRequest struct {
|
2022-08-29 07:25:12 +00:00
|
|
|
ListID []primitive.ObjectID `json:"listID"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type GetSupplierContractRequest struct {
|
|
|
|
SupplierID primitive.ObjectID `json:"supplierID"`
|
2022-08-26 16:13:18 +00:00
|
|
|
}
|
2022-08-31 07:48:24 +00:00
|
|
|
|
|
|
|
// SupplierRequestPayload ...
|
|
|
|
type SupplierRequestPayload struct {
|
|
|
|
Limit int
|
|
|
|
Page int
|
|
|
|
Keyword string
|
|
|
|
Status string
|
|
|
|
PIC string
|
|
|
|
ContractStatus string
|
|
|
|
}
|
2022-09-14 11:04:18 +00:00
|
|
|
|
|
|
|
type CreateSupplierWarehousePayload struct {
|
|
|
|
Supplier string `json:"supplier"`
|
|
|
|
Warehouse string `json:"warehouse"`
|
|
|
|
ProvinceCode int `json:"provinceCode"`
|
|
|
|
DistrictCode int `json:"districtCode"`
|
|
|
|
WardCode int `json:"wardCode"`
|
|
|
|
}
|
2022-09-14 16:30:22 +00:00
|
|
|
|
|
|
|
type UpdateSupplierWarehousePayload struct {
|
|
|
|
Supplier string `json:"supplier"`
|
|
|
|
Warehouse string `json:"warehouse"`
|
|
|
|
ProvinceCode int `json:"provinceCode"`
|
|
|
|
DistrictCode int `json:"districtCode"`
|
|
|
|
WardCode int `json:"wardCode"`
|
|
|
|
}
|
2022-10-26 10:56:15 +00:00
|
|
|
|
|
|
|
// SupplierCashflowCreatePayload ...
|
|
|
|
type SupplierCashflowCreatePayload struct {
|
|
|
|
Supplier string `json:"supplier"`
|
|
|
|
Action string `json:"action"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
TargetID string `json:"targetId"`
|
|
|
|
Value float64 `json:"value"`
|
|
|
|
ClickAction *ClickAction `json:"clickAction"`
|
|
|
|
}
|
2022-10-27 02:41:38 +00:00
|
|
|
|
2022-10-27 08:52:39 +00:00
|
|
|
type SupplierFreeShipInfoRequestPayload struct {
|
2022-10-28 04:39:29 +00:00
|
|
|
SupplierIDs []string `json:"supplierIds"`
|
2022-10-25 05:00:37 +00:00
|
|
|
}
|