9 lines
109 B
Go
9 lines
109 B
Go
package domain
|
|
|
|
type BaseRepository interface {
|
|
NewId(fields ...string) string
|
|
CountAll() (int, error)
|
|
|
|
}
|
|
|