2022-09-15 07:09:54 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import "go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
|
|
|
|
// GetSellerByIDRequest ...
|
|
|
|
type GetSellerByIDRequest struct {
|
|
|
|
SellerID primitive.ObjectID `json:"sellerId"`
|
|
|
|
}
|
2022-09-19 04:48:30 +00:00
|
|
|
|
|
|
|
// GetListSellerByIDsRequest ...
|
|
|
|
type GetListSellerByIDsRequest struct {
|
|
|
|
SellerIDs []primitive.ObjectID `json:"sellerIds"`
|
|
|
|
}
|
2022-09-21 03:19:17 +00:00
|
|
|
|
|
|
|
// GetListSellerSupportChatByIDsRequest ...
|
|
|
|
type GetListSellerSupportChatByIDsRequest struct {
|
|
|
|
SellerIDs []primitive.ObjectID `json:"sellerIds"`
|
|
|
|
}
|