2024-01-02 14:04:16 +00:00
|
|
|
package benefactorkindboxreqparam
|
2023-12-20 08:27:13 +00:00
|
|
|
|
2024-01-16 16:13:06 +00:00
|
|
|
import (
|
|
|
|
entity "git.gocasts.ir/ebhomengo/niki/entity"
|
2024-05-31 12:36:48 +00:00
|
|
|
"time"
|
2024-01-16 16:13:06 +00:00
|
|
|
)
|
2023-12-20 08:27:13 +00:00
|
|
|
|
|
|
|
type KindBoxReqAddRequest struct {
|
2024-05-31 12:36:48 +00:00
|
|
|
BenefactorID uint `json:"benefactor_id" example:"1"`
|
2024-07-03 17:18:06 +00:00
|
|
|
KindBoxType entity.KindBoxType `json:"kind_box_type" example:"1"`
|
2024-05-31 12:36:48 +00:00
|
|
|
DeliverAddressID uint `json:"deliver_address_id" example:"1"`
|
|
|
|
DeliverReferDate time.Time `json:"deliver_refer_date" example:"2025-01-02T15:04:05Z"`
|
|
|
|
DeliverReferTimeID uint `json:"deliver_refer_time_id" example:"1"`
|
|
|
|
CountRequested uint `json:"count_requested" example:"2"`
|
2023-12-20 08:27:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type KindBoxReqAddResponse struct {
|
2024-01-16 16:13:06 +00:00
|
|
|
KindBoxReq entity.KindBoxReq `json:"kind_box_req"`
|
2023-12-20 08:27:13 +00:00
|
|
|
}
|