niki/entity/kind_box.go

16 lines
330 B
Go
Raw Normal View History

2023-12-16 07:20:01 +00:00
package entity
import "time"
type KindBox struct {
2023-12-16 07:20:01 +00:00
ID uint
KindBoxReqID uint // TODO like database model
BenefactorID uint // TODO need in business entity
2023-12-16 07:20:01 +00:00
TotalAmount uint
ReceiverID uint
2023-12-20 15:39:25 +00:00
SenderID uint
2023-12-16 07:20:01 +00:00
SerialNumber string
Status KindBoxStatus
2023-12-16 07:20:01 +00:00
StatusChangedAt *time.Time
}