2024-08-09 14:56:38 +00:00
|
|
|
package adapter
|
|
|
|
|
|
|
|
type CtxOpts map[string]string
|
|
|
|
|
|
|
|
type Context interface {
|
|
|
|
New(opts CtxOpts) Context
|
|
|
|
GetTableName() string
|
|
|
|
GetFieldName() string
|
2024-08-09 19:14:28 +00:00
|
|
|
GetColumnName(key string) string
|
2024-08-09 14:56:38 +00:00
|
|
|
NormalizeValue(interface{}) interface{}
|
|
|
|
}
|