|
@@ -46,7 +46,7 @@ type PublishInfoReq struct {
|
|
|
Attach string `protobuf:"bytes,13,opt,name=attach,proto3" json:"attach,omitempty"` //附件
|
|
|
UserId string `protobuf:"bytes,14,opt,name=userId,proto3" json:"userId,omitempty"` //用户id
|
|
|
AppId string `protobuf:"bytes,15,opt,name=appId,proto3" json:"appId,omitempty"` //剑鱼标识 默认10000
|
|
|
- EntId string `protobuf:"bytes,16,opt,name=entId,proto3" json:"entId,omitempty"` //剑鱼标识 默认10000
|
|
|
+ EntId int64 `protobuf:"varint,16,opt,name=entId,proto3" json:"entId,omitempty"` //剑鱼标识 默认10000
|
|
|
Contact *Contact `protobuf:"bytes,17,opt,name=contact,proto3" json:"contact,omitempty"`
|
|
|
Deadline string `protobuf:"bytes,18,opt,name=deadline,proto3" json:"deadline,omitempty"` //信息有效期
|
|
|
Phone string `protobuf:"bytes,19,opt,name=phone,proto3" json:"phone,omitempty"` //信息有效期
|
|
@@ -190,11 +190,11 @@ func (x *PublishInfoReq) GetAppId() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (x *PublishInfoReq) GetEntId() string {
|
|
|
+func (x *PublishInfoReq) GetEntId() int64 {
|
|
|
if x != nil {
|
|
|
return x.EntId
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
func (x *PublishInfoReq) GetContact() *Contact {
|
|
@@ -2400,7 +2400,7 @@ type SupplyInfoDetailData struct {
|
|
|
Province string `protobuf:"bytes,4,opt,name=province,proto3" json:"province,omitempty"` //省份
|
|
|
City string `protobuf:"bytes,5,opt,name=city,proto3" json:"city,omitempty"` //城市
|
|
|
ValidityTime string `protobuf:"bytes,6,opt,name=validityTime,proto3" json:"validityTime,omitempty"` //有效期
|
|
|
- EntId string `protobuf:"bytes,7,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
|
|
|
+ EntId int64 `protobuf:"varint,7,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
|
|
|
Attach string `protobuf:"bytes,8,opt,name=attach,proto3" json:"attach,omitempty"` //附件列表
|
|
|
InfoDetailContact *InfoDetailContact `protobuf:"bytes,9,opt,name=infoDetailContact,proto3" json:"infoDetailContact,omitempty"` //联系人详情
|
|
|
PublishTime string `protobuf:"bytes,10,opt,name=publishTime,proto3" json:"publishTime,omitempty"` //发布时间
|
|
@@ -2481,11 +2481,11 @@ func (x *SupplyInfoDetailData) GetValidityTime() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (x *SupplyInfoDetailData) GetEntId() string {
|
|
|
+func (x *SupplyInfoDetailData) GetEntId() int64 {
|
|
|
if x != nil {
|
|
|
return x.EntId
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
func (x *SupplyInfoDetailData) GetAttach() string {
|
|
@@ -2528,7 +2528,7 @@ type OtherSupplyInfoByEnt struct {
|
|
|
City string `protobuf:"bytes,4,opt,name=city,proto3" json:"city,omitempty"`
|
|
|
PublishTime string `protobuf:"bytes,5,opt,name=publishTime,proto3" json:"publishTime,omitempty"`
|
|
|
CreateTime string `protobuf:"bytes,6,opt,name=createTime,proto3" json:"createTime,omitempty"`
|
|
|
- EntId string `protobuf:"bytes,7,opt,name=entId,proto3" json:"entId,omitempty"`
|
|
|
+ EntId int64 `protobuf:"varint,7,opt,name=entId,proto3" json:"entId,omitempty"`
|
|
|
}
|
|
|
|
|
|
func (x *OtherSupplyInfoByEnt) Reset() {
|
|
@@ -2605,11 +2605,11 @@ func (x *OtherSupplyInfoByEnt) GetCreateTime() string {
|
|
|
return ""
|
|
|
}
|
|
|
|
|
|
-func (x *OtherSupplyInfoByEnt) GetEntId() string {
|
|
|
+func (x *OtherSupplyInfoByEnt) GetEntId() int64 {
|
|
|
if x != nil {
|
|
|
return x.EntId
|
|
|
}
|
|
|
- return ""
|
|
|
+ return 0
|
|
|
}
|
|
|
|
|
|
//上传附件
|
|
@@ -2848,7 +2848,7 @@ var file_consumer_proto_rawDesc = []byte{
|
|
|
0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
|
|
|
0x64, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09,
|
|
|
0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64,
|
|
|
- 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x2b, 0x0a,
|
|
|
+ 0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x2b, 0x0a,
|
|
|
0x07, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11,
|
|
|
0x2e, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x65, 0x72, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63,
|
|
|
0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x65,
|
|
@@ -3124,7 +3124,7 @@ var file_consumer_proto_rawDesc = []byte{
|
|
|
0x79, 0x12, 0x22, 0x0a, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x69, 0x74, 0x79, 0x54, 0x69, 0x6d,
|
|
|
0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x69, 0x74,
|
|
|
0x79, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x07,
|
|
|
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61,
|
|
|
+ 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61,
|
|
|
0x74, 0x74, 0x61, 0x63, 0x68, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x74, 0x74,
|
|
|
0x61, 0x63, 0x68, 0x12, 0x49, 0x0a, 0x11, 0x69, 0x6e, 0x66, 0x6f, 0x44, 0x65, 0x74, 0x61, 0x69,
|
|
|
0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b,
|
|
@@ -3149,7 +3149,7 @@ var file_consumer_proto_rawDesc = []byte{
|
|
|
0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
|
|
|
0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65,
|
|
|
- 0x6e, 0x74, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49,
|
|
|
+ 0x6e, 0x74, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49,
|
|
|
0x64, 0x22, 0x5f, 0x0a, 0x11, 0x49, 0x6e, 0x66, 0x6f, 0x46, 0x69, 0x6c, 0x65, 0x55, 0x70, 0x6c,
|
|
|
0x6f, 0x61, 0x64, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61,
|
|
|
0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61,
|