fin-check-api/db/intf.go

16 lines
215 B
Go
Raw Normal View History

package db
type Identifiable interface {
GetID() uint
}
type UserIdentifiable interface {
GetID() uint
GetUserID() uint
SetUserID(userID uint)
}
type PaymentGroup interface {
__internalBelogingToPayment()
}