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"
|
|
|
|
)
|
2023-12-20 08:27:13 +00:00
|
|
|
|
|
|
|
type KindBoxReqAddRequest struct {
|
2024-05-17 20:16:28 +00:00
|
|
|
BenefactorID uint `json:"benefactor_id" example:"1"`
|
|
|
|
TypeID entity.KindBoxType `json:"type_id" example:"1"`
|
|
|
|
DeliverAddressID uint `json:"deliver_address_id" example:"1"`
|
|
|
|
DeliverReferDate string `json:"deliver_refer_date" example:"2025-01-02 15:04:05"`
|
|
|
|
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
|
|
|
}
|