forked from ebhomengo/niki
1
0
Fork 0
niki/entity/piggy_bank.go

12 lines
175 B
Go
Raw Permalink Normal View History

2023-12-16 07:20:01 +00:00
package entity
import "time"
type PiggyBank struct {
ID uint
TotalAmount uint
SerialNumber string
Status uint
StatusChangedAt *time.Time
}