niki/param/admin/kind_box_req/add.go

16 lines
580 B
Go
Raw Permalink Normal View History

2023-12-25 17:08:19 +00:00
package adminkindboxreqparam
2023-12-25 17:08:19 +00:00
import entity "git.gocasts.ir/ebhomengo/niki/entity"
type KindBoxReqAddRequest struct {
2024-06-14 08:41:36 +00:00
BenefactorID uint `json:"benefactor_id" example:"1"`
KindBoxType entity.KindBoxType `json:"kind_box_type" example:"1"`
2024-06-14 08:41:36 +00:00
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"`
}
type KindBoxReqAddResponse struct {
KindBoxReq entity.KindBoxReq
}