12 lines
447 B
Go
12 lines
447 B
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
// System is the golang structure for table system.
|
|
type System struct {
|
|
Key string `json:"key" orm:"key" description:""` //
|
|
Value string `json:"value" orm:"value" description:""` //
|
|
}
|