增加删除配置接口

This commit is contained in:
2021-12-01 14:15:05 +08:00
parent 9eb2fccd67
commit bf6d8adc4c
4 changed files with 87 additions and 0 deletions

View File

@ -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"` // 操作描述
}