17 lines
488 B
Go
17 lines
488 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
// System is the golang structure of table system for DAO operations like Where/Data.
|
|
type System struct {
|
|
g.Meta `orm:"table:system, do:true"`
|
|
Key interface{} //
|
|
Value interface{} //
|
|
}
|