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-03-14 13:38:42 +00:00
|
|
|
BenefactorID uint `json:"benefactor_id"`
|
|
|
|
TypeID entity.KindBoxType `json:"type_id"`
|
|
|
|
DeliverAddressID uint `json:"deliver_address_id"`
|
|
|
|
DeliverReferDate string `json:"deliver_refer_date"`
|
|
|
|
CountRequested uint `json:"count_requested"`
|
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
|
|
|
}
|