2023-12-25 17:08:19 +00:00
|
|
|
package adminkindboxparam
|
2024-03-14 13:38:42 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
2024-06-14 08:41:36 +00:00
|
|
|
|
|
|
|
entity "git.gocasts.ir/ebhomengo/niki/entity"
|
2024-03-14 13:38:42 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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{}
|