|
package entity
|
|
|
|
import "time"
|
|
|
|
type KindBox struct {
|
|
ID uint
|
|
KindBoxReqID uint // TODO like database model
|
|
BenefactorID uint // TODO need in business entity
|
|
TotalAmount uint
|
|
ReceiverID uint
|
|
SenderID uint
|
|
SerialNumber string
|
|
Status KindBoxStatus
|
|
StatusChangedAt *time.Time
|
|
}
|