|
@@ -98,10 +98,10 @@ type DatasmtRespList struct {
|
|
sizeCache protoimpl.SizeCache
|
|
sizeCache protoimpl.SizeCache
|
|
unknownFields protoimpl.UnknownFields
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
|
- List []*DatasmtList `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"` //检索结果
|
|
|
|
- PageCount int64 `protobuf:"varint,2,opt,name=page_count,json=pageCount,proto3" json:"page_count,omitempty"` //总条数
|
|
|
|
- HotKeys []string `protobuf:"bytes,3,rep,name=hot_keys,json=hotKeys,proto3" json:"hot_keys,omitempty"` //热搜词
|
|
|
|
- FieldIllustrate map[string]string `protobuf:"bytes,4,rep,name=field_illustrate,json=fieldIllustrate,proto3" json:"field_illustrate,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` //包含字段说明
|
|
|
|
|
|
+ List []*DatasmtList `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"` //检索结果
|
|
|
|
+ PageCount int64 `protobuf:"varint,2,opt,name=page_count,json=pageCount,proto3" json:"page_count,omitempty"` //总条数
|
|
|
|
+ HotKeys []string `protobuf:"bytes,3,rep,name=hot_keys,json=hotKeys,proto3" json:"hot_keys,omitempty"` //热搜词
|
|
|
|
+ FieldIllustrate []*Field `protobuf:"bytes,4,rep,name=field_illustrate,json=fieldIllustrate,proto3" json:"field_illustrate,omitempty"` //包含字段说明
|
|
}
|
|
}
|
|
|
|
|
|
func (x *DatasmtRespList) Reset() {
|
|
func (x *DatasmtRespList) Reset() {
|
|
@@ -157,13 +157,76 @@ func (x *DatasmtRespList) GetHotKeys() []string {
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
|
|
|
|
-func (x *DatasmtRespList) GetFieldIllustrate() map[string]string {
|
|
|
|
|
|
+func (x *DatasmtRespList) GetFieldIllustrate() []*Field {
|
|
if x != nil {
|
|
if x != nil {
|
|
return x.FieldIllustrate
|
|
return x.FieldIllustrate
|
|
}
|
|
}
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+type Field struct {
|
|
|
|
+ state protoimpl.MessageState
|
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
|
+
|
|
|
|
+ Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
|
|
|
|
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
|
+ Describe string `protobuf:"bytes,3,opt,name=describe,proto3" json:"describe,omitempty"`
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Field) Reset() {
|
|
|
|
+ *x = Field{}
|
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
|
+ mi := &file_publicservice_proto_msgTypes[2]
|
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Field) String() string {
|
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (*Field) ProtoMessage() {}
|
|
|
|
+
|
|
|
|
+func (x *Field) ProtoReflect() protoreflect.Message {
|
|
|
|
+ mi := &file_publicservice_proto_msgTypes[2]
|
|
|
|
+ if protoimpl.UnsafeEnabled && x != nil {
|
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
+ if ms.LoadMessageInfo() == nil {
|
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
|
+ }
|
|
|
|
+ return ms
|
|
|
|
+ }
|
|
|
|
+ return mi.MessageOf(x)
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+// Deprecated: Use Field.ProtoReflect.Descriptor instead.
|
|
|
|
+func (*Field) Descriptor() ([]byte, []int) {
|
|
|
|
+ return file_publicservice_proto_rawDescGZIP(), []int{2}
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Field) GetCode() string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Code
|
|
|
|
+ }
|
|
|
|
+ return ""
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Field) GetName() string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Name
|
|
|
|
+ }
|
|
|
|
+ return ""
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+func (x *Field) GetDescribe() string {
|
|
|
|
+ if x != nil {
|
|
|
|
+ return x.Describe
|
|
|
|
+ }
|
|
|
|
+ return ""
|
|
|
|
+}
|
|
|
|
+
|
|
type DatasmtList struct {
|
|
type DatasmtList struct {
|
|
state protoimpl.MessageState
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
sizeCache protoimpl.SizeCache
|
|
@@ -179,7 +242,7 @@ type DatasmtList struct {
|
|
func (x *DatasmtList) Reset() {
|
|
func (x *DatasmtList) Reset() {
|
|
*x = DatasmtList{}
|
|
*x = DatasmtList{}
|
|
if protoimpl.UnsafeEnabled {
|
|
if protoimpl.UnsafeEnabled {
|
|
- mi := &file_publicservice_proto_msgTypes[2]
|
|
|
|
|
|
+ mi := &file_publicservice_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
@@ -192,7 +255,7 @@ func (x *DatasmtList) String() string {
|
|
func (*DatasmtList) ProtoMessage() {}
|
|
func (*DatasmtList) ProtoMessage() {}
|
|
|
|
|
|
func (x *DatasmtList) ProtoReflect() protoreflect.Message {
|
|
func (x *DatasmtList) ProtoReflect() protoreflect.Message {
|
|
- mi := &file_publicservice_proto_msgTypes[2]
|
|
|
|
|
|
+ mi := &file_publicservice_proto_msgTypes[3]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -205,7 +268,7 @@ func (x *DatasmtList) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use DatasmtList.ProtoReflect.Descriptor instead.
|
|
// Deprecated: Use DatasmtList.ProtoReflect.Descriptor instead.
|
|
func (*DatasmtList) Descriptor() ([]byte, []int) {
|
|
func (*DatasmtList) Descriptor() ([]byte, []int) {
|
|
- return file_publicservice_proto_rawDescGZIP(), []int{2}
|
|
|
|
|
|
+ return file_publicservice_proto_rawDescGZIP(), []int{3}
|
|
}
|
|
}
|
|
|
|
|
|
func (x *DatasmtList) GetId() string {
|
|
func (x *DatasmtList) GetId() string {
|
|
@@ -254,7 +317,7 @@ type DatasmtReqDetail struct {
|
|
func (x *DatasmtReqDetail) Reset() {
|
|
func (x *DatasmtReqDetail) Reset() {
|
|
*x = DatasmtReqDetail{}
|
|
*x = DatasmtReqDetail{}
|
|
if protoimpl.UnsafeEnabled {
|
|
if protoimpl.UnsafeEnabled {
|
|
- mi := &file_publicservice_proto_msgTypes[3]
|
|
|
|
|
|
+ mi := &file_publicservice_proto_msgTypes[4]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
@@ -267,7 +330,7 @@ func (x *DatasmtReqDetail) String() string {
|
|
func (*DatasmtReqDetail) ProtoMessage() {}
|
|
func (*DatasmtReqDetail) ProtoMessage() {}
|
|
|
|
|
|
func (x *DatasmtReqDetail) ProtoReflect() protoreflect.Message {
|
|
func (x *DatasmtReqDetail) ProtoReflect() protoreflect.Message {
|
|
- mi := &file_publicservice_proto_msgTypes[3]
|
|
|
|
|
|
+ mi := &file_publicservice_proto_msgTypes[4]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -280,7 +343,7 @@ func (x *DatasmtReqDetail) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use DatasmtReqDetail.ProtoReflect.Descriptor instead.
|
|
// Deprecated: Use DatasmtReqDetail.ProtoReflect.Descriptor instead.
|
|
func (*DatasmtReqDetail) Descriptor() ([]byte, []int) {
|
|
func (*DatasmtReqDetail) Descriptor() ([]byte, []int) {
|
|
- return file_publicservice_proto_rawDescGZIP(), []int{3}
|
|
|
|
|
|
+ return file_publicservice_proto_rawDescGZIP(), []int{4}
|
|
}
|
|
}
|
|
|
|
|
|
func (x *DatasmtReqDetail) GetId() string {
|
|
func (x *DatasmtReqDetail) GetId() string {
|
|
@@ -299,14 +362,14 @@ type DatasmtRespDetail struct {
|
|
DataType string `protobuf:"bytes,2,opt,name=data_type,json=dataType,proto3" json:"data_type,omitempty"` //数据类型
|
|
DataType string `protobuf:"bytes,2,opt,name=data_type,json=dataType,proto3" json:"data_type,omitempty"` //数据类型
|
|
Format string `protobuf:"bytes,3,opt,name=format,proto3" json:"format,omitempty"` //数据格式
|
|
Format string `protobuf:"bytes,3,opt,name=format,proto3" json:"format,omitempty"` //数据格式
|
|
ClearStatus string `protobuf:"bytes,4,opt,name=clear_status,json=clearStatus,proto3" json:"clear_status,omitempty"` //清洗状态
|
|
ClearStatus string `protobuf:"bytes,4,opt,name=clear_status,json=clearStatus,proto3" json:"clear_status,omitempty"` //清洗状态
|
|
- FieldIllustrate string `protobuf:"bytes,5,opt,name=field_illustrate,json=fieldIllustrate,proto3" json:"field_illustrate,omitempty"` //包含字段说明
|
|
|
|
|
|
+ FieldIllustrate *Field `protobuf:"bytes,5,opt,name=field_illustrate,json=fieldIllustrate,proto3" json:"field_illustrate,omitempty"` //包含字段说明
|
|
DataExample string `protobuf:"bytes,6,opt,name=data_example,json=dataExample,proto3" json:"data_example,omitempty"` //数据示例图片路径
|
|
DataExample string `protobuf:"bytes,6,opt,name=data_example,json=dataExample,proto3" json:"data_example,omitempty"` //数据示例图片路径
|
|
}
|
|
}
|
|
|
|
|
|
func (x *DatasmtRespDetail) Reset() {
|
|
func (x *DatasmtRespDetail) Reset() {
|
|
*x = DatasmtRespDetail{}
|
|
*x = DatasmtRespDetail{}
|
|
if protoimpl.UnsafeEnabled {
|
|
if protoimpl.UnsafeEnabled {
|
|
- mi := &file_publicservice_proto_msgTypes[4]
|
|
|
|
|
|
+ mi := &file_publicservice_proto_msgTypes[5]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
@@ -319,7 +382,7 @@ func (x *DatasmtRespDetail) String() string {
|
|
func (*DatasmtRespDetail) ProtoMessage() {}
|
|
func (*DatasmtRespDetail) ProtoMessage() {}
|
|
|
|
|
|
func (x *DatasmtRespDetail) ProtoReflect() protoreflect.Message {
|
|
func (x *DatasmtRespDetail) ProtoReflect() protoreflect.Message {
|
|
- mi := &file_publicservice_proto_msgTypes[4]
|
|
|
|
|
|
+ mi := &file_publicservice_proto_msgTypes[5]
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -332,7 +395,7 @@ func (x *DatasmtRespDetail) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use DatasmtRespDetail.ProtoReflect.Descriptor instead.
|
|
// Deprecated: Use DatasmtRespDetail.ProtoReflect.Descriptor instead.
|
|
func (*DatasmtRespDetail) Descriptor() ([]byte, []int) {
|
|
func (*DatasmtRespDetail) Descriptor() ([]byte, []int) {
|
|
- return file_publicservice_proto_rawDescGZIP(), []int{4}
|
|
|
|
|
|
+ return file_publicservice_proto_rawDescGZIP(), []int{5}
|
|
}
|
|
}
|
|
|
|
|
|
func (x *DatasmtRespDetail) GetName() string {
|
|
func (x *DatasmtRespDetail) GetName() string {
|
|
@@ -363,11 +426,11 @@ func (x *DatasmtRespDetail) GetClearStatus() string {
|
|
return ""
|
|
return ""
|
|
}
|
|
}
|
|
|
|
|
|
-func (x *DatasmtRespDetail) GetFieldIllustrate() string {
|
|
|
|
|
|
+func (x *DatasmtRespDetail) GetFieldIllustrate() *Field {
|
|
if x != nil {
|
|
if x != nil {
|
|
return x.FieldIllustrate
|
|
return x.FieldIllustrate
|
|
}
|
|
}
|
|
- return ""
|
|
|
|
|
|
+ return nil
|
|
}
|
|
}
|
|
|
|
|
|
func (x *DatasmtRespDetail) GetDataExample() string {
|
|
func (x *DatasmtRespDetail) GetDataExample() string {
|
|
@@ -390,54 +453,53 @@ var file_publicservice_proto_rawDesc = []byte{
|
|
0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65,
|
|
0x5f, 0x6e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65,
|
|
0x4e, 0x75, 0x6d, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65,
|
|
0x4e, 0x75, 0x6d, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65,
|
|
0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65,
|
|
0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65,
|
|
- 0x22, 0x83, 0x02, 0x0a, 0x0f, 0x44, 0x61, 0x74, 0x61, 0x73, 0x6d, 0x74, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
|
|
+ 0x22, 0xa0, 0x01, 0x0a, 0x0f, 0x44, 0x61, 0x74, 0x61, 0x73, 0x6d, 0x74, 0x52, 0x65, 0x73, 0x70,
|
|
0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
|
|
0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03,
|
|
0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x73, 0x6d, 0x74, 0x4c, 0x69, 0x73, 0x74,
|
|
0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x73, 0x6d, 0x74, 0x4c, 0x69, 0x73, 0x74,
|
|
0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63,
|
|
0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63,
|
|
0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65,
|
|
0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x61, 0x67, 0x65,
|
|
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x68, 0x6f, 0x74, 0x5f, 0x6b, 0x65, 0x79,
|
|
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x19, 0x0a, 0x08, 0x68, 0x6f, 0x74, 0x5f, 0x6b, 0x65, 0x79,
|
|
0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x68, 0x6f, 0x74, 0x4b, 0x65, 0x79, 0x73,
|
|
0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x68, 0x6f, 0x74, 0x4b, 0x65, 0x79, 0x73,
|
|
- 0x12, 0x50, 0x0a, 0x10, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x69, 0x6c, 0x6c, 0x75, 0x73, 0x74,
|
|
|
|
- 0x72, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x44, 0x61, 0x74,
|
|
|
|
- 0x61, 0x73, 0x6d, 0x74, 0x52, 0x65, 0x73, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x2e, 0x46, 0x69, 0x65,
|
|
|
|
- 0x6c, 0x64, 0x49, 0x6c, 0x6c, 0x75, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72,
|
|
|
|
- 0x79, 0x52, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x49, 0x6c, 0x6c, 0x75, 0x73, 0x74, 0x72, 0x61,
|
|
|
|
- 0x74, 0x65, 0x1a, 0x42, 0x0a, 0x14, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x49, 0x6c, 0x6c, 0x75, 0x73,
|
|
|
|
- 0x74, 0x72, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
|
|
|
|
- 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
|
|
|
|
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c,
|
|
|
|
- 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x89, 0x01, 0x0a, 0x0b, 0x44, 0x61, 0x74, 0x61, 0x73,
|
|
|
|
- 0x6d, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
|
|
- 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
|
|
|
|
|
|
+ 0x12, 0x31, 0x0a, 0x10, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x69, 0x6c, 0x6c, 0x75, 0x73, 0x74,
|
|
|
|
+ 0x72, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x46, 0x69, 0x65,
|
|
|
|
+ 0x6c, 0x64, 0x52, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x49, 0x6c, 0x6c, 0x75, 0x73, 0x74, 0x72,
|
|
|
|
+ 0x61, 0x74, 0x65, 0x22, 0x4b, 0x0a, 0x05, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x12, 0x0a, 0x04,
|
|
|
|
+ 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
|
|
|
|
+ 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
|
|
|
|
+ 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
|
|
|
|
+ 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
|
|
|
|
+ 0x22, 0x89, 0x01, 0x0a, 0x0b, 0x44, 0x61, 0x74, 0x61, 0x73, 0x6d, 0x74, 0x4c, 0x69, 0x73, 0x74,
|
|
|
|
+ 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
|
|
|
|
+ 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
|
|
|
|
+ 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70,
|
|
|
|
+ 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70,
|
|
|
|
+ 0x65, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
|
|
|
|
+ 0x09, 0x52, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6c, 0x65,
|
|
|
|
+ 0x61, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
|
+ 0x0b, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x22, 0x0a, 0x10,
|
|
|
|
+ 0x44, 0x61, 0x74, 0x61, 0x73, 0x6d, 0x74, 0x52, 0x65, 0x71, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
|
|
|
|
+ 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64,
|
|
|
|
+ 0x22, 0xd5, 0x01, 0x0a, 0x11, 0x44, 0x61, 0x74, 0x61, 0x73, 0x6d, 0x74, 0x52, 0x65, 0x73, 0x70,
|
|
|
|
+ 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61,
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61,
|
|
- 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64,
|
|
|
|
|
|
+ 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x64,
|
|
0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61,
|
|
0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61,
|
|
- 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12,
|
|
|
|
|
|
+ 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12,
|
|
0x21, 0x0a, 0x0c, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
|
|
0x21, 0x0a, 0x0c, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
|
|
- 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x53, 0x74, 0x61, 0x74,
|
|
|
|
- 0x75, 0x73, 0x22, 0x22, 0x0a, 0x10, 0x44, 0x61, 0x74, 0x61, 0x73, 0x6d, 0x74, 0x52, 0x65, 0x71,
|
|
|
|
- 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
|
|
|
|
- 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0xcd, 0x01, 0x0a, 0x11, 0x44, 0x61, 0x74, 0x61, 0x73,
|
|
|
|
- 0x6d, 0x74, 0x52, 0x65, 0x73, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x12, 0x0a, 0x04,
|
|
|
|
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
|
|
|
|
- 0x12, 0x1b, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
|
|
|
|
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a,
|
|
|
|
- 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66,
|
|
|
|
- 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x5f, 0x73,
|
|
|
|
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6c, 0x65,
|
|
|
|
- 0x61, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x29, 0x0a, 0x10, 0x66, 0x69, 0x65, 0x6c,
|
|
|
|
- 0x64, 0x5f, 0x69, 0x6c, 0x6c, 0x75, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01,
|
|
|
|
- 0x28, 0x09, 0x52, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x49, 0x6c, 0x6c, 0x75, 0x73, 0x74, 0x72,
|
|
|
|
- 0x61, 0x74, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78, 0x61, 0x6d,
|
|
|
|
- 0x70, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x45,
|
|
|
|
- 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x32, 0x65, 0x0a, 0x07, 0x64, 0x61, 0x74, 0x61, 0x73, 0x6d,
|
|
|
|
- 0x74, 0x12, 0x29, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x44, 0x61, 0x74, 0x61,
|
|
|
|
- 0x73, 0x6d, 0x74, 0x52, 0x65, 0x71, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x10, 0x2e, 0x44, 0x61, 0x74,
|
|
|
|
- 0x61, 0x73, 0x6d, 0x74, 0x52, 0x65, 0x73, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2f, 0x0a, 0x06,
|
|
|
|
- 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x11, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x73, 0x6d, 0x74,
|
|
|
|
- 0x52, 0x65, 0x71, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x1a, 0x12, 0x2e, 0x44, 0x61, 0x74, 0x61,
|
|
|
|
- 0x73, 0x6d, 0x74, 0x52, 0x65, 0x73, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x42, 0x06, 0x5a,
|
|
|
|
- 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
|
|
|
+ 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x53, 0x74, 0x61, 0x74,
|
|
|
|
+ 0x75, 0x73, 0x12, 0x31, 0x0a, 0x10, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x69, 0x6c, 0x6c, 0x75,
|
|
|
|
+ 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x46,
|
|
|
|
+ 0x69, 0x65, 0x6c, 0x64, 0x52, 0x0f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x49, 0x6c, 0x6c, 0x75, 0x73,
|
|
|
|
+ 0x74, 0x72, 0x61, 0x74, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x78,
|
|
|
|
+ 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x61, 0x74,
|
|
|
|
+ 0x61, 0x45, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x32, 0x65, 0x0a, 0x07, 0x64, 0x61, 0x74, 0x61,
|
|
|
|
+ 0x73, 0x6d, 0x74, 0x12, 0x29, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x44, 0x61,
|
|
|
|
+ 0x74, 0x61, 0x73, 0x6d, 0x74, 0x52, 0x65, 0x71, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x10, 0x2e, 0x44,
|
|
|
|
+ 0x61, 0x74, 0x61, 0x73, 0x6d, 0x74, 0x52, 0x65, 0x73, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2f,
|
|
|
|
+ 0x0a, 0x06, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x11, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x73,
|
|
|
|
+ 0x6d, 0x74, 0x52, 0x65, 0x71, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x1a, 0x12, 0x2e, 0x44, 0x61,
|
|
|
|
+ 0x74, 0x61, 0x73, 0x6d, 0x74, 0x52, 0x65, 0x73, 0x70, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x42,
|
|
|
|
+ 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
}
|
|
}
|
|
|
|
|
|
var (
|
|
var (
|
|
@@ -456,23 +518,24 @@ var file_publicservice_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
|
|
var file_publicservice_proto_goTypes = []interface{}{
|
|
var file_publicservice_proto_goTypes = []interface{}{
|
|
(*DatasmtReqList)(nil), // 0: DatasmtReqList
|
|
(*DatasmtReqList)(nil), // 0: DatasmtReqList
|
|
(*DatasmtRespList)(nil), // 1: DatasmtRespList
|
|
(*DatasmtRespList)(nil), // 1: DatasmtRespList
|
|
- (*DatasmtList)(nil), // 2: DatasmtList
|
|
|
|
- (*DatasmtReqDetail)(nil), // 3: DatasmtReqDetail
|
|
|
|
- (*DatasmtRespDetail)(nil), // 4: DatasmtRespDetail
|
|
|
|
- nil, // 5: DatasmtRespList.FieldIllustrateEntry
|
|
|
|
|
|
+ (*Field)(nil), // 2: Field
|
|
|
|
+ (*DatasmtList)(nil), // 3: DatasmtList
|
|
|
|
+ (*DatasmtReqDetail)(nil), // 4: DatasmtReqDetail
|
|
|
|
+ (*DatasmtRespDetail)(nil), // 5: DatasmtRespDetail
|
|
}
|
|
}
|
|
var file_publicservice_proto_depIdxs = []int32{
|
|
var file_publicservice_proto_depIdxs = []int32{
|
|
- 2, // 0: DatasmtRespList.list:type_name -> DatasmtList
|
|
|
|
- 5, // 1: DatasmtRespList.field_illustrate:type_name -> DatasmtRespList.FieldIllustrateEntry
|
|
|
|
- 0, // 2: datasmt.List:input_type -> DatasmtReqList
|
|
|
|
- 3, // 3: datasmt.Detail:input_type -> DatasmtReqDetail
|
|
|
|
- 1, // 4: datasmt.List:output_type -> DatasmtRespList
|
|
|
|
- 4, // 5: datasmt.Detail:output_type -> DatasmtRespDetail
|
|
|
|
- 4, // [4:6] is the sub-list for method output_type
|
|
|
|
- 2, // [2:4] is the sub-list for method input_type
|
|
|
|
- 2, // [2:2] is the sub-list for extension type_name
|
|
|
|
- 2, // [2:2] is the sub-list for extension extendee
|
|
|
|
- 0, // [0:2] is the sub-list for field type_name
|
|
|
|
|
|
+ 3, // 0: DatasmtRespList.list:type_name -> DatasmtList
|
|
|
|
+ 2, // 1: DatasmtRespList.field_illustrate:type_name -> Field
|
|
|
|
+ 2, // 2: DatasmtRespDetail.field_illustrate:type_name -> Field
|
|
|
|
+ 0, // 3: datasmt.List:input_type -> DatasmtReqList
|
|
|
|
+ 4, // 4: datasmt.Detail:input_type -> DatasmtReqDetail
|
|
|
|
+ 1, // 5: datasmt.List:output_type -> DatasmtRespList
|
|
|
|
+ 5, // 6: datasmt.Detail:output_type -> DatasmtRespDetail
|
|
|
|
+ 5, // [5:7] is the sub-list for method output_type
|
|
|
|
+ 3, // [3:5] is the sub-list for method input_type
|
|
|
|
+ 3, // [3:3] is the sub-list for extension type_name
|
|
|
|
+ 3, // [3:3] is the sub-list for extension extendee
|
|
|
|
+ 0, // [0:3] is the sub-list for field type_name
|
|
}
|
|
}
|
|
|
|
|
|
func init() { file_publicservice_proto_init() }
|
|
func init() { file_publicservice_proto_init() }
|
|
@@ -506,7 +569,7 @@ func file_publicservice_proto_init() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
file_publicservice_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
file_publicservice_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
- switch v := v.(*DatasmtList); i {
|
|
|
|
|
|
+ switch v := v.(*Field); i {
|
|
case 0:
|
|
case 0:
|
|
return &v.state
|
|
return &v.state
|
|
case 1:
|
|
case 1:
|
|
@@ -518,7 +581,7 @@ func file_publicservice_proto_init() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
file_publicservice_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
|
file_publicservice_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
|
|
- switch v := v.(*DatasmtReqDetail); i {
|
|
|
|
|
|
+ switch v := v.(*DatasmtList); i {
|
|
case 0:
|
|
case 0:
|
|
return &v.state
|
|
return &v.state
|
|
case 1:
|
|
case 1:
|
|
@@ -530,6 +593,18 @@ func file_publicservice_proto_init() {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
file_publicservice_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
|
file_publicservice_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
+ switch v := v.(*DatasmtReqDetail); i {
|
|
|
|
+ case 0:
|
|
|
|
+ return &v.state
|
|
|
|
+ case 1:
|
|
|
|
+ return &v.sizeCache
|
|
|
|
+ case 2:
|
|
|
|
+ return &v.unknownFields
|
|
|
|
+ default:
|
|
|
|
+ return nil
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ file_publicservice_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
|
|
switch v := v.(*DatasmtRespDetail); i {
|
|
switch v := v.(*DatasmtRespDetail); i {
|
|
case 0:
|
|
case 0:
|
|
return &v.state
|
|
return &v.state
|