niki/param/admin/kind_box_req/reject.go

24 lines
903 B
Go
Raw Permalink Normal View History

2024-01-22 15:21:13 +00:00
package adminkindboxreqparam
import (
"time"
"git.gocasts.ir/ebhomengo/niki/entity"
)
type KindBoxReqRejectRequest struct {
2024-05-20 17:37:44 +00:00
ID uint `json:"-"`
Description string `json:"description" example:"description"`
2024-01-22 15:21:13 +00:00
}
type KindBoxReqRejectResponse struct {
ID uint `json:"id" example:"1"`
KindBoxType entity.KindBoxType `json:"kind_box_type" example:"1"`
CountRequested uint `json:"count_requested" example:"1"`
BenefactorID uint `json:"benefactor_id" example:"1"`
Status entity.KindBoxReqStatus `json:"status" example:"1"`
Description string `json:"description" example:"description"`
DeliverReferDate time.Time `json:"deliver_refer_date" example:"2025-01-02 15:04:05"`
DeliverAddressID uint `json:"deliver_address_id" example:"1"`
2024-01-22 15:21:13 +00:00
}