forked from ebhomengo/niki
1
0
Fork 0
niki/param/agent/kind_box/add.go

23 lines
441 B
Go
Raw Normal View History

2024-09-16 11:14:45 +00:00
package agentkindboxparam
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
DeliverReferTimeID uint
DeliverReferDate time.Time
DeliverAddressID uint
SenderAgentID uint
DeliveredAt time.Time
CountAccepted uint
SerialNumbers []string
}
type AddKindBoxResponse struct{}