|
@@ -494,7 +494,7 @@ type SearchList struct {
|
|
|
Detail string `protobuf:"bytes,6,opt,name=detail,proto3" json:"detail,omitempty"` //正文搜索内容
|
|
|
Industry string `protobuf:"bytes,7,opt,name=industry,proto3" json:"industry,omitempty"` //行业标签
|
|
|
IndustryUrl string `protobuf:"bytes,8,opt,name=industryUrl,proto3" json:"industryUrl,omitempty"` //行业标签地址
|
|
|
- PublishTime string `protobuf:"bytes,9,opt,name=publishTime,proto3" json:"publishTime,omitempty"` //发布时间
|
|
|
+ PublishTime int64 `protobuf:"varint,9,opt,name=publishTime,proto3" json:"publishTime,omitempty"` //发布时间
|
|
|
FileExists bool `protobuf:"varint,10,opt,name=fileExists,proto3" json:"fileExists,omitempty"` //是否有附件
|
|
|
Subtype string `protobuf:"bytes,11,opt,name=subtype,proto3" json:"subtype,omitempty"` //信息类型
|
|
|
SubtypeUrl string `protobuf:"bytes,12,opt,name=subtypeUrl,proto3" json:"subtypeUrl,omitempty"` //信息类型标签地址
|
|
@@ -511,9 +511,9 @@ type SearchList struct {
|
|
|
AgencyPerson string `protobuf:"bytes,23,opt,name=agencyPerson,proto3" json:"agencyPerson,omitempty"` //代理机构联系人
|
|
|
AgencyTel string `protobuf:"bytes,24,opt,name=agencyTel,proto3" json:"agencyTel,omitempty"` //代理机构联系电话
|
|
|
WinnerInfo []*WinnerInfo `protobuf:"bytes,25,rep,name=winnerInfo,proto3" json:"winnerInfo,omitempty"` //中标企业信息
|
|
|
- BidOpenTime string `protobuf:"bytes,26,opt,name=bidOpenTime,proto3" json:"bidOpenTime,omitempty"` //开标时间
|
|
|
- SignEndTime string `protobuf:"bytes,27,opt,name=signEndTime,proto3" json:"signEndTime,omitempty"` //报名截止时间
|
|
|
- BidEndTime string `protobuf:"bytes,28,opt,name=bidEndTime,proto3" json:"bidEndTime,omitempty"` //投标截止时间
|
|
|
+ BidOpenTime int64 `protobuf:"varint,26,opt,name=bidOpenTime,proto3" json:"bidOpenTime,omitempty"` //开标时间
|
|
|
+ SignEndTime int64 `protobuf:"varint,27,opt,name=signEndTime,proto3" json:"signEndTime,omitempty"` //报名截止时间
|
|
|
+ BidEndTime int64 `protobuf:"varint,28,opt,name=bidEndTime,proto3" json:"bidEndTime,omitempty"` //投标截止时间
|
|
|
Site string `protobuf:"bytes,29,opt,name=site,proto3" json:"site,omitempty"` //网站名称
|
|
|
SpiderCode string `protobuf:"bytes,30,opt,name=spiderCode,proto3" json:"spiderCode,omitempty"` //网站代码
|
|
|
ProjectInfo *PInfo `protobuf:"bytes,31,opt,name=projectInfo,proto3" json:"projectInfo,omitempty"` //拟建项目信息
|
|
@@ -607,11 +607,11 @@ func (x *SearchList) GetIndustryUrl() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (x *SearchList) GetPublishTime() string {
|
|
|
+func (x *SearchList) GetPublishTime() int64 {
|
|
|
if x != nil {
|
|
|
return x.PublishTime
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
func (x *SearchList) GetFileExists() bool {
|
|
@@ -726,25 +726,25 @@ func (x *SearchList) GetWinnerInfo() []*WinnerInfo {
|
|
|
return nil
|
|
|
}
|
|
|
|
|
|
-func (x *SearchList) GetBidOpenTime() string {
|
|
|
+func (x *SearchList) GetBidOpenTime() int64 {
|
|
|
if x != nil {
|
|
|
return x.BidOpenTime
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
-func (x *SearchList) GetSignEndTime() string {
|
|
|
+func (x *SearchList) GetSignEndTime() int64 {
|
|
|
if x != nil {
|
|
|
return x.SignEndTime
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
-func (x *SearchList) GetBidEndTime() string {
|
|
|
+func (x *SearchList) GetBidEndTime() int64 {
|
|
|
if x != nil {
|
|
|
return x.BidEndTime
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
func (x *SearchList) GetSite() string {
|
|
@@ -1199,7 +1199,7 @@ var file_bxcore_proto_rawDesc = []byte{
|
|
|
0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x55, 0x72, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
0x0b, 0x69, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x55, 0x72, 0x6c, 0x12, 0x20, 0x0a, 0x0b,
|
|
|
0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
|
|
|
- 0x09, 0x52, 0x0b, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e,
|
|
|
+ 0x03, 0x52, 0x0b, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e,
|
|
|
0x0a, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x18, 0x0a, 0x20, 0x01,
|
|
|
0x28, 0x08, 0x52, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x12, 0x18,
|
|
|
0x0a, 0x07, 0x73, 0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
@@ -1232,11 +1232,11 @@ var file_bxcore_proto_rawDesc = []byte{
|
|
|
0x78, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x57, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f,
|
|
|
0x52, 0x0a, 0x77, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x20, 0x0a, 0x0b,
|
|
|
0x62, 0x69, 0x64, 0x4f, 0x70, 0x65, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x1a, 0x20, 0x01, 0x28,
|
|
|
- 0x09, 0x52, 0x0b, 0x62, 0x69, 0x64, 0x4f, 0x70, 0x65, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20,
|
|
|
+ 0x03, 0x52, 0x0b, 0x62, 0x69, 0x64, 0x4f, 0x70, 0x65, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20,
|
|
|
0x0a, 0x0b, 0x73, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x1b, 0x20,
|
|
|
- 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
|
|
|
+ 0x01, 0x28, 0x03, 0x52, 0x0b, 0x73, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
|
|
|
0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x69, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x1c,
|
|
|
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x69, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
|
|
|
+ 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x62, 0x69, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65,
|
|
|
0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x74, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
|
|
|
0x73, 0x69, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x70, 0x69, 0x64, 0x65, 0x72, 0x43, 0x6f,
|
|
|
0x64, 0x65, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x70, 0x69, 0x64, 0x65, 0x72,
|