2022-11-24 02:06:48 +00:00
|
|
|
package model
|
|
|
|
|
2022-11-24 04:14:15 +00:00
|
|
|
import "go.mongodb.org/mongo-driver/bson/primitive"
|
|
|
|
|
2022-11-24 02:06:48 +00:00
|
|
|
// ResponseCampaignTransactionAll ...
|
|
|
|
type ResponseCampaignTransactionAll struct {
|
|
|
|
List []ResponseNatsCampaignTransaction `json:"list"`
|
|
|
|
Total int64 `json:"total"`
|
|
|
|
Limit int64 `json:"limit"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResponseNatsCampaignTransaction ...
|
|
|
|
type ResponseNatsCampaignTransaction struct {
|
|
|
|
ID string `json:"_id"`
|
|
|
|
Cash float64 `json:"cash"`
|
|
|
|
Campaign ResponseCampaignShortInfo `json:"campaign"`
|
2022-11-24 04:14:15 +00:00
|
|
|
Seller primitive.ObjectID `json:"seller"`
|
2022-11-24 02:06:48 +00:00
|
|
|
Type string `json:"type"`
|
|
|
|
RejectedReason string `json:"rejectedReason"`
|
|
|
|
CreatedAt string `json:"createdAt"`
|
|
|
|
UpdatedAt string `json:"updatedAt"`
|
|
|
|
Item *ResponseCampaignItemShortInfo `json:"item"`
|
2022-11-24 04:14:15 +00:00
|
|
|
ApprovedBy primitive.ObjectID `json:"approvedBy,omitempty"`
|
|
|
|
RejectedBy primitive.ObjectID `json:"rejectedBy,omitempty"`
|
2022-11-24 02:06:48 +00:00
|
|
|
ApprovedAt string `json:"approvedAt,omitempty"`
|
|
|
|
RejectedAt string `json:"rejectedAt,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResponseCampaignShortInfo ...
|
|
|
|
type ResponseCampaignShortInfo struct {
|
|
|
|
ID string `json:"_id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// ResponseCampaignItemShortInfo ...
|
|
|
|
type ResponseCampaignItemShortInfo struct {
|
|
|
|
ID string `json:"_id"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
}
|