niki/entity/piggy_bank/model/piggy_bank.go

14 lines
195 B
Go
Raw Normal View History

2023-12-15 08:24:06 +00:00
package entityppigybank
import "time"
type (
PiggyBank struct {
ID uint
TotalAmount uint
SerialNumber string
Status uint
StatusChangedAt *time.Time
}
)