7 lines
74 B
Go
Raw Permalink Normal View History

2025-04-30 15:46:14 +08:00
package model
type IModel interface {
TableName() string
GetId() int
}