mirror of
https://gitee.com/gokins/gokins.git
synced 2024-12-04 04:08:28 +08:00
13 lines
137 B
Go
13 lines
137 B
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type SysParam struct {
|
||
|
Id int `xorm:"pk autoincr"`
|
||
|
Key string
|
||
|
Cont []byte
|
||
|
Times time.Time
|
||
|
}
|