service/dbstruct/app_config.go

12 lines
521 B
Go

package dbstruct
type AppConfig struct {
Id *int64 `json:"id" bson:"_id"` // 配置id
ConfigKey *string `json:"config_key" bson:"config_key"` // 配置键
ConfigValue *[]string `json:"config_value" bson:"config_value"` // 配置值
Ct *int64 `json:"ct" bson:"ct"` // 创建时间
Ut *int64 `json:"ut" bson:"ut"` // 更新时间
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
}