|
@@ -1,12 +1,13 @@
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
|
// versions:
|
|
|
-// protoc-gen-go v1.28.0
|
|
|
-// protoc v3.19.4
|
|
|
+// protoc-gen-go v1.23.0
|
|
|
+// protoc v3.15.5
|
|
|
// source: bxbase.proto
|
|
|
|
|
|
package bxbase
|
|
|
|
|
|
import (
|
|
|
+ proto "github.com/golang/protobuf/proto"
|
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
|
reflect "reflect"
|
|
@@ -20,6 +21,10 @@ const (
|
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
|
)
|
|
|
|
|
|
+// This is a compile-time assertion that a sufficiently up-to-date version
|
|
|
+// of the legacy proto package is being used.
|
|
|
+const _ = proto.ProtoPackageIsVersion4
|
|
|
+
|
|
|
type AddlabelReq struct {
|
|
|
state protoimpl.MessageState
|
|
|
sizeCache protoimpl.SizeCache
|
|
@@ -1671,6 +1676,372 @@ func (x *DelSearchReq) GetId() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
+type NewestBiddingReq struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ City string `protobuf:"bytes,1,opt,name=city,proto3" json:"city,omitempty"`
|
|
|
+ IsSearch int64 `protobuf:"varint,2,opt,name=isSearch,proto3" json:"isSearch,omitempty"`
|
|
|
+ UserId string `protobuf:"bytes,3,opt,name=userId,proto3" json:"userId,omitempty"`
|
|
|
+ AppId string `protobuf:"bytes,4,opt,name=appId,proto3" json:"appId,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestBiddingReq) Reset() {
|
|
|
+ *x = NewestBiddingReq{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_bxbase_proto_msgTypes[21]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestBiddingReq) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*NewestBiddingReq) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *NewestBiddingReq) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_bxbase_proto_msgTypes[21]
|
|
|
+ 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 NewestBiddingReq.ProtoReflect.Descriptor instead.
|
|
|
+func (*NewestBiddingReq) Descriptor() ([]byte, []int) {
|
|
|
+ return file_bxbase_proto_rawDescGZIP(), []int{21}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestBiddingReq) GetCity() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.City
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestBiddingReq) GetIsSearch() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.IsSearch
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestBiddingReq) GetUserId() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.UserId
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestBiddingReq) GetAppId() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.AppId
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+//首页最新招标信息Resp
|
|
|
+type NewsetBiddingResp struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ ErrCode int64 `protobuf:"varint,1,opt,name=err_code,json=errCode,proto3" json:"err_code,omitempty"`
|
|
|
+ ErrMsg string `protobuf:"bytes,2,opt,name=err_msg,json=errMsg,proto3" json:"err_msg,omitempty"`
|
|
|
+ Data *NewsetBidding `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBiddingResp) Reset() {
|
|
|
+ *x = NewsetBiddingResp{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_bxbase_proto_msgTypes[22]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBiddingResp) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*NewsetBiddingResp) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *NewsetBiddingResp) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_bxbase_proto_msgTypes[22]
|
|
|
+ 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 NewsetBiddingResp.ProtoReflect.Descriptor instead.
|
|
|
+func (*NewsetBiddingResp) Descriptor() ([]byte, []int) {
|
|
|
+ return file_bxbase_proto_rawDescGZIP(), []int{22}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBiddingResp) GetErrCode() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.ErrCode
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBiddingResp) GetErrMsg() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.ErrMsg
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBiddingResp) GetData() *NewsetBidding {
|
|
|
+ if x != nil {
|
|
|
+ return x.Data
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+type NewsetBidding struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ IsVip bool `protobuf:"varint,1,opt,name=isVip,proto3" json:"isVip,omitempty"` //是否超级订阅用户
|
|
|
+ HasSubKeys bool `protobuf:"varint,2,opt,name=hasSubKeys,proto3" json:"hasSubKeys,omitempty"` //是否有订阅词
|
|
|
+ HasHSKeys bool `protobuf:"varint,3,opt,name=hasHSKeys,proto3" json:"hasHSKeys,omitempty"` //是否有搜索历史
|
|
|
+ Count int64 `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"` //数据长度
|
|
|
+ List []*NewestList `protobuf:"bytes,5,rep,name=list,proto3" json:"list,omitempty"` //数据
|
|
|
+ History []string `protobuf:"bytes,6,rep,name=history,proto3" json:"history,omitempty"` //历史数据
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBidding) Reset() {
|
|
|
+ *x = NewsetBidding{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_bxbase_proto_msgTypes[23]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBidding) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*NewsetBidding) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *NewsetBidding) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_bxbase_proto_msgTypes[23]
|
|
|
+ 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 NewsetBidding.ProtoReflect.Descriptor instead.
|
|
|
+func (*NewsetBidding) Descriptor() ([]byte, []int) {
|
|
|
+ return file_bxbase_proto_rawDescGZIP(), []int{23}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBidding) GetIsVip() bool {
|
|
|
+ if x != nil {
|
|
|
+ return x.IsVip
|
|
|
+ }
|
|
|
+ return false
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBidding) GetHasSubKeys() bool {
|
|
|
+ if x != nil {
|
|
|
+ return x.HasSubKeys
|
|
|
+ }
|
|
|
+ return false
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBidding) GetHasHSKeys() bool {
|
|
|
+ if x != nil {
|
|
|
+ return x.HasHSKeys
|
|
|
+ }
|
|
|
+ return false
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBidding) GetCount() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.Count
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBidding) GetList() []*NewestList {
|
|
|
+ if x != nil {
|
|
|
+ return x.List
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewsetBidding) GetHistory() []string {
|
|
|
+ if x != nil {
|
|
|
+ return x.History
|
|
|
+ }
|
|
|
+ return nil
|
|
|
+}
|
|
|
+
|
|
|
+//
|
|
|
+type NewestList struct {
|
|
|
+ state protoimpl.MessageState
|
|
|
+ sizeCache protoimpl.SizeCache
|
|
|
+ unknownFields protoimpl.UnknownFields
|
|
|
+
|
|
|
+ Area string `protobuf:"bytes,1,opt,name=area,proto3" json:"area,omitempty"` //省份
|
|
|
+ City string `protobuf:"bytes,2,opt,name=city,proto3" json:"city,omitempty"` //城市
|
|
|
+ Bidamount int64 `protobuf:"varint,3,opt,name=bidamount,proto3" json:"bidamount,omitempty"` //中标金额
|
|
|
+ Budget int64 `protobuf:"varint,4,opt,name=budget,proto3" json:"budget,omitempty"` //预算
|
|
|
+ Buyerclass string `protobuf:"bytes,5,opt,name=buyerclass,proto3" json:"buyerclass,omitempty"` //采购单位类型
|
|
|
+ Matchkeys string `protobuf:"bytes,6,opt,name=matchkeys,proto3" json:"matchkeys,omitempty"` //订阅匹配信息
|
|
|
+ PublishTime int64 `protobuf:"varint,7,opt,name=publishTime,proto3" json:"publishTime,omitempty"` //发布时间
|
|
|
+ Industry string `protobuf:"bytes,8,opt,name=industry,proto3" json:"industry,omitempty"` //行业
|
|
|
+ Title string `protobuf:"bytes,9,opt,name=title,proto3" json:"title,omitempty"` //标题
|
|
|
+ Subtype string `protobuf:"bytes,10,opt,name=subtype,proto3" json:"subtype,omitempty"` //
|
|
|
+ AppId string `protobuf:"bytes,11,opt,name=appId,proto3" json:"appId,omitempty"`
|
|
|
+ Id string `protobuf:"bytes,12,opt,name=id,proto3" json:"id,omitempty"` //招标信息id
|
|
|
+ FileExists bool `protobuf:"varint,13,opt,name=fileExists,proto3" json:"fileExists,omitempty"` //是否有附件
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) Reset() {
|
|
|
+ *x = NewestList{}
|
|
|
+ if protoimpl.UnsafeEnabled {
|
|
|
+ mi := &file_bxbase_proto_msgTypes[24]
|
|
|
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
+ ms.StoreMessageInfo(mi)
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) String() string {
|
|
|
+ return protoimpl.X.MessageStringOf(x)
|
|
|
+}
|
|
|
+
|
|
|
+func (*NewestList) ProtoMessage() {}
|
|
|
+
|
|
|
+func (x *NewestList) ProtoReflect() protoreflect.Message {
|
|
|
+ mi := &file_bxbase_proto_msgTypes[24]
|
|
|
+ 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 NewestList.ProtoReflect.Descriptor instead.
|
|
|
+func (*NewestList) Descriptor() ([]byte, []int) {
|
|
|
+ return file_bxbase_proto_rawDescGZIP(), []int{24}
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetArea() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Area
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetCity() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.City
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetBidamount() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.Bidamount
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetBudget() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.Budget
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetBuyerclass() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Buyerclass
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetMatchkeys() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Matchkeys
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetPublishTime() int64 {
|
|
|
+ if x != nil {
|
|
|
+ return x.PublishTime
|
|
|
+ }
|
|
|
+ return 0
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetIndustry() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Industry
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetTitle() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Title
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetSubtype() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Subtype
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetAppId() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.AppId
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetId() string {
|
|
|
+ if x != nil {
|
|
|
+ return x.Id
|
|
|
+ }
|
|
|
+ return ""
|
|
|
+}
|
|
|
+
|
|
|
+func (x *NewestList) GetFileExists() bool {
|
|
|
+ if x != nil {
|
|
|
+ return x.FileExists
|
|
|
+ }
|
|
|
+ return false
|
|
|
+}
|
|
|
+
|
|
|
//公共返回
|
|
|
type CommonRes struct {
|
|
|
state protoimpl.MessageState
|
|
@@ -1684,7 +2055,7 @@ type CommonRes struct {
|
|
|
func (x *CommonRes) Reset() {
|
|
|
*x = CommonRes{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_bxbase_proto_msgTypes[21]
|
|
|
+ mi := &file_bxbase_proto_msgTypes[25]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
@@ -1697,7 +2068,7 @@ func (x *CommonRes) String() string {
|
|
|
func (*CommonRes) ProtoMessage() {}
|
|
|
|
|
|
func (x *CommonRes) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_bxbase_proto_msgTypes[21]
|
|
|
+ mi := &file_bxbase_proto_msgTypes[25]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1710,7 +2081,7 @@ func (x *CommonRes) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use CommonRes.ProtoReflect.Descriptor instead.
|
|
|
func (*CommonRes) Descriptor() ([]byte, []int) {
|
|
|
- return file_bxbase_proto_rawDescGZIP(), []int{21}
|
|
|
+ return file_bxbase_proto_rawDescGZIP(), []int{25}
|
|
|
}
|
|
|
|
|
|
func (x *CommonRes) GetErrCode() int64 {
|
|
@@ -1741,7 +2112,7 @@ type CheckRes struct {
|
|
|
func (x *CheckRes) Reset() {
|
|
|
*x = CheckRes{}
|
|
|
if protoimpl.UnsafeEnabled {
|
|
|
- mi := &file_bxbase_proto_msgTypes[22]
|
|
|
+ mi := &file_bxbase_proto_msgTypes[26]
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
ms.StoreMessageInfo(mi)
|
|
|
}
|
|
@@ -1754,7 +2125,7 @@ func (x *CheckRes) String() string {
|
|
|
func (*CheckRes) ProtoMessage() {}
|
|
|
|
|
|
func (x *CheckRes) ProtoReflect() protoreflect.Message {
|
|
|
- mi := &file_bxbase_proto_msgTypes[22]
|
|
|
+ mi := &file_bxbase_proto_msgTypes[26]
|
|
|
if protoimpl.UnsafeEnabled && x != nil {
|
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -1767,7 +2138,7 @@ func (x *CheckRes) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use CheckRes.ProtoReflect.Descriptor instead.
|
|
|
func (*CheckRes) Descriptor() ([]byte, []int) {
|
|
|
- return file_bxbase_proto_rawDescGZIP(), []int{22}
|
|
|
+ return file_bxbase_proto_rawDescGZIP(), []int{26}
|
|
|
}
|
|
|
|
|
|
func (x *CheckRes) GetErrCode() int64 {
|
|
@@ -1988,53 +2359,105 @@ var file_bxbase_proto_rawDesc = []byte{
|
|
|
0x0a, 0x05, 0x69, 0x6e, 0x4b, 0x65, 0x79, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x69,
|
|
|
0x6e, 0x4b, 0x65, 0x79, 0x22, 0x1e, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x53, 0x65, 0x61, 0x72, 0x63,
|
|
|
0x68, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
|
|
|
- 0x52, 0x02, 0x69, 0x64, 0x22, 0x3f, 0x0a, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65,
|
|
|
- 0x73, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x72, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
|
|
|
- 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x17, 0x0a, 0x07,
|
|
|
- 0x65, 0x72, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65,
|
|
|
- 0x72, 0x72, 0x4d, 0x73, 0x67, 0x22, 0x52, 0x0a, 0x08, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65,
|
|
|
- 0x73, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x72, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
|
|
|
- 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x17, 0x0a, 0x07,
|
|
|
- 0x65, 0x72, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65,
|
|
|
- 0x72, 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, 0xb5, 0x04, 0x0a, 0x06, 0x62, 0x78,
|
|
|
- 0x62, 0x61, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x08, 0x41, 0x64, 0x64, 0x6c, 0x61, 0x62, 0x65, 0x6c,
|
|
|
- 0x12, 0x12, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x41, 0x64, 0x64, 0x6c, 0x61, 0x62, 0x65,
|
|
|
- 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x12, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x41, 0x64, 0x64,
|
|
|
- 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x12, 0x44, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x4c,
|
|
|
- 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x2e, 0x62, 0x78, 0x63,
|
|
|
- 0x6f, 0x6c, 0x2e, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f,
|
|
|
- 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x47, 0x65, 0x74,
|
|
|
- 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x3b,
|
|
|
- 0x0a, 0x0b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x15, 0x2e,
|
|
|
- 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f,
|
|
|
- 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x61, 0x62,
|
|
|
- 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x35, 0x0a, 0x08, 0x42,
|
|
|
- 0x43, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e,
|
|
|
- 0x42, 0x43, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x62, 0x78,
|
|
|
- 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52,
|
|
|
- 0x65, 0x73, 0x12, 0x3e, 0x0a, 0x0c, 0x49, 0x73, 0x43, 0x6f, 0x6c, 0x6c, 0x41, 0x63, 0x74, 0x69,
|
|
|
- 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x49, 0x73, 0x43, 0x6f, 0x6c,
|
|
|
- 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x62, 0x78, 0x63,
|
|
|
- 0x6f, 0x6c, 0x2e, 0x49, 0x73, 0x43, 0x6f, 0x6c, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52,
|
|
|
- 0x65, 0x73, 0x12, 0x26, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x2e, 0x62, 0x78, 0x63,
|
|
|
- 0x6f, 0x6c, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e, 0x62, 0x78, 0x63,
|
|
|
- 0x6f, 0x6c, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x12, 0x38, 0x0a, 0x0a, 0x53, 0x68,
|
|
|
- 0x6f, 0x77, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x14, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c,
|
|
|
- 0x2e, 0x53, 0x68, 0x6f, 0x77, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x14,
|
|
|
- 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x53, 0x68, 0x6f, 0x77, 0x53, 0x65, 0x61, 0x72, 0x63,
|
|
|
- 0x68, 0x52, 0x65, 0x73, 0x12, 0x32, 0x0a, 0x09, 0x41, 0x64, 0x64, 0x53, 0x65, 0x61, 0x72, 0x63,
|
|
|
- 0x68, 0x12, 0x13, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x41, 0x64, 0x64, 0x53, 0x65, 0x61,
|
|
|
- 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x43,
|
|
|
- 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x33, 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x63,
|
|
|
- 0x6b, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x13, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e,
|
|
|
- 0x41, 0x64, 0x64, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x62,
|
|
|
- 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x12, 0x32, 0x0a,
|
|
|
- 0x09, 0x44, 0x65, 0x6c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x13, 0x2e, 0x62, 0x78, 0x63,
|
|
|
- 0x6f, 0x6c, 0x2e, 0x44, 0x65, 0x6c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a,
|
|
|
- 0x10, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65,
|
|
|
- 0x73, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x62, 0x78, 0x62, 0x61, 0x73, 0x65, 0x62, 0x06, 0x70,
|
|
|
- 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
+ 0x52, 0x02, 0x69, 0x64, 0x22, 0x70, 0x0a, 0x10, 0x4e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x42, 0x69,
|
|
|
+ 0x64, 0x64, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79,
|
|
|
+ 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x1a, 0x0a, 0x08,
|
|
|
+ 0x69, 0x73, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
|
|
|
+ 0x69, 0x73, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72,
|
|
|
+ 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
|
|
|
+ 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
+ 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x22, 0x71, 0x0a, 0x11, 0x4e, 0x65, 0x77, 0x73, 0x65, 0x74,
|
|
|
+ 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x12, 0x19, 0x0a, 0x08, 0x65,
|
|
|
+ 0x72, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65,
|
|
|
+ 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x65, 0x72, 0x72, 0x5f, 0x6d, 0x73,
|
|
|
+ 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x12,
|
|
|
+ 0x28, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e,
|
|
|
+ 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4e, 0x65, 0x77, 0x73, 0x65, 0x74, 0x42, 0x69, 0x64, 0x64,
|
|
|
+ 0x69, 0x6e, 0x67, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xba, 0x01, 0x0a, 0x0d, 0x4e, 0x65,
|
|
|
+ 0x77, 0x73, 0x65, 0x74, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x14, 0x0a, 0x05, 0x69,
|
|
|
+ 0x73, 0x56, 0x69, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x56, 0x69,
|
|
|
+ 0x70, 0x12, 0x1e, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x53, 0x75, 0x62, 0x4b, 0x65, 0x79, 0x73, 0x18,
|
|
|
+ 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x68, 0x61, 0x73, 0x53, 0x75, 0x62, 0x4b, 0x65, 0x79,
|
|
|
+ 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x68, 0x61, 0x73, 0x48, 0x53, 0x4b, 0x65, 0x79, 0x73, 0x18, 0x03,
|
|
|
+ 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68, 0x61, 0x73, 0x48, 0x53, 0x4b, 0x65, 0x79, 0x73, 0x12,
|
|
|
+ 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
|
|
|
+ 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x25, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20,
|
|
|
+ 0x03, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x6e, 0x65, 0x77, 0x65,
|
|
|
+ 0x73, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07,
|
|
|
+ 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x68,
|
|
|
+ 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 0x22, 0xdc, 0x02, 0x0a, 0x0a, 0x6e, 0x65, 0x77, 0x65, 0x73,
|
|
|
+ 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x01, 0x20,
|
|
|
+ 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74,
|
|
|
+ 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x1c, 0x0a,
|
|
|
+ 0x09, 0x62, 0x69, 0x64, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
|
|
|
+ 0x52, 0x09, 0x62, 0x69, 0x64, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x62,
|
|
|
+ 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x62, 0x75, 0x64,
|
|
|
+ 0x67, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73,
|
|
|
+ 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c,
|
|
|
+ 0x61, 0x73, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6b, 0x65, 0x79, 0x73,
|
|
|
+ 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x6b, 0x65, 0x79,
|
|
|
+ 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65,
|
|
|
+ 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x54,
|
|
|
+ 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x18,
|
|
|
+ 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x12,
|
|
|
+ 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
|
|
|
+ 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x62, 0x74, 0x79, 0x70, 0x65,
|
|
|
+ 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x12,
|
|
|
+ 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
|
|
|
+ 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28,
|
|
|
+ 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69,
|
|
|
+ 0x73, 0x74, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x45,
|
|
|
+ 0x78, 0x69, 0x73, 0x74, 0x73, 0x22, 0x3f, 0x0a, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52,
|
|
|
+ 0x65, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x72, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
|
|
|
+ 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x17, 0x0a,
|
|
|
+ 0x07, 0x65, 0x72, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
|
|
|
+ 0x65, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x22, 0x52, 0x0a, 0x08, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52,
|
|
|
+ 0x65, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x72, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
|
|
|
+ 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x72, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x17, 0x0a,
|
|
|
+ 0x07, 0x65, 0x72, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
|
|
|
+ 0x65, 0x72, 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, 0xf9, 0x04, 0x0a, 0x06, 0x62,
|
|
|
+ 0x78, 0x62, 0x61, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x08, 0x41, 0x64, 0x64, 0x6c, 0x61, 0x62, 0x65,
|
|
|
+ 0x6c, 0x12, 0x12, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x41, 0x64, 0x64, 0x6c, 0x61, 0x62,
|
|
|
+ 0x65, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x12, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x41, 0x64,
|
|
|
+ 0x64, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x12, 0x44, 0x0a, 0x0e, 0x47, 0x65, 0x74,
|
|
|
+ 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x2e, 0x62, 0x78,
|
|
|
+ 0x63, 0x6f, 0x6c, 0x2e, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69,
|
|
|
+ 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x47, 0x65,
|
|
|
+ 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12,
|
|
|
+ 0x3b, 0x0a, 0x0b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x15,
|
|
|
+ 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69,
|
|
|
+ 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x61,
|
|
|
+ 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x35, 0x0a, 0x08,
|
|
|
+ 0x42, 0x43, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c,
|
|
|
+ 0x2e, 0x42, 0x43, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x62,
|
|
|
+ 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e,
|
|
|
+ 0x52, 0x65, 0x73, 0x12, 0x3e, 0x0a, 0x0c, 0x49, 0x73, 0x43, 0x6f, 0x6c, 0x6c, 0x41, 0x63, 0x74,
|
|
|
+ 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x49, 0x73, 0x43, 0x6f,
|
|
|
+ 0x6c, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x62, 0x78,
|
|
|
+ 0x63, 0x6f, 0x6c, 0x2e, 0x49, 0x73, 0x43, 0x6f, 0x6c, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e,
|
|
|
+ 0x52, 0x65, 0x73, 0x12, 0x26, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x2e, 0x62, 0x78,
|
|
|
+ 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e, 0x62, 0x78,
|
|
|
+ 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x12, 0x38, 0x0a, 0x0a, 0x53,
|
|
|
+ 0x68, 0x6f, 0x77, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x14, 0x2e, 0x62, 0x78, 0x63, 0x6f,
|
|
|
+ 0x6c, 0x2e, 0x53, 0x68, 0x6f, 0x77, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a,
|
|
|
+ 0x14, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x53, 0x68, 0x6f, 0x77, 0x53, 0x65, 0x61, 0x72,
|
|
|
+ 0x63, 0x68, 0x52, 0x65, 0x73, 0x12, 0x32, 0x0a, 0x09, 0x41, 0x64, 0x64, 0x53, 0x65, 0x61, 0x72,
|
|
|
+ 0x63, 0x68, 0x12, 0x13, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x41, 0x64, 0x64, 0x53, 0x65,
|
|
|
+ 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e,
|
|
|
+ 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x33, 0x0a, 0x0b, 0x43, 0x68, 0x65,
|
|
|
+ 0x63, 0x6b, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x13, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c,
|
|
|
+ 0x2e, 0x41, 0x64, 0x64, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e,
|
|
|
+ 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x12, 0x32,
|
|
|
+ 0x0a, 0x09, 0x44, 0x65, 0x6c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x13, 0x2e, 0x62, 0x78,
|
|
|
+ 0x63, 0x6f, 0x6c, 0x2e, 0x44, 0x65, 0x6c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71,
|
|
|
+ 0x1a, 0x10, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52,
|
|
|
+ 0x65, 0x73, 0x12, 0x42, 0x0a, 0x0d, 0x4e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x42, 0x69, 0x64, 0x64,
|
|
|
+ 0x69, 0x6e, 0x67, 0x12, 0x17, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4e, 0x65, 0x77, 0x65,
|
|
|
+ 0x73, 0x74, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x62,
|
|
|
+ 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4e, 0x65, 0x77, 0x73, 0x65, 0x74, 0x42, 0x69, 0x64, 0x64, 0x69,
|
|
|
+ 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x62, 0x78, 0x62, 0x61,
|
|
|
+ 0x73, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
}
|
|
|
|
|
|
var (
|
|
@@ -2049,7 +2472,7 @@ func file_bxbase_proto_rawDescGZIP() []byte {
|
|
|
return file_bxbase_proto_rawDescData
|
|
|
}
|
|
|
|
|
|
-var file_bxbase_proto_msgTypes = make([]protoimpl.MessageInfo, 23)
|
|
|
+var file_bxbase_proto_msgTypes = make([]protoimpl.MessageInfo, 27)
|
|
|
var file_bxbase_proto_goTypes = []interface{}{
|
|
|
(*AddlabelReq)(nil), // 0: bxcol.AddlabelReq
|
|
|
(*AddlabelRes)(nil), // 1: bxcol.AddlabelRes
|
|
@@ -2072,8 +2495,12 @@ var file_bxbase_proto_goTypes = []interface{}{
|
|
|
(*ListSearchRes)(nil), // 18: bxcol.ListSearchRes
|
|
|
(*AddSearchReq)(nil), // 19: bxcol.AddSearchReq
|
|
|
(*DelSearchReq)(nil), // 20: bxcol.DelSearchReq
|
|
|
- (*CommonRes)(nil), // 21: bxcol.CommonRes
|
|
|
- (*CheckRes)(nil), // 22: bxcol.CheckRes
|
|
|
+ (*NewestBiddingReq)(nil), // 21: bxcol.NewestBiddingReq
|
|
|
+ (*NewsetBiddingResp)(nil), // 22: bxcol.NewsetBiddingResp
|
|
|
+ (*NewsetBidding)(nil), // 23: bxcol.NewsetBidding
|
|
|
+ (*NewestList)(nil), // 24: bxcol.newestList
|
|
|
+ (*CommonRes)(nil), // 25: bxcol.CommonRes
|
|
|
+ (*CheckRes)(nil), // 26: bxcol.CheckRes
|
|
|
}
|
|
|
var file_bxbase_proto_depIdxs = []int32{
|
|
|
4, // 0: bxcol.GetLabelActionRes.labels:type_name -> bxcol.LabelByUser
|
|
@@ -2082,31 +2509,35 @@ var file_bxbase_proto_depIdxs = []int32{
|
|
|
14, // 3: bxcol.ListRes.ldata:type_name -> bxcol.ColList
|
|
|
15, // 4: bxcol.ColList.res:type_name -> bxcol.ColData
|
|
|
18, // 5: bxcol.ShowSearchRes.data:type_name -> bxcol.ListSearchRes
|
|
|
- 0, // 6: bxcol.bxbase.Addlabel:input_type -> bxcol.AddlabelReq
|
|
|
- 2, // 7: bxcol.bxbase.GetLabelAction:input_type -> bxcol.GetLabelActionReq
|
|
|
- 5, // 8: bxcol.bxbase.LabelAction:input_type -> bxcol.LabelActionReq
|
|
|
- 7, // 9: bxcol.bxbase.BCAction:input_type -> bxcol.BCActionReq
|
|
|
- 8, // 10: bxcol.bxbase.IsCollAction:input_type -> bxcol.IsCollActionReq
|
|
|
- 12, // 11: bxcol.bxbase.List:input_type -> bxcol.ListReq
|
|
|
- 16, // 12: bxcol.bxbase.ShowSearch:input_type -> bxcol.ShowSearchReq
|
|
|
- 19, // 13: bxcol.bxbase.AddSearch:input_type -> bxcol.AddSearchReq
|
|
|
- 19, // 14: bxcol.bxbase.CheckSearch:input_type -> bxcol.AddSearchReq
|
|
|
- 20, // 15: bxcol.bxbase.DelSearch:input_type -> bxcol.DelSearchReq
|
|
|
- 1, // 16: bxcol.bxbase.Addlabel:output_type -> bxcol.AddlabelRes
|
|
|
- 3, // 17: bxcol.bxbase.GetLabelAction:output_type -> bxcol.GetLabelActionRes
|
|
|
- 6, // 18: bxcol.bxbase.LabelAction:output_type -> bxcol.LabelActionRes
|
|
|
- 6, // 19: bxcol.bxbase.BCAction:output_type -> bxcol.LabelActionRes
|
|
|
- 9, // 20: bxcol.bxbase.IsCollAction:output_type -> bxcol.IsCollActionRes
|
|
|
- 13, // 21: bxcol.bxbase.List:output_type -> bxcol.ListRes
|
|
|
- 17, // 22: bxcol.bxbase.ShowSearch:output_type -> bxcol.ShowSearchRes
|
|
|
- 21, // 23: bxcol.bxbase.AddSearch:output_type -> bxcol.CommonRes
|
|
|
- 22, // 24: bxcol.bxbase.CheckSearch:output_type -> bxcol.CheckRes
|
|
|
- 21, // 25: bxcol.bxbase.DelSearch:output_type -> bxcol.CommonRes
|
|
|
- 16, // [16:26] is the sub-list for method output_type
|
|
|
- 6, // [6:16] is the sub-list for method input_type
|
|
|
- 6, // [6:6] is the sub-list for extension type_name
|
|
|
- 6, // [6:6] is the sub-list for extension extendee
|
|
|
- 0, // [0:6] is the sub-list for field type_name
|
|
|
+ 23, // 6: bxcol.NewsetBiddingResp.data:type_name -> bxcol.NewsetBidding
|
|
|
+ 24, // 7: bxcol.NewsetBidding.list:type_name -> bxcol.newestList
|
|
|
+ 0, // 8: bxcol.bxbase.Addlabel:input_type -> bxcol.AddlabelReq
|
|
|
+ 2, // 9: bxcol.bxbase.GetLabelAction:input_type -> bxcol.GetLabelActionReq
|
|
|
+ 5, // 10: bxcol.bxbase.LabelAction:input_type -> bxcol.LabelActionReq
|
|
|
+ 7, // 11: bxcol.bxbase.BCAction:input_type -> bxcol.BCActionReq
|
|
|
+ 8, // 12: bxcol.bxbase.IsCollAction:input_type -> bxcol.IsCollActionReq
|
|
|
+ 12, // 13: bxcol.bxbase.List:input_type -> bxcol.ListReq
|
|
|
+ 16, // 14: bxcol.bxbase.ShowSearch:input_type -> bxcol.ShowSearchReq
|
|
|
+ 19, // 15: bxcol.bxbase.AddSearch:input_type -> bxcol.AddSearchReq
|
|
|
+ 19, // 16: bxcol.bxbase.CheckSearch:input_type -> bxcol.AddSearchReq
|
|
|
+ 20, // 17: bxcol.bxbase.DelSearch:input_type -> bxcol.DelSearchReq
|
|
|
+ 21, // 18: bxcol.bxbase.NewestBidding:input_type -> bxcol.NewestBiddingReq
|
|
|
+ 1, // 19: bxcol.bxbase.Addlabel:output_type -> bxcol.AddlabelRes
|
|
|
+ 3, // 20: bxcol.bxbase.GetLabelAction:output_type -> bxcol.GetLabelActionRes
|
|
|
+ 6, // 21: bxcol.bxbase.LabelAction:output_type -> bxcol.LabelActionRes
|
|
|
+ 6, // 22: bxcol.bxbase.BCAction:output_type -> bxcol.LabelActionRes
|
|
|
+ 9, // 23: bxcol.bxbase.IsCollAction:output_type -> bxcol.IsCollActionRes
|
|
|
+ 13, // 24: bxcol.bxbase.List:output_type -> bxcol.ListRes
|
|
|
+ 17, // 25: bxcol.bxbase.ShowSearch:output_type -> bxcol.ShowSearchRes
|
|
|
+ 25, // 26: bxcol.bxbase.AddSearch:output_type -> bxcol.CommonRes
|
|
|
+ 26, // 27: bxcol.bxbase.CheckSearch:output_type -> bxcol.CheckRes
|
|
|
+ 25, // 28: bxcol.bxbase.DelSearch:output_type -> bxcol.CommonRes
|
|
|
+ 22, // 29: bxcol.bxbase.NewestBidding:output_type -> bxcol.NewsetBiddingResp
|
|
|
+ 19, // [19:30] is the sub-list for method output_type
|
|
|
+ 8, // [8:19] is the sub-list for method input_type
|
|
|
+ 8, // [8:8] is the sub-list for extension type_name
|
|
|
+ 8, // [8:8] is the sub-list for extension extendee
|
|
|
+ 0, // [0:8] is the sub-list for field type_name
|
|
|
}
|
|
|
|
|
|
func init() { file_bxbase_proto_init() }
|
|
@@ -2368,7 +2799,7 @@ func file_bxbase_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_bxbase_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
|
|
|
- switch v := v.(*CommonRes); i {
|
|
|
+ switch v := v.(*NewestBiddingReq); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
|
case 1:
|
|
@@ -2380,6 +2811,54 @@ func file_bxbase_proto_init() {
|
|
|
}
|
|
|
}
|
|
|
file_bxbase_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*NewsetBiddingResp); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_bxbase_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*NewsetBidding); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_bxbase_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*NewestList); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_bxbase_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
|
|
|
+ switch v := v.(*CommonRes); i {
|
|
|
+ case 0:
|
|
|
+ return &v.state
|
|
|
+ case 1:
|
|
|
+ return &v.sizeCache
|
|
|
+ case 2:
|
|
|
+ return &v.unknownFields
|
|
|
+ default:
|
|
|
+ return nil
|
|
|
+ }
|
|
|
+ }
|
|
|
+ file_bxbase_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
|
|
|
switch v := v.(*CheckRes); i {
|
|
|
case 0:
|
|
|
return &v.state
|
|
@@ -2398,7 +2877,7 @@ func file_bxbase_proto_init() {
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
RawDescriptor: file_bxbase_proto_rawDesc,
|
|
|
NumEnums: 0,
|
|
|
- NumMessages: 23,
|
|
|
+ NumMessages: 27,
|
|
|
NumExtensions: 0,
|
|
|
NumServices: 1,
|
|
|
},
|