|
@ -195,7 +195,7 @@ func (m *GetStringResponse) GetValue() string { |
|
|
|
|
|
|
|
|
// 设置key响应结构
|
|
|
// 设置key响应结构
|
|
|
type SetResponse struct { |
|
|
type SetResponse struct { |
|
|
Ret *uint32 `protobuf:"varint,1,opt,name=ret" json:"ret,omitempty"` |
|
|
|
|
|
|
|
|
Ret *uint64 `protobuf:"varint,1,opt,name=ret" json:"ret,omitempty"` |
|
|
XXX_unrecognized []byte `json:"-"` |
|
|
XXX_unrecognized []byte `json:"-"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -203,7 +203,7 @@ func (m *SetResponse) Reset() { *m = SetResponse{} } |
|
|
func (m *SetResponse) String() string { return proto.CompactTextString(m) } |
|
|
func (m *SetResponse) String() string { return proto.CompactTextString(m) } |
|
|
func (*SetResponse) ProtoMessage() {} |
|
|
func (*SetResponse) ProtoMessage() {} |
|
|
|
|
|
|
|
|
func (m *SetResponse) GetRet() uint32 { |
|
|
|
|
|
|
|
|
func (m *SetResponse) GetRet() uint64 { |
|
|
if m != nil && m.Ret != nil { |
|
|
if m != nil && m.Ret != nil { |
|
|
return *m.Ret |
|
|
return *m.Ret |
|
|
} |
|
|
} |
|
@ -212,7 +212,7 @@ func (m *SetResponse) GetRet() uint32 { |
|
|
|
|
|
|
|
|
// 删除key响应结构
|
|
|
// 删除key响应结构
|
|
|
type DelResponse struct { |
|
|
type DelResponse struct { |
|
|
Ret *uint32 `protobuf:"varint,1,opt,name=ret" json:"ret,omitempty"` |
|
|
|
|
|
|
|
|
Ret *uint64 `protobuf:"varint,1,opt,name=ret" json:"ret,omitempty"` |
|
|
XXX_unrecognized []byte `json:"-"` |
|
|
XXX_unrecognized []byte `json:"-"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -220,7 +220,7 @@ func (m *DelResponse) Reset() { *m = DelResponse{} } |
|
|
func (m *DelResponse) String() string { return proto.CompactTextString(m) } |
|
|
func (m *DelResponse) String() string { return proto.CompactTextString(m) } |
|
|
func (*DelResponse) ProtoMessage() {} |
|
|
func (*DelResponse) ProtoMessage() {} |
|
|
|
|
|
|
|
|
func (m *DelResponse) GetRet() uint32 { |
|
|
|
|
|
|
|
|
func (m *DelResponse) GetRet() uint64 { |
|
|
if m != nil && m.Ret != nil { |
|
|
if m != nil && m.Ret != nil { |
|
|
return *m.Ret |
|
|
return *m.Ret |
|
|
} |
|
|
} |
|
|