niki/param/admin/kind_box/add.go

21 lines
371 B
Go
Raw Normal View History

2023-12-25 17:08:19 +00:00
package adminkindboxparam
import (
"time"
2024-06-14 08:41:36 +00:00
entity "git.gocasts.ir/ebhomengo/niki/entity"
)
type AddKindBoxRequest struct {
KindBoxReqID uint
BenefactorID uint
Type entity.KindBoxType
DeliverReferDate time.Time
DeliverAddressID uint
SenderAgentID uint
DeliveredAt time.Time
CountAccepted uint
}
type AddKindBoxResponse struct{}