2021-11-30 17:50:21 +08:00
|
|
|
// Package form...
|
|
|
|
//
|
|
|
|
// Description : form...
|
|
|
|
//
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
//
|
|
|
|
// Date : 2021-08-09 10:13 下午
|
|
|
|
package form
|
|
|
|
|
|
|
|
// CreateOrUpdateConfig 创建/更新配置表单
|
|
|
|
//
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
//
|
|
|
|
// Date : 10:15 下午 2021/8/9
|
|
|
|
type CreateOrUpdateConfig struct {
|
|
|
|
NamespaceID int64 `json:"namespace_id"` // 命名空间ID
|
|
|
|
Namespace string `json:"namespace"` // 命名空间
|
|
|
|
Key string `json:"key"` // 配置的key
|
|
|
|
Value string `json:"value"` // 配置的值
|
|
|
|
OperateUserID string `json:"operate_user_id"` // 操作人ID
|
|
|
|
Description string `json:"description"` // 配置描述
|
|
|
|
}
|
2021-12-01 14:15:05 +08:00
|
|
|
|
|
|
|
// DeleteConfig 删除配置
|
|
|
|
//
|
|
|
|
// Author : go_developer@163.com<白茶清欢>
|
|
|
|
//
|
|
|
|
// Date : 12:13 下午 2021/12/1
|
|
|
|
type DeleteConfig struct {
|
|
|
|
NamespaceID int64 `json:"namespace_id"` // 命名空间ID
|
|
|
|
Namespace string `json:"namespace"` // 命名空间
|
|
|
|
Key string `json:"key"` // key
|
|
|
|
OperateUserID string `json:"operate_user_id"` // 操作人ID
|
|
|
|
Description string `json:"description"` // 操作描述
|
|
|
|
}
|