forked from ebhomengo/niki
14 lines
217 B
Go
14 lines
217 B
Go
|
package entity
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
type KindBox struct {
|
||
|
ID uint
|
||
|
TotalAmount uint
|
||
|
ReceiverId uint
|
||
|
SenderId uint
|
||
|
SerialNumber string
|
||
|
Status uint
|
||
|
StatusChangedAt *time.Time
|
||
|
}
|