fin-check-api/db/intf.go

17 lines
231 B
Go
Raw Normal View History

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