forked from ebhomengo/niki
18 lines
528 B
Go
18 lines
528 B
Go
package benefactorkindboxreqparam
|
|
|
|
import (
|
|
entity "git.gocasts.ir/ebhomengo/niki/entity"
|
|
)
|
|
|
|
type KindBoxReqAddRequest struct {
|
|
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"`
|
|
}
|
|
|
|
type KindBoxReqAddResponse struct {
|
|
KindBoxReq entity.KindBoxReq `json:"kind_box_req"`
|
|
}
|