package base

type BaseInterface interface {
	TableName()string
	GetRowById(itemId int) (interface{},error)
}
