mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 06:58:54 +08:00
19 lines
317 B
Go
19 lines
317 B
Go
package model
|
|
|
|
import (
|
|
"SamWaf/model/baseorm"
|
|
)
|
|
|
|
/*
|
|
*
|
|
系统配置
|
|
*/
|
|
type SystemConfig struct {
|
|
baseorm.BaseOrm
|
|
IsSystem string `json:"is_system"` //是否是系统值
|
|
Item string `json:"item"`
|
|
Value string `json:"value"`
|
|
HashInfo string `json:"hash_info"`
|
|
Remarks string `json:"remarks"` //备注
|
|
}
|