|
@@ -1338,9 +1338,9 @@ type ListSearchRes struct {
|
|
|
Id string `protobuf:"bytes,17,opt,name=id,proto3" json:"id,omitempty"`
|
|
|
IsPay bool `protobuf:"varint,18,opt,name=isPay,proto3" json:"isPay,omitempty"`
|
|
|
Tabularflag string `protobuf:"bytes,19,opt,name=tabularflag,proto3" json:"tabularflag,omitempty"`
|
|
|
- SearchGroup string `protobuf:"bytes,20,opt,name=searchGroup,proto3" json:"searchGroup,omitempty"` //搜索分组:默认0:全部;1:招标采购公告;2:超前项目
|
|
|
- SearchMode string `protobuf:"bytes,21,opt,name=searchMode,proto3" json:"searchMode,omitempty"` //搜索模式:0:精准搜索;1:模糊搜索
|
|
|
- WordsMode string `protobuf:"bytes,22,opt,name=wordsMode,proto3" json:"wordsMode,omitempty"` // 搜索关键词模式;默认0:包含所有,1:包含任意
|
|
|
+ SearchGroup int64 `protobuf:"varint,20,opt,name=searchGroup,proto3" json:"searchGroup,omitempty"` //搜索分组:默认0:全部;1:招标采购公告;2:超前项目
|
|
|
+ SearchMode int64 `protobuf:"varint,21,opt,name=searchMode,proto3" json:"searchMode,omitempty"` //搜索模式:0:精准搜索;1:模糊搜索
|
|
|
+ WordsMode int64 `protobuf:"varint,22,opt,name=wordsMode,proto3" json:"wordsMode,omitempty"` // 搜索关键词模式;默认0:包含所有,1:包含任意
|
|
|
AdditionalWords string `protobuf:"bytes,23,opt,name=additionalWords,proto3" json:"additionalWords,omitempty"` //关键词:附加关键词(副:五组,每组最多15个字符)
|
|
|
}
|
|
|
|
|
@@ -1509,25 +1509,25 @@ func (x *ListSearchRes) GetTabularflag() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (x *ListSearchRes) GetSearchGroup() string {
|
|
|
+func (x *ListSearchRes) GetSearchGroup() int64 {
|
|
|
if x != nil {
|
|
|
return x.SearchGroup
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
-func (x *ListSearchRes) GetSearchMode() string {
|
|
|
+func (x *ListSearchRes) GetSearchMode() int64 {
|
|
|
if x != nil {
|
|
|
return x.SearchMode
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
-func (x *ListSearchRes) GetWordsMode() string {
|
|
|
+func (x *ListSearchRes) GetWordsMode() int64 {
|
|
|
if x != nil {
|
|
|
return x.WordsMode
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
func (x *ListSearchRes) GetAdditionalWords() string {
|
|
@@ -1560,9 +1560,9 @@ type AddSearchReq struct {
|
|
|
City string `protobuf:"bytes,16,opt,name=city,proto3" json:"city,omitempty"`
|
|
|
InKey string `protobuf:"bytes,17,opt,name=inKey,proto3" json:"inKey,omitempty"`
|
|
|
AppId string `protobuf:"bytes,18,opt,name=appId,proto3" json:"appId,omitempty"`
|
|
|
- SearchGroup string `protobuf:"bytes,19,opt,name=searchGroup,proto3" json:"searchGroup,omitempty"` //搜索分组:默认0:全部;1:招标采购公告;2:超前项目
|
|
|
- SearchMode string `protobuf:"bytes,20,opt,name=searchMode,proto3" json:"searchMode,omitempty"` //搜索模式:0:精准搜索;1:模糊搜索
|
|
|
- WordsMode string `protobuf:"bytes,21,opt,name=wordsMode,proto3" json:"wordsMode,omitempty"` // 搜索关键词模式;默认0:包含所有,1:包含任意
|
|
|
+ SearchGroup int64 `protobuf:"varint,19,opt,name=searchGroup,proto3" json:"searchGroup,omitempty"` //搜索分组:默认0:全部;1:招标采购公告;2:超前项目
|
|
|
+ SearchMode int64 `protobuf:"varint,20,opt,name=searchMode,proto3" json:"searchMode,omitempty"` //搜索模式:0:精准搜索;1:模糊搜索
|
|
|
+ WordsMode int64 `protobuf:"varint,21,opt,name=wordsMode,proto3" json:"wordsMode,omitempty"` // 搜索关键词模式;默认0:包含所有,1:包含任意
|
|
|
AdditionalWords string `protobuf:"bytes,22,opt,name=additionalWords,proto3" json:"additionalWords,omitempty"` //关键词:附加关键词(副:五组,每组最多15个字符)
|
|
|
}
|
|
|
|
|
@@ -1724,25 +1724,25 @@ func (x *AddSearchReq) GetAppId() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (x *AddSearchReq) GetSearchGroup() string {
|
|
|
+func (x *AddSearchReq) GetSearchGroup() int64 {
|
|
|
if x != nil {
|
|
|
return x.SearchGroup
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
-func (x *AddSearchReq) GetSearchMode() string {
|
|
|
+func (x *AddSearchReq) GetSearchMode() int64 {
|
|
|
if x != nil {
|
|
|
return x.SearchMode
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
-func (x *AddSearchReq) GetWordsMode() string {
|
|
|
+func (x *AddSearchReq) GetWordsMode() int64 {
|
|
|
if x != nil {
|
|
|
return x.WordsMode
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
func (x *AddSearchReq) GetAdditionalWords() string {
|
|
@@ -3035,11 +3035,11 @@ var file_bxbase_proto_rawDesc = []byte{
|
|
|
0x52, 0x05, 0x69, 0x73, 0x50, 0x61, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x74, 0x61, 0x62, 0x75, 0x6c,
|
|
|
0x61, 0x72, 0x66, 0x6c, 0x61, 0x67, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x74, 0x61,
|
|
|
0x62, 0x75, 0x6c, 0x61, 0x72, 0x66, 0x6c, 0x61, 0x67, 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x65, 0x61,
|
|
|
- 0x72, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
|
|
|
+ 0x72, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
|
|
|
0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1e, 0x0a, 0x0a, 0x73,
|
|
|
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
+ 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x03, 0x52,
|
|
|
0x0a, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x77,
|
|
|
- 0x6f, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
|
|
|
+ 0x6f, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
|
|
|
0x77, 0x6f, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x61, 0x64, 0x64,
|
|
|
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x57, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x17, 0x20, 0x01,
|
|
|
0x28, 0x09, 0x52, 0x0f, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x57, 0x6f,
|
|
@@ -3076,11 +3076,11 @@ var file_bxbase_proto_rawDesc = []byte{
|
|
|
0x09, 0x52, 0x05, 0x69, 0x6e, 0x4b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49,
|
|
|
0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x20,
|
|
|
0x0a, 0x0b, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x13, 0x20,
|
|
|
- 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70,
|
|
|
+ 0x01, 0x28, 0x03, 0x52, 0x0b, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70,
|
|
|
0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x14,
|
|
|
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x6f, 0x64, 0x65,
|
|
|
+ 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x6f, 0x64, 0x65,
|
|
|
0x12, 0x1c, 0x0a, 0x09, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x64, 0x65, 0x18, 0x15, 0x20,
|
|
|
- 0x01, 0x28, 0x09, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x28,
|
|
|
+ 0x01, 0x28, 0x03, 0x52, 0x09, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x28,
|
|
|
0x0a, 0x0f, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x57, 0x6f, 0x72, 0x64,
|
|
|
0x73, 0x18, 0x16, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f,
|
|
|
0x6e, 0x61, 0x6c, 0x57, 0x6f, 0x72, 0x64, 0x73, 0x22, 0x4c, 0x0a, 0x0c, 0x44, 0x65, 0x6c, 0x53,
|