niki/entity/piggy_bank.go

14 lines
219 B
Go
Raw Normal View History

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