forked from ebhomengo/niki
23 lines
441 B
Go
23 lines
441 B
Go
|
package agentkindboxparam
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
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{}
|