2023-12-16 07:20:01 +00:00
|
|
|
package entity
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2023-12-20 08:27:13 +00:00
|
|
|
type KindBox struct {
|
2024-06-25 21:58:11 +00:00
|
|
|
ID uint
|
|
|
|
KindBoxReqID uint
|
|
|
|
BenefactorID uint
|
2024-07-03 17:18:06 +00:00
|
|
|
KindBoxType KindBoxType
|
2024-06-25 21:58:11 +00:00
|
|
|
Amount uint
|
|
|
|
SerialNumber string
|
|
|
|
Status KindBoxStatus
|
|
|
|
DeliverReferDate time.Time
|
|
|
|
DeliverAddressID uint
|
|
|
|
SenderAgentID uint
|
|
|
|
DeliveredAt time.Time
|
|
|
|
ReturnReferTimeID uint
|
|
|
|
ReturnReferDate time.Time
|
|
|
|
ReturnAddressID uint
|
|
|
|
ReceiverAgentID uint
|
|
|
|
ReturnedAt time.Time
|
2023-12-16 07:20:01 +00:00
|
|
|
}
|