增加删除配置接口
This commit is contained in:
@ -20,3 +20,16 @@ type CreateOrUpdateConfig struct {
|
||||
OperateUserID string `json:"operate_user_id"` // 操作人ID
|
||||
Description string `json:"description"` // 配置描述
|
||||
}
|
||||
|
||||
// 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"` // 操作描述
|
||||
}
|
||||
|
Reference in New Issue
Block a user