niki/entity/kind_box.go

14 lines
217 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
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 uint
StatusChangedAt *time.Time
}