2024-01-02 14:04:16 +00:00
|
|
|
package benefactorkindboxreqparam
|
2023-12-25 17:08:19 +00:00
|
|
|
|
2024-07-23 19:21:02 +00:00
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"git.gocasts.ir/ebhomengo/niki/entity"
|
|
|
|
)
|
2023-12-25 17:08:19 +00:00
|
|
|
|
|
|
|
type KindBoxReqUpdateRequest struct {
|
2024-07-24 23:45:04 +00:00
|
|
|
KindBoxReqID uint `json:"-" param:"id" example:"1"`
|
|
|
|
BenefactorID uint `json:"-" example:"1"`
|
2024-07-23 19:21:02 +00:00
|
|
|
KindBoxType entity.KindBoxType `json:"kind_box_type" example:"2"`
|
|
|
|
CountRequested uint `json:"count_requested" example:"5"`
|
|
|
|
Description string `json:"description" example:"description"`
|
|
|
|
DeliverReferTimeID uint `json:"deliver_refer_time_id" example:"1"`
|
|
|
|
DeliverReferDate time.Time `json:"deliver_refer_date" example:"2025-01-02T15:04:05Z"`
|
|
|
|
DeliverAddressID uint `json:"deliver_address_id" example:"1"`
|
2023-12-25 17:08:19 +00:00
|
|
|
}
|
|
|
|
|
2024-07-24 23:45:04 +00:00
|
|
|
type KindBoxReqUpdateResponse struct{}
|