forked from ebhomengo/niki
19 lines
389 B
Go
19 lines
389 B
Go
package entity
|
|
|
|
import "time"
|
|
|
|
type KindBoxReq struct {
|
|
ID uint
|
|
BenefactorID uint
|
|
KindBoxType KindBoxType
|
|
CountRequested uint
|
|
CountAccepted uint
|
|
Description string
|
|
Status KindBoxReqStatus
|
|
DeliverReferTimeID uint
|
|
DeliverReferDate time.Time
|
|
DeliverAddressID uint
|
|
SenderAgentID uint
|
|
DeliveredAt time.Time
|
|
}
|