niki/entity/kind_box.go

17 lines
298 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
2024-01-23 07:39:58 +00:00
KindBoxReqID uint
BenefactorID uint
Type KindBoxType
2023-12-16 07:20:01 +00:00
TotalAmount uint
SerialNumber string
Status KindBoxStatus
2024-01-23 07:39:58 +00:00
SenderID uint
ReceiverID uint
StatusChangedAt time.Time
2023-12-16 07:20:01 +00:00
}