mirror of
https://gitee.com/gokins/gokins.git
synced 2024-12-03 11:47:46 +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
|
|
}
|