mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-27 09:56:35 +08:00
feat: dbms新增支持工单流程审批
This commit is contained in:
@@ -1,10 +1,14 @@
|
||||
package vo
|
||||
|
||||
import "time"
|
||||
import (
|
||||
tagentity "mayfly-go/internal/tag/domain/entity"
|
||||
"time"
|
||||
)
|
||||
|
||||
type Redis struct {
|
||||
tagentity.ResourceTags
|
||||
Id *int64 `json:"id"`
|
||||
Code *string `json:"code"`
|
||||
Code string `json:"code"`
|
||||
Name *string `json:"name"`
|
||||
Host *string `json:"host"`
|
||||
Db string `json:"db"`
|
||||
@@ -19,6 +23,10 @@ type Redis struct {
|
||||
ModifierId *int64 `json:"modifierId"`
|
||||
}
|
||||
|
||||
func (r *Redis) GetCode() string {
|
||||
return r.Code
|
||||
}
|
||||
|
||||
type Keys struct {
|
||||
Cursor map[string]uint64 `json:"cursor"`
|
||||
Keys []string `json:"keys"`
|
||||
|
||||
Reference in New Issue
Block a user