|
@@ -698,6 +698,156 @@ func (x *Resp) GetData() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
+type DistributeClueReq struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ ClueCount string `protobuf:"bytes,1,opt,name=clueCount,proto3" json:"clueCount,omitempty"`
|
|
|
+ ClueIdList []int64 `protobuf:"varint,2,rep,packed,name=clueIdList,proto3" json:"clueIdList,omitempty"`
|
|
|
+ Datas []*DistributeDatas `protobuf:"bytes,3,rep,name=datas,proto3" json:"datas,omitempty"`
|
|
|
+ PositionId int64 `protobuf:"varint,4,opt,name=positionId,proto3" json:"positionId,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeClueReq) Reset() {
|
|
|
+ *x = DistributeClueReq{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_biService_proto_msgTypes[10]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeClueReq) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*DistributeClueReq) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *DistributeClueReq) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_biService_proto_msgTypes[10]
|
|
|
+ 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 DistributeClueReq.ProtoReflect.Descriptor instead.
|
|
|
+func (*DistributeClueReq) Descriptor() ([]byte, []int) {
|
|
|
+ return file_biService_proto_rawDescGZIP(), []int{10}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeClueReq) GetClueCount() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.ClueCount
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeClueReq) GetClueIdList() []int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.ClueIdList
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeClueReq) GetDatas() []*DistributeDatas {
|
|
|
+ if x != nil {
|
|
|
+ return x.Datas
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeClueReq) GetPositionId() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.PositionId
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+type DistributeDatas struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
|
+ PositionId int64 `protobuf:"varint,2,opt,name=positionId,proto3" json:"positionId,omitempty"`
|
|
|
+ TotalCount string `protobuf:"bytes,3,opt,name=totalCount,proto3" json:"totalCount,omitempty"`
|
|
|
+ UncompletedCount string `protobuf:"bytes,4,opt,name=uncompletedCount,proto3" json:"uncompletedCount,omitempty"`
|
|
|
+ DistributedCount string `protobuf:"bytes,5,opt,name=distributedCount,proto3" json:"distributedCount,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeDatas) Reset() {
|
|
|
+ *x = DistributeDatas{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_biService_proto_msgTypes[11]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeDatas) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*DistributeDatas) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *DistributeDatas) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_biService_proto_msgTypes[11]
|
|
|
+ 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 DistributeDatas.ProtoReflect.Descriptor instead.
|
|
|
+func (*DistributeDatas) Descriptor() ([]byte, []int) {
|
|
|
+ return file_biService_proto_rawDescGZIP(), []int{11}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeDatas) GetName() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Name
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeDatas) GetPositionId() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.PositionId
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeDatas) GetTotalCount() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.TotalCount
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeDatas) GetUncompletedCount() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.UncompletedCount
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *DistributeDatas) GetDistributedCount() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.DistributedCount
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
var File_biService_proto protoreflect.FileDescriptor
|
|
|
|
|
|
var file_biService_proto_rawDesc = []byte{
|
|
@@ -767,7 +917,7 @@ var file_biService_proto_rawDesc = []byte{
|
|
|
0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
|
|
|
0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12,
|
|
|
0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61,
|
|
|
- 0x74, 0x61, 0x22, 0x43, 0x0a, 0x0b, 0x64, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65,
|
|
|
+ 0x74, 0x61, 0x22, 0x43, 0x0a, 0x0b, 0x44, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65,
|
|
|
0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18,
|
|
|
0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49,
|
|
|
0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
|
|
@@ -781,22 +931,47 @@ var file_biService_proto_rawDesc = []byte{
|
|
|
0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
|
|
|
0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12, 0x0a,
|
|
|
0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74,
|
|
|
- 0x61, 0x32, 0xdd, 0x01, 0x0a, 0x09, 0x42, 0x69, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12,
|
|
|
- 0x30, 0x0a, 0x0b, 0x6d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x0f,
|
|
|
- 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a,
|
|
|
- 0x10, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73,
|
|
|
- 0x70, 0x12, 0x2d, 0x0a, 0x0a, 0x61, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12,
|
|
|
- 0x0e, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a,
|
|
|
- 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70,
|
|
|
- 0x12, 0x2b, 0x0a, 0x09, 0x67, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12, 0x0e, 0x2e,
|
|
|
- 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e,
|
|
|
- 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x29, 0x0a,
|
|
|
- 0x08, 0x64, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x12, 0x0c, 0x2e, 0x64, 0x72, 0x61, 0x77,
|
|
|
- 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f,
|
|
|
- 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x17, 0x0a, 0x04, 0x43, 0x61, 0x6c, 0x6c,
|
|
|
- 0x12, 0x08, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x05, 0x2e, 0x52, 0x65, 0x73,
|
|
|
- 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
|
|
|
- 0x33,
|
|
|
+ 0x61, 0x22, 0x99, 0x01, 0x0a, 0x11, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
|
|
|
+ 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43,
|
|
|
+ 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6c, 0x75, 0x65,
|
|
|
+ 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c,
|
|
|
+ 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49,
|
|
|
+ 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x18, 0x03,
|
|
|
+ 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
|
|
|
+ 0x65, 0x44, 0x61, 0x74, 0x61, 0x73, 0x52, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x12, 0x1e, 0x0a,
|
|
|
+ 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
|
|
|
+ 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0xbd, 0x01,
|
|
|
+ 0x0a, 0x0f, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61,
|
|
|
+ 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
+ 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
|
|
|
+ 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74,
|
|
|
+ 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f,
|
|
|
+ 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c,
|
|
|
+ 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x6e, 0x63, 0x6f, 0x6d, 0x70, 0x6c,
|
|
|
+ 0x65, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
+ 0x10, 0x75, 0x6e, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e,
|
|
|
+ 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64,
|
|
|
+ 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x64, 0x69, 0x73,
|
|
|
+ 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x32, 0x94, 0x02,
|
|
|
+ 0x0a, 0x09, 0x42, 0x69, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x30, 0x0a, 0x0b, 0x6d,
|
|
|
+ 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x0f, 0x2e, 0x4d, 0x79, 0x44,
|
|
|
+ 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x4d, 0x79,
|
|
|
+ 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a,
|
|
|
+ 0x0a, 0x61, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x0e, 0x2e, 0x41, 0x64,
|
|
|
+ 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64,
|
|
|
+ 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x09,
|
|
|
+ 0x67, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12, 0x0e, 0x2e, 0x41, 0x64, 0x64, 0x50,
|
|
|
+ 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e, 0x47, 0x65, 0x74, 0x49,
|
|
|
+ 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x29, 0x0a, 0x08, 0x64, 0x72, 0x61,
|
|
|
+ 0x77, 0x43, 0x6c, 0x75, 0x65, 0x12, 0x0c, 0x2e, 0x44, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65,
|
|
|
+ 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
|
|
|
+ 0x52, 0x65, 0x73, 0x70, 0x12, 0x17, 0x0a, 0x04, 0x43, 0x61, 0x6c, 0x6c, 0x12, 0x08, 0x2e, 0x43,
|
|
|
+ 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x05, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x35, 0x0a,
|
|
|
+ 0x0e, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x12,
|
|
|
+ 0x12, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65,
|
|
|
+ 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
|
|
|
+ 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72,
|
|
|
+ 0x6f, 0x74, 0x6f, 0x33,
|
|
|
}
|
|
|
|
|
|
var (
|
|
@@ -811,37 +986,42 @@ func file_biService_proto_rawDescGZIP() []byte {
|
|
|
return file_biService_proto_rawDescData
|
|
|
}
|
|
|
|
|
|
-var file_biService_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
|
|
|
+var file_biService_proto_msgTypes = make([]protoimpl.MessageInfo, 12)
|
|
|
var file_biService_proto_goTypes = []interface{}{
|
|
|
- (*MyDataAssetReq)(nil), // 0: MyDataAssetReq
|
|
|
- (*MyDataAssetResp)(nil), // 1: MyDataAssetResp
|
|
|
- (*MyDataAsset)(nil), // 2: MyDataAsset
|
|
|
- (*AddProjectReq)(nil), // 3: AddProjectReq
|
|
|
- (*AddProjectResp)(nil), // 4: AddProjectResp
|
|
|
- (*AddProject)(nil), // 5: AddProject
|
|
|
- (*GetInfoIdResp)(nil), // 6: GetInfoIdResp
|
|
|
- (*DrawClueReq)(nil), // 7: drawClueReq
|
|
|
- (*CallReq)(nil), // 8: CallReq
|
|
|
- (*Resp)(nil), // 9: Resp
|
|
|
+ (*MyDataAssetReq)(nil), // 0: MyDataAssetReq
|
|
|
+ (*MyDataAssetResp)(nil), // 1: MyDataAssetResp
|
|
|
+ (*MyDataAsset)(nil), // 2: MyDataAsset
|
|
|
+ (*AddProjectReq)(nil), // 3: AddProjectReq
|
|
|
+ (*AddProjectResp)(nil), // 4: AddProjectResp
|
|
|
+ (*AddProject)(nil), // 5: AddProject
|
|
|
+ (*GetInfoIdResp)(nil), // 6: GetInfoIdResp
|
|
|
+ (*DrawClueReq)(nil), // 7: DrawClueReq
|
|
|
+ (*CallReq)(nil), // 8: CallReq
|
|
|
+ (*Resp)(nil), // 9: Resp
|
|
|
+ (*DistributeClueReq)(nil), // 10: DistributeClueReq
|
|
|
+ (*DistributeDatas)(nil), // 11: DistributeDatas
|
|
|
}
|
|
|
var file_biService_proto_depIdxs = []int32{
|
|
|
- 2, // 0: MyDataAssetResp.data:type_name -> MyDataAsset
|
|
|
- 5, // 1: AddProjectResp.data:type_name -> AddProject
|
|
|
- 0, // 2: BiService.myDataAsset:input_type -> MyDataAssetReq
|
|
|
- 3, // 3: BiService.addProject:input_type -> AddProjectReq
|
|
|
- 3, // 4: BiService.getInfoId:input_type -> AddProjectReq
|
|
|
- 7, // 5: BiService.drawClue:input_type -> drawClueReq
|
|
|
- 8, // 6: BiService.Call:input_type -> CallReq
|
|
|
- 1, // 7: BiService.myDataAsset:output_type -> MyDataAssetResp
|
|
|
- 4, // 8: BiService.addProject:output_type -> AddProjectResp
|
|
|
- 6, // 9: BiService.getInfoId:output_type -> GetInfoIdResp
|
|
|
- 4, // 10: BiService.drawClue:output_type -> AddProjectResp
|
|
|
- 9, // 11: BiService.Call:output_type -> Resp
|
|
|
- 7, // [7:12] is the sub-list for method output_type
|
|
|
- 2, // [2:7] 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
|
|
|
+ 2, // 0: MyDataAssetResp.data:type_name -> MyDataAsset
|
|
|
+ 5, // 1: AddProjectResp.data:type_name -> AddProject
|
|
|
+ 11, // 2: DistributeClueReq.datas:type_name -> DistributeDatas
|
|
|
+ 0, // 3: BiService.myDataAsset:input_type -> MyDataAssetReq
|
|
|
+ 3, // 4: BiService.addProject:input_type -> AddProjectReq
|
|
|
+ 3, // 5: BiService.getInfoId:input_type -> AddProjectReq
|
|
|
+ 7, // 6: BiService.drawClue:input_type -> DrawClueReq
|
|
|
+ 8, // 7: BiService.Call:input_type -> CallReq
|
|
|
+ 10, // 8: BiService.distributeClue:input_type -> DistributeClueReq
|
|
|
+ 1, // 9: BiService.myDataAsset:output_type -> MyDataAssetResp
|
|
|
+ 4, // 10: BiService.addProject:output_type -> AddProjectResp
|
|
|
+ 6, // 11: BiService.getInfoId:output_type -> GetInfoIdResp
|
|
|
+ 4, // 12: BiService.drawClue:output_type -> AddProjectResp
|
|
|
+ 9, // 13: BiService.Call:output_type -> Resp
|
|
|
+ 4, // 14: BiService.distributeClue:output_type -> AddProjectResp
|
|
|
+ 9, // [9:15] is the sub-list for method output_type
|
|
|
+ 3, // [3:9] 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_biService_proto_init() }
|
|
@@ -970,6 +1150,30 @@ func file_biService_proto_init() {
|
|
|
return nil
|
|
|
}
|
|
|
}
|
|
|
+ file_biService_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*DistributeClueReq); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_biService_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*DistributeDatas); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
type x struct{}
|
|
|
out := protoimpl.TypeBuilder{
|
|
@@ -977,7 +1181,7 @@ func file_biService_proto_init() {
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
RawDescriptor: file_biService_proto_rawDesc,
|
|
|
NumEnums: 0,
|
|
|
- NumMessages: 10,
|
|
|
+ NumMessages: 12,
|
|
|
NumExtensions: 0,
|
|
|
NumServices: 1,
|
|
|
},
|