biService.pb.go 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.31.0
  4. // protoc v3.15.1
  5. // source: biService.proto
  6. package pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type MyDataAssetReq struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  24. NewUserId int64 `protobuf:"varint,2,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
  25. EntUserId int64 `protobuf:"varint,3,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  26. }
  27. func (x *MyDataAssetReq) Reset() {
  28. *x = MyDataAssetReq{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_biService_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *MyDataAssetReq) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*MyDataAssetReq) ProtoMessage() {}
  39. func (x *MyDataAssetReq) ProtoReflect() protoreflect.Message {
  40. mi := &file_biService_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use MyDataAssetReq.ProtoReflect.Descriptor instead.
  51. func (*MyDataAssetReq) Descriptor() ([]byte, []int) {
  52. return file_biService_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *MyDataAssetReq) GetUserId() string {
  55. if x != nil {
  56. return x.UserId
  57. }
  58. return ""
  59. }
  60. func (x *MyDataAssetReq) GetNewUserId() int64 {
  61. if x != nil {
  62. return x.NewUserId
  63. }
  64. return 0
  65. }
  66. func (x *MyDataAssetReq) GetEntUserId() int64 {
  67. if x != nil {
  68. return x.EntUserId
  69. }
  70. return 0
  71. }
  72. type MyDataAssetResp struct {
  73. state protoimpl.MessageState
  74. sizeCache protoimpl.SizeCache
  75. unknownFields protoimpl.UnknownFields
  76. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  77. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  78. Data *MyDataAsset `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  79. }
  80. func (x *MyDataAssetResp) Reset() {
  81. *x = MyDataAssetResp{}
  82. if protoimpl.UnsafeEnabled {
  83. mi := &file_biService_proto_msgTypes[1]
  84. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  85. ms.StoreMessageInfo(mi)
  86. }
  87. }
  88. func (x *MyDataAssetResp) String() string {
  89. return protoimpl.X.MessageStringOf(x)
  90. }
  91. func (*MyDataAssetResp) ProtoMessage() {}
  92. func (x *MyDataAssetResp) ProtoReflect() protoreflect.Message {
  93. mi := &file_biService_proto_msgTypes[1]
  94. if protoimpl.UnsafeEnabled && x != nil {
  95. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  96. if ms.LoadMessageInfo() == nil {
  97. ms.StoreMessageInfo(mi)
  98. }
  99. return ms
  100. }
  101. return mi.MessageOf(x)
  102. }
  103. // Deprecated: Use MyDataAssetResp.ProtoReflect.Descriptor instead.
  104. func (*MyDataAssetResp) Descriptor() ([]byte, []int) {
  105. return file_biService_proto_rawDescGZIP(), []int{1}
  106. }
  107. func (x *MyDataAssetResp) GetErrorCode() int64 {
  108. if x != nil {
  109. return x.ErrorCode
  110. }
  111. return 0
  112. }
  113. func (x *MyDataAssetResp) GetErrorMsg() string {
  114. if x != nil {
  115. return x.ErrorMsg
  116. }
  117. return ""
  118. }
  119. func (x *MyDataAssetResp) GetData() *MyDataAsset {
  120. if x != nil {
  121. return x.Data
  122. }
  123. return nil
  124. }
  125. type MyDataAsset struct {
  126. state protoimpl.MessageState
  127. sizeCache protoimpl.SizeCache
  128. unknownFields protoimpl.UnknownFields
  129. CollectInfoCount int64 `protobuf:"varint,1,opt,name=collect_info_count,json=collectInfoCount,proto3" json:"collect_info_count,omitempty"`
  130. FollowProjectCount int64 `protobuf:"varint,2,opt,name=follow_project_count,json=followProjectCount,proto3" json:"follow_project_count,omitempty"`
  131. CollectDocCount int64 `protobuf:"varint,3,opt,name=collect_doc_count,json=collectDocCount,proto3" json:"collect_doc_count,omitempty"`
  132. ClaimCustomerCount int64 `protobuf:"varint,4,opt,name=claim_customer_count,json=claimCustomerCount,proto3" json:"claim_customer_count,omitempty"`
  133. ClaimNzjCount int64 `protobuf:"varint,5,opt,name=claim_nzj_count,json=claimNzjCount,proto3" json:"claim_nzj_count,omitempty"`
  134. }
  135. func (x *MyDataAsset) Reset() {
  136. *x = MyDataAsset{}
  137. if protoimpl.UnsafeEnabled {
  138. mi := &file_biService_proto_msgTypes[2]
  139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  140. ms.StoreMessageInfo(mi)
  141. }
  142. }
  143. func (x *MyDataAsset) String() string {
  144. return protoimpl.X.MessageStringOf(x)
  145. }
  146. func (*MyDataAsset) ProtoMessage() {}
  147. func (x *MyDataAsset) ProtoReflect() protoreflect.Message {
  148. mi := &file_biService_proto_msgTypes[2]
  149. if protoimpl.UnsafeEnabled && x != nil {
  150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  151. if ms.LoadMessageInfo() == nil {
  152. ms.StoreMessageInfo(mi)
  153. }
  154. return ms
  155. }
  156. return mi.MessageOf(x)
  157. }
  158. // Deprecated: Use MyDataAsset.ProtoReflect.Descriptor instead.
  159. func (*MyDataAsset) Descriptor() ([]byte, []int) {
  160. return file_biService_proto_rawDescGZIP(), []int{2}
  161. }
  162. func (x *MyDataAsset) GetCollectInfoCount() int64 {
  163. if x != nil {
  164. return x.CollectInfoCount
  165. }
  166. return 0
  167. }
  168. func (x *MyDataAsset) GetFollowProjectCount() int64 {
  169. if x != nil {
  170. return x.FollowProjectCount
  171. }
  172. return 0
  173. }
  174. func (x *MyDataAsset) GetCollectDocCount() int64 {
  175. if x != nil {
  176. return x.CollectDocCount
  177. }
  178. return 0
  179. }
  180. func (x *MyDataAsset) GetClaimCustomerCount() int64 {
  181. if x != nil {
  182. return x.ClaimCustomerCount
  183. }
  184. return 0
  185. }
  186. func (x *MyDataAsset) GetClaimNzjCount() int64 {
  187. if x != nil {
  188. return x.ClaimNzjCount
  189. }
  190. return 0
  191. }
  192. type AddProjectReq struct {
  193. state protoimpl.MessageState
  194. sizeCache protoimpl.SizeCache
  195. unknownFields protoimpl.UnknownFields
  196. InfoId string `protobuf:"bytes,1,opt,name=info_id,json=infoId,proto3" json:"info_id,omitempty"` //信息id
  197. Source int64 `protobuf:"varint,2,opt,name=source,proto3" json:"source,omitempty"` //1-收藏,2-招标搜索,3-关注
  198. PositionId int64 `protobuf:"varint,3,opt,name=position_id,json=positionId,proto3" json:"position_id,omitempty"` //职位id
  199. PositionType int64 `protobuf:"varint,4,opt,name=position_type,json=positionType,proto3" json:"position_type,omitempty"` //职位类型
  200. AccountId int64 `protobuf:"varint,5,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"` //账户id
  201. CompanyName string `protobuf:"bytes,6,opt,name=company_name,json=companyName,proto3" json:"company_name,omitempty"`
  202. UserName string `protobuf:"bytes,7,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
  203. UserId int64 `protobuf:"varint,8,opt,name=userId,proto3" json:"userId,omitempty"`
  204. EntId int64 `protobuf:"varint,9,opt,name=entId,proto3" json:"entId,omitempty"`
  205. EntUserName string `protobuf:"bytes,10,opt,name=entUserName,proto3" json:"entUserName,omitempty"`
  206. }
  207. func (x *AddProjectReq) Reset() {
  208. *x = AddProjectReq{}
  209. if protoimpl.UnsafeEnabled {
  210. mi := &file_biService_proto_msgTypes[3]
  211. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  212. ms.StoreMessageInfo(mi)
  213. }
  214. }
  215. func (x *AddProjectReq) String() string {
  216. return protoimpl.X.MessageStringOf(x)
  217. }
  218. func (*AddProjectReq) ProtoMessage() {}
  219. func (x *AddProjectReq) ProtoReflect() protoreflect.Message {
  220. mi := &file_biService_proto_msgTypes[3]
  221. if protoimpl.UnsafeEnabled && x != nil {
  222. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  223. if ms.LoadMessageInfo() == nil {
  224. ms.StoreMessageInfo(mi)
  225. }
  226. return ms
  227. }
  228. return mi.MessageOf(x)
  229. }
  230. // Deprecated: Use AddProjectReq.ProtoReflect.Descriptor instead.
  231. func (*AddProjectReq) Descriptor() ([]byte, []int) {
  232. return file_biService_proto_rawDescGZIP(), []int{3}
  233. }
  234. func (x *AddProjectReq) GetInfoId() string {
  235. if x != nil {
  236. return x.InfoId
  237. }
  238. return ""
  239. }
  240. func (x *AddProjectReq) GetSource() int64 {
  241. if x != nil {
  242. return x.Source
  243. }
  244. return 0
  245. }
  246. func (x *AddProjectReq) GetPositionId() int64 {
  247. if x != nil {
  248. return x.PositionId
  249. }
  250. return 0
  251. }
  252. func (x *AddProjectReq) GetPositionType() int64 {
  253. if x != nil {
  254. return x.PositionType
  255. }
  256. return 0
  257. }
  258. func (x *AddProjectReq) GetAccountId() int64 {
  259. if x != nil {
  260. return x.AccountId
  261. }
  262. return 0
  263. }
  264. func (x *AddProjectReq) GetCompanyName() string {
  265. if x != nil {
  266. return x.CompanyName
  267. }
  268. return ""
  269. }
  270. func (x *AddProjectReq) GetUserName() string {
  271. if x != nil {
  272. return x.UserName
  273. }
  274. return ""
  275. }
  276. func (x *AddProjectReq) GetUserId() int64 {
  277. if x != nil {
  278. return x.UserId
  279. }
  280. return 0
  281. }
  282. func (x *AddProjectReq) GetEntId() int64 {
  283. if x != nil {
  284. return x.EntId
  285. }
  286. return 0
  287. }
  288. func (x *AddProjectReq) GetEntUserName() string {
  289. if x != nil {
  290. return x.EntUserName
  291. }
  292. return ""
  293. }
  294. type AddProjectResp struct {
  295. state protoimpl.MessageState
  296. sizeCache protoimpl.SizeCache
  297. unknownFields protoimpl.UnknownFields
  298. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  299. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  300. Data *AddProject `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  301. }
  302. func (x *AddProjectResp) Reset() {
  303. *x = AddProjectResp{}
  304. if protoimpl.UnsafeEnabled {
  305. mi := &file_biService_proto_msgTypes[4]
  306. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  307. ms.StoreMessageInfo(mi)
  308. }
  309. }
  310. func (x *AddProjectResp) String() string {
  311. return protoimpl.X.MessageStringOf(x)
  312. }
  313. func (*AddProjectResp) ProtoMessage() {}
  314. func (x *AddProjectResp) ProtoReflect() protoreflect.Message {
  315. mi := &file_biService_proto_msgTypes[4]
  316. if protoimpl.UnsafeEnabled && x != nil {
  317. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  318. if ms.LoadMessageInfo() == nil {
  319. ms.StoreMessageInfo(mi)
  320. }
  321. return ms
  322. }
  323. return mi.MessageOf(x)
  324. }
  325. // Deprecated: Use AddProjectResp.ProtoReflect.Descriptor instead.
  326. func (*AddProjectResp) Descriptor() ([]byte, []int) {
  327. return file_biService_proto_rawDescGZIP(), []int{4}
  328. }
  329. func (x *AddProjectResp) GetErrorCode() int64 {
  330. if x != nil {
  331. return x.ErrorCode
  332. }
  333. return 0
  334. }
  335. func (x *AddProjectResp) GetErrorMsg() string {
  336. if x != nil {
  337. return x.ErrorMsg
  338. }
  339. return ""
  340. }
  341. func (x *AddProjectResp) GetData() *AddProject {
  342. if x != nil {
  343. return x.Data
  344. }
  345. return nil
  346. }
  347. type AddProject struct {
  348. state protoimpl.MessageState
  349. sizeCache protoimpl.SizeCache
  350. unknownFields protoimpl.UnknownFields
  351. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  352. Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
  353. }
  354. func (x *AddProject) Reset() {
  355. *x = AddProject{}
  356. if protoimpl.UnsafeEnabled {
  357. mi := &file_biService_proto_msgTypes[5]
  358. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  359. ms.StoreMessageInfo(mi)
  360. }
  361. }
  362. func (x *AddProject) String() string {
  363. return protoimpl.X.MessageStringOf(x)
  364. }
  365. func (*AddProject) ProtoMessage() {}
  366. func (x *AddProject) ProtoReflect() protoreflect.Message {
  367. mi := &file_biService_proto_msgTypes[5]
  368. if protoimpl.UnsafeEnabled && x != nil {
  369. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  370. if ms.LoadMessageInfo() == nil {
  371. ms.StoreMessageInfo(mi)
  372. }
  373. return ms
  374. }
  375. return mi.MessageOf(x)
  376. }
  377. // Deprecated: Use AddProject.ProtoReflect.Descriptor instead.
  378. func (*AddProject) Descriptor() ([]byte, []int) {
  379. return file_biService_proto_rawDescGZIP(), []int{5}
  380. }
  381. func (x *AddProject) GetStatus() int64 {
  382. if x != nil {
  383. return x.Status
  384. }
  385. return 0
  386. }
  387. func (x *AddProject) GetCount() int64 {
  388. if x != nil {
  389. return x.Count
  390. }
  391. return 0
  392. }
  393. type GetInfoIdResp struct {
  394. state protoimpl.MessageState
  395. sizeCache protoimpl.SizeCache
  396. unknownFields protoimpl.UnknownFields
  397. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  398. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  399. Data []string `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  400. }
  401. func (x *GetInfoIdResp) Reset() {
  402. *x = GetInfoIdResp{}
  403. if protoimpl.UnsafeEnabled {
  404. mi := &file_biService_proto_msgTypes[6]
  405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  406. ms.StoreMessageInfo(mi)
  407. }
  408. }
  409. func (x *GetInfoIdResp) String() string {
  410. return protoimpl.X.MessageStringOf(x)
  411. }
  412. func (*GetInfoIdResp) ProtoMessage() {}
  413. func (x *GetInfoIdResp) ProtoReflect() protoreflect.Message {
  414. mi := &file_biService_proto_msgTypes[6]
  415. if protoimpl.UnsafeEnabled && x != nil {
  416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  417. if ms.LoadMessageInfo() == nil {
  418. ms.StoreMessageInfo(mi)
  419. }
  420. return ms
  421. }
  422. return mi.MessageOf(x)
  423. }
  424. // Deprecated: Use GetInfoIdResp.ProtoReflect.Descriptor instead.
  425. func (*GetInfoIdResp) Descriptor() ([]byte, []int) {
  426. return file_biService_proto_rawDescGZIP(), []int{6}
  427. }
  428. func (x *GetInfoIdResp) GetErrorCode() int64 {
  429. if x != nil {
  430. return x.ErrorCode
  431. }
  432. return 0
  433. }
  434. func (x *GetInfoIdResp) GetErrorMsg() string {
  435. if x != nil {
  436. return x.ErrorMsg
  437. }
  438. return ""
  439. }
  440. func (x *GetInfoIdResp) GetData() []string {
  441. if x != nil {
  442. return x.Data
  443. }
  444. return nil
  445. }
  446. type DrawClueReq struct {
  447. state protoimpl.MessageState
  448. sizeCache protoimpl.SizeCache
  449. unknownFields protoimpl.UnknownFields
  450. PositionId int64 `protobuf:"varint,1,opt,name=positionId,proto3" json:"positionId,omitempty"`
  451. Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
  452. }
  453. func (x *DrawClueReq) Reset() {
  454. *x = DrawClueReq{}
  455. if protoimpl.UnsafeEnabled {
  456. mi := &file_biService_proto_msgTypes[7]
  457. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  458. ms.StoreMessageInfo(mi)
  459. }
  460. }
  461. func (x *DrawClueReq) String() string {
  462. return protoimpl.X.MessageStringOf(x)
  463. }
  464. func (*DrawClueReq) ProtoMessage() {}
  465. func (x *DrawClueReq) ProtoReflect() protoreflect.Message {
  466. mi := &file_biService_proto_msgTypes[7]
  467. if protoimpl.UnsafeEnabled && x != nil {
  468. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  469. if ms.LoadMessageInfo() == nil {
  470. ms.StoreMessageInfo(mi)
  471. }
  472. return ms
  473. }
  474. return mi.MessageOf(x)
  475. }
  476. // Deprecated: Use DrawClueReq.ProtoReflect.Descriptor instead.
  477. func (*DrawClueReq) Descriptor() ([]byte, []int) {
  478. return file_biService_proto_rawDescGZIP(), []int{7}
  479. }
  480. func (x *DrawClueReq) GetPositionId() int64 {
  481. if x != nil {
  482. return x.PositionId
  483. }
  484. return 0
  485. }
  486. func (x *DrawClueReq) GetCount() int64 {
  487. if x != nil {
  488. return x.Count
  489. }
  490. return 0
  491. }
  492. type CallReq struct {
  493. state protoimpl.MessageState
  494. sizeCache protoimpl.SizeCache
  495. unknownFields protoimpl.UnknownFields
  496. PositionId int64 `protobuf:"varint,1,opt,name=position_id,json=positionId,proto3" json:"position_id,omitempty"`
  497. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
  498. }
  499. func (x *CallReq) Reset() {
  500. *x = CallReq{}
  501. if protoimpl.UnsafeEnabled {
  502. mi := &file_biService_proto_msgTypes[8]
  503. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  504. ms.StoreMessageInfo(mi)
  505. }
  506. }
  507. func (x *CallReq) String() string {
  508. return protoimpl.X.MessageStringOf(x)
  509. }
  510. func (*CallReq) ProtoMessage() {}
  511. func (x *CallReq) ProtoReflect() protoreflect.Message {
  512. mi := &file_biService_proto_msgTypes[8]
  513. if protoimpl.UnsafeEnabled && x != nil {
  514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  515. if ms.LoadMessageInfo() == nil {
  516. ms.StoreMessageInfo(mi)
  517. }
  518. return ms
  519. }
  520. return mi.MessageOf(x)
  521. }
  522. // Deprecated: Use CallReq.ProtoReflect.Descriptor instead.
  523. func (*CallReq) Descriptor() ([]byte, []int) {
  524. return file_biService_proto_rawDescGZIP(), []int{8}
  525. }
  526. func (x *CallReq) GetPositionId() int64 {
  527. if x != nil {
  528. return x.PositionId
  529. }
  530. return 0
  531. }
  532. func (x *CallReq) GetPhone() string {
  533. if x != nil {
  534. return x.Phone
  535. }
  536. return ""
  537. }
  538. type Resp struct {
  539. state protoimpl.MessageState
  540. sizeCache protoimpl.SizeCache
  541. unknownFields protoimpl.UnknownFields
  542. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  543. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  544. Data string `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  545. }
  546. func (x *Resp) Reset() {
  547. *x = Resp{}
  548. if protoimpl.UnsafeEnabled {
  549. mi := &file_biService_proto_msgTypes[9]
  550. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  551. ms.StoreMessageInfo(mi)
  552. }
  553. }
  554. func (x *Resp) String() string {
  555. return protoimpl.X.MessageStringOf(x)
  556. }
  557. func (*Resp) ProtoMessage() {}
  558. func (x *Resp) ProtoReflect() protoreflect.Message {
  559. mi := &file_biService_proto_msgTypes[9]
  560. if protoimpl.UnsafeEnabled && x != nil {
  561. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  562. if ms.LoadMessageInfo() == nil {
  563. ms.StoreMessageInfo(mi)
  564. }
  565. return ms
  566. }
  567. return mi.MessageOf(x)
  568. }
  569. // Deprecated: Use Resp.ProtoReflect.Descriptor instead.
  570. func (*Resp) Descriptor() ([]byte, []int) {
  571. return file_biService_proto_rawDescGZIP(), []int{9}
  572. }
  573. func (x *Resp) GetErrorCode() int64 {
  574. if x != nil {
  575. return x.ErrorCode
  576. }
  577. return 0
  578. }
  579. func (x *Resp) GetErrorMsg() string {
  580. if x != nil {
  581. return x.ErrorMsg
  582. }
  583. return ""
  584. }
  585. func (x *Resp) GetData() string {
  586. if x != nil {
  587. return x.Data
  588. }
  589. return ""
  590. }
  591. type Reply struct {
  592. state protoimpl.MessageState
  593. sizeCache protoimpl.SizeCache
  594. unknownFields protoimpl.UnknownFields
  595. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  596. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  597. Data map[string]string `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  598. }
  599. func (x *Reply) Reset() {
  600. *x = Reply{}
  601. if protoimpl.UnsafeEnabled {
  602. mi := &file_biService_proto_msgTypes[10]
  603. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  604. ms.StoreMessageInfo(mi)
  605. }
  606. }
  607. func (x *Reply) String() string {
  608. return protoimpl.X.MessageStringOf(x)
  609. }
  610. func (*Reply) ProtoMessage() {}
  611. func (x *Reply) ProtoReflect() protoreflect.Message {
  612. mi := &file_biService_proto_msgTypes[10]
  613. if protoimpl.UnsafeEnabled && x != nil {
  614. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  615. if ms.LoadMessageInfo() == nil {
  616. ms.StoreMessageInfo(mi)
  617. }
  618. return ms
  619. }
  620. return mi.MessageOf(x)
  621. }
  622. // Deprecated: Use Reply.ProtoReflect.Descriptor instead.
  623. func (*Reply) Descriptor() ([]byte, []int) {
  624. return file_biService_proto_rawDescGZIP(), []int{10}
  625. }
  626. func (x *Reply) GetErrorCode() int64 {
  627. if x != nil {
  628. return x.ErrorCode
  629. }
  630. return 0
  631. }
  632. func (x *Reply) GetErrorMsg() string {
  633. if x != nil {
  634. return x.ErrorMsg
  635. }
  636. return ""
  637. }
  638. func (x *Reply) GetData() map[string]string {
  639. if x != nil {
  640. return x.Data
  641. }
  642. return nil
  643. }
  644. type DistributeClueReq struct {
  645. state protoimpl.MessageState
  646. sizeCache protoimpl.SizeCache
  647. unknownFields protoimpl.UnknownFields
  648. ClueCount string `protobuf:"bytes,1,opt,name=clueCount,proto3" json:"clueCount,omitempty"`
  649. ClueIdList []int64 `protobuf:"varint,2,rep,packed,name=clueIdList,proto3" json:"clueIdList,omitempty"`
  650. Datas []*DistributeDatas `protobuf:"bytes,3,rep,name=datas,proto3" json:"datas,omitempty"`
  651. PositionId int64 `protobuf:"varint,4,opt,name=positionId,proto3" json:"positionId,omitempty"`
  652. IsTask int64 `protobuf:"varint,5,opt,name=isTask,proto3" json:"isTask,omitempty"`
  653. }
  654. func (x *DistributeClueReq) Reset() {
  655. *x = DistributeClueReq{}
  656. if protoimpl.UnsafeEnabled {
  657. mi := &file_biService_proto_msgTypes[11]
  658. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  659. ms.StoreMessageInfo(mi)
  660. }
  661. }
  662. func (x *DistributeClueReq) String() string {
  663. return protoimpl.X.MessageStringOf(x)
  664. }
  665. func (*DistributeClueReq) ProtoMessage() {}
  666. func (x *DistributeClueReq) ProtoReflect() protoreflect.Message {
  667. mi := &file_biService_proto_msgTypes[11]
  668. if protoimpl.UnsafeEnabled && x != nil {
  669. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  670. if ms.LoadMessageInfo() == nil {
  671. ms.StoreMessageInfo(mi)
  672. }
  673. return ms
  674. }
  675. return mi.MessageOf(x)
  676. }
  677. // Deprecated: Use DistributeClueReq.ProtoReflect.Descriptor instead.
  678. func (*DistributeClueReq) Descriptor() ([]byte, []int) {
  679. return file_biService_proto_rawDescGZIP(), []int{11}
  680. }
  681. func (x *DistributeClueReq) GetClueCount() string {
  682. if x != nil {
  683. return x.ClueCount
  684. }
  685. return ""
  686. }
  687. func (x *DistributeClueReq) GetClueIdList() []int64 {
  688. if x != nil {
  689. return x.ClueIdList
  690. }
  691. return nil
  692. }
  693. func (x *DistributeClueReq) GetDatas() []*DistributeDatas {
  694. if x != nil {
  695. return x.Datas
  696. }
  697. return nil
  698. }
  699. func (x *DistributeClueReq) GetPositionId() int64 {
  700. if x != nil {
  701. return x.PositionId
  702. }
  703. return 0
  704. }
  705. func (x *DistributeClueReq) GetIsTask() int64 {
  706. if x != nil {
  707. return x.IsTask
  708. }
  709. return 0
  710. }
  711. type DistributeDatas struct {
  712. state protoimpl.MessageState
  713. sizeCache protoimpl.SizeCache
  714. unknownFields protoimpl.UnknownFields
  715. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  716. PositionId int64 `protobuf:"varint,2,opt,name=positionId,proto3" json:"positionId,omitempty"`
  717. TotalCount string `protobuf:"bytes,3,opt,name=totalCount,proto3" json:"totalCount,omitempty"`
  718. UncompletedCount string `protobuf:"bytes,4,opt,name=uncompletedCount,proto3" json:"uncompletedCount,omitempty"`
  719. DistributedCount int64 `protobuf:"varint,5,opt,name=distributedCount,proto3" json:"distributedCount,omitempty"`
  720. }
  721. func (x *DistributeDatas) Reset() {
  722. *x = DistributeDatas{}
  723. if protoimpl.UnsafeEnabled {
  724. mi := &file_biService_proto_msgTypes[12]
  725. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  726. ms.StoreMessageInfo(mi)
  727. }
  728. }
  729. func (x *DistributeDatas) String() string {
  730. return protoimpl.X.MessageStringOf(x)
  731. }
  732. func (*DistributeDatas) ProtoMessage() {}
  733. func (x *DistributeDatas) ProtoReflect() protoreflect.Message {
  734. mi := &file_biService_proto_msgTypes[12]
  735. if protoimpl.UnsafeEnabled && x != nil {
  736. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  737. if ms.LoadMessageInfo() == nil {
  738. ms.StoreMessageInfo(mi)
  739. }
  740. return ms
  741. }
  742. return mi.MessageOf(x)
  743. }
  744. // Deprecated: Use DistributeDatas.ProtoReflect.Descriptor instead.
  745. func (*DistributeDatas) Descriptor() ([]byte, []int) {
  746. return file_biService_proto_rawDescGZIP(), []int{12}
  747. }
  748. func (x *DistributeDatas) GetName() string {
  749. if x != nil {
  750. return x.Name
  751. }
  752. return ""
  753. }
  754. func (x *DistributeDatas) GetPositionId() int64 {
  755. if x != nil {
  756. return x.PositionId
  757. }
  758. return 0
  759. }
  760. func (x *DistributeDatas) GetTotalCount() string {
  761. if x != nil {
  762. return x.TotalCount
  763. }
  764. return ""
  765. }
  766. func (x *DistributeDatas) GetUncompletedCount() string {
  767. if x != nil {
  768. return x.UncompletedCount
  769. }
  770. return ""
  771. }
  772. func (x *DistributeDatas) GetDistributedCount() int64 {
  773. if x != nil {
  774. return x.DistributedCount
  775. }
  776. return 0
  777. }
  778. type ClueImportReq struct {
  779. state protoimpl.MessageState
  780. sizeCache protoimpl.SizeCache
  781. unknownFields protoimpl.UnknownFields
  782. Pcbh string `protobuf:"bytes,1,opt,name=pcbh,proto3" json:"pcbh,omitempty"`
  783. PositionId int64 `protobuf:"varint,2,opt,name=positionId,proto3" json:"positionId,omitempty"`
  784. }
  785. func (x *ClueImportReq) Reset() {
  786. *x = ClueImportReq{}
  787. if protoimpl.UnsafeEnabled {
  788. mi := &file_biService_proto_msgTypes[13]
  789. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  790. ms.StoreMessageInfo(mi)
  791. }
  792. }
  793. func (x *ClueImportReq) String() string {
  794. return protoimpl.X.MessageStringOf(x)
  795. }
  796. func (*ClueImportReq) ProtoMessage() {}
  797. func (x *ClueImportReq) ProtoReflect() protoreflect.Message {
  798. mi := &file_biService_proto_msgTypes[13]
  799. if protoimpl.UnsafeEnabled && x != nil {
  800. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  801. if ms.LoadMessageInfo() == nil {
  802. ms.StoreMessageInfo(mi)
  803. }
  804. return ms
  805. }
  806. return mi.MessageOf(x)
  807. }
  808. // Deprecated: Use ClueImportReq.ProtoReflect.Descriptor instead.
  809. func (*ClueImportReq) Descriptor() ([]byte, []int) {
  810. return file_biService_proto_rawDescGZIP(), []int{13}
  811. }
  812. func (x *ClueImportReq) GetPcbh() string {
  813. if x != nil {
  814. return x.Pcbh
  815. }
  816. return ""
  817. }
  818. func (x *ClueImportReq) GetPositionId() int64 {
  819. if x != nil {
  820. return x.PositionId
  821. }
  822. return 0
  823. }
  824. type ClueImportResp struct {
  825. state protoimpl.MessageState
  826. sizeCache protoimpl.SizeCache
  827. unknownFields protoimpl.UnknownFields
  828. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  829. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  830. Data *ClueImport `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  831. }
  832. func (x *ClueImportResp) Reset() {
  833. *x = ClueImportResp{}
  834. if protoimpl.UnsafeEnabled {
  835. mi := &file_biService_proto_msgTypes[14]
  836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  837. ms.StoreMessageInfo(mi)
  838. }
  839. }
  840. func (x *ClueImportResp) String() string {
  841. return protoimpl.X.MessageStringOf(x)
  842. }
  843. func (*ClueImportResp) ProtoMessage() {}
  844. func (x *ClueImportResp) ProtoReflect() protoreflect.Message {
  845. mi := &file_biService_proto_msgTypes[14]
  846. if protoimpl.UnsafeEnabled && x != nil {
  847. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  848. if ms.LoadMessageInfo() == nil {
  849. ms.StoreMessageInfo(mi)
  850. }
  851. return ms
  852. }
  853. return mi.MessageOf(x)
  854. }
  855. // Deprecated: Use ClueImportResp.ProtoReflect.Descriptor instead.
  856. func (*ClueImportResp) Descriptor() ([]byte, []int) {
  857. return file_biService_proto_rawDescGZIP(), []int{14}
  858. }
  859. func (x *ClueImportResp) GetErrorCode() int64 {
  860. if x != nil {
  861. return x.ErrorCode
  862. }
  863. return 0
  864. }
  865. func (x *ClueImportResp) GetErrorMsg() string {
  866. if x != nil {
  867. return x.ErrorMsg
  868. }
  869. return ""
  870. }
  871. func (x *ClueImportResp) GetData() *ClueImport {
  872. if x != nil {
  873. return x.Data
  874. }
  875. return nil
  876. }
  877. type ClueImport struct {
  878. state protoimpl.MessageState
  879. sizeCache protoimpl.SizeCache
  880. unknownFields protoimpl.UnknownFields
  881. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  882. Result string `protobuf:"bytes,2,opt,name=result,proto3" json:"result,omitempty"`
  883. }
  884. func (x *ClueImport) Reset() {
  885. *x = ClueImport{}
  886. if protoimpl.UnsafeEnabled {
  887. mi := &file_biService_proto_msgTypes[15]
  888. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  889. ms.StoreMessageInfo(mi)
  890. }
  891. }
  892. func (x *ClueImport) String() string {
  893. return protoimpl.X.MessageStringOf(x)
  894. }
  895. func (*ClueImport) ProtoMessage() {}
  896. func (x *ClueImport) ProtoReflect() protoreflect.Message {
  897. mi := &file_biService_proto_msgTypes[15]
  898. if protoimpl.UnsafeEnabled && x != nil {
  899. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  900. if ms.LoadMessageInfo() == nil {
  901. ms.StoreMessageInfo(mi)
  902. }
  903. return ms
  904. }
  905. return mi.MessageOf(x)
  906. }
  907. // Deprecated: Use ClueImport.ProtoReflect.Descriptor instead.
  908. func (*ClueImport) Descriptor() ([]byte, []int) {
  909. return file_biService_proto_rawDescGZIP(), []int{15}
  910. }
  911. func (x *ClueImport) GetStatus() int64 {
  912. if x != nil {
  913. return x.Status
  914. }
  915. return 0
  916. }
  917. func (x *ClueImport) GetResult() string {
  918. if x != nil {
  919. return x.Result
  920. }
  921. return ""
  922. }
  923. type ClueAddReq struct {
  924. state protoimpl.MessageState
  925. sizeCache protoimpl.SizeCache
  926. unknownFields protoimpl.UnknownFields
  927. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"`
  928. Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
  929. Source string `protobuf:"bytes,3,opt,name=source,proto3" json:"source,omitempty"`
  930. Status999 string `protobuf:"bytes,4,opt,name=status999,proto3" json:"status999,omitempty"`
  931. Owner string `protobuf:"bytes,5,opt,name=owner,proto3" json:"owner,omitempty"`
  932. EmpNo string `protobuf:"bytes,6,opt,name=empNo,proto3" json:"empNo,omitempty"`
  933. Company string `protobuf:"bytes,7,opt,name=company,proto3" json:"company,omitempty"`
  934. IsPolicymaker string `protobuf:"bytes,8,opt,name=isPolicymaker,proto3" json:"isPolicymaker,omitempty"`
  935. BelongToIndustry string `protobuf:"bytes,9,opt,name=belongToIndustry,proto3" json:"belongToIndustry,omitempty"`
  936. Job string `protobuf:"bytes,10,opt,name=job,proto3" json:"job,omitempty"`
  937. CustomerNeeds string `protobuf:"bytes,11,opt,name=customerNeeds,proto3" json:"customerNeeds,omitempty"`
  938. BelongTo string `protobuf:"bytes,12,opt,name=belongTo,proto3" json:"belongTo,omitempty"`
  939. WantGoods string `protobuf:"bytes,13,opt,name=wantGoods,proto3" json:"wantGoods,omitempty"`
  940. CustomerBudget string `protobuf:"bytes,14,opt,name=customerBudget,proto3" json:"customerBudget,omitempty"`
  941. }
  942. func (x *ClueAddReq) Reset() {
  943. *x = ClueAddReq{}
  944. if protoimpl.UnsafeEnabled {
  945. mi := &file_biService_proto_msgTypes[16]
  946. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  947. ms.StoreMessageInfo(mi)
  948. }
  949. }
  950. func (x *ClueAddReq) String() string {
  951. return protoimpl.X.MessageStringOf(x)
  952. }
  953. func (*ClueAddReq) ProtoMessage() {}
  954. func (x *ClueAddReq) ProtoReflect() protoreflect.Message {
  955. mi := &file_biService_proto_msgTypes[16]
  956. if protoimpl.UnsafeEnabled && x != nil {
  957. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  958. if ms.LoadMessageInfo() == nil {
  959. ms.StoreMessageInfo(mi)
  960. }
  961. return ms
  962. }
  963. return mi.MessageOf(x)
  964. }
  965. // Deprecated: Use ClueAddReq.ProtoReflect.Descriptor instead.
  966. func (*ClueAddReq) Descriptor() ([]byte, []int) {
  967. return file_biService_proto_rawDescGZIP(), []int{16}
  968. }
  969. func (x *ClueAddReq) GetPhone() string {
  970. if x != nil {
  971. return x.Phone
  972. }
  973. return ""
  974. }
  975. func (x *ClueAddReq) GetUsername() string {
  976. if x != nil {
  977. return x.Username
  978. }
  979. return ""
  980. }
  981. func (x *ClueAddReq) GetSource() string {
  982. if x != nil {
  983. return x.Source
  984. }
  985. return ""
  986. }
  987. func (x *ClueAddReq) GetStatus999() string {
  988. if x != nil {
  989. return x.Status999
  990. }
  991. return ""
  992. }
  993. func (x *ClueAddReq) GetOwner() string {
  994. if x != nil {
  995. return x.Owner
  996. }
  997. return ""
  998. }
  999. func (x *ClueAddReq) GetEmpNo() string {
  1000. if x != nil {
  1001. return x.EmpNo
  1002. }
  1003. return ""
  1004. }
  1005. func (x *ClueAddReq) GetCompany() string {
  1006. if x != nil {
  1007. return x.Company
  1008. }
  1009. return ""
  1010. }
  1011. func (x *ClueAddReq) GetIsPolicymaker() string {
  1012. if x != nil {
  1013. return x.IsPolicymaker
  1014. }
  1015. return ""
  1016. }
  1017. func (x *ClueAddReq) GetBelongToIndustry() string {
  1018. if x != nil {
  1019. return x.BelongToIndustry
  1020. }
  1021. return ""
  1022. }
  1023. func (x *ClueAddReq) GetJob() string {
  1024. if x != nil {
  1025. return x.Job
  1026. }
  1027. return ""
  1028. }
  1029. func (x *ClueAddReq) GetCustomerNeeds() string {
  1030. if x != nil {
  1031. return x.CustomerNeeds
  1032. }
  1033. return ""
  1034. }
  1035. func (x *ClueAddReq) GetBelongTo() string {
  1036. if x != nil {
  1037. return x.BelongTo
  1038. }
  1039. return ""
  1040. }
  1041. func (x *ClueAddReq) GetWantGoods() string {
  1042. if x != nil {
  1043. return x.WantGoods
  1044. }
  1045. return ""
  1046. }
  1047. func (x *ClueAddReq) GetCustomerBudget() string {
  1048. if x != nil {
  1049. return x.CustomerBudget
  1050. }
  1051. return ""
  1052. }
  1053. type SqlManageReq struct {
  1054. state protoimpl.MessageState
  1055. sizeCache protoimpl.SizeCache
  1056. unknownFields protoimpl.UnknownFields
  1057. Id float32 `protobuf:"fixed32,1,opt,name=id,proto3" json:"id,omitempty"`
  1058. Params []*Param `protobuf:"bytes,2,rep,name=params,proto3" json:"params,omitempty"`
  1059. }
  1060. func (x *SqlManageReq) Reset() {
  1061. *x = SqlManageReq{}
  1062. if protoimpl.UnsafeEnabled {
  1063. mi := &file_biService_proto_msgTypes[17]
  1064. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1065. ms.StoreMessageInfo(mi)
  1066. }
  1067. }
  1068. func (x *SqlManageReq) String() string {
  1069. return protoimpl.X.MessageStringOf(x)
  1070. }
  1071. func (*SqlManageReq) ProtoMessage() {}
  1072. func (x *SqlManageReq) ProtoReflect() protoreflect.Message {
  1073. mi := &file_biService_proto_msgTypes[17]
  1074. if protoimpl.UnsafeEnabled && x != nil {
  1075. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1076. if ms.LoadMessageInfo() == nil {
  1077. ms.StoreMessageInfo(mi)
  1078. }
  1079. return ms
  1080. }
  1081. return mi.MessageOf(x)
  1082. }
  1083. // Deprecated: Use SqlManageReq.ProtoReflect.Descriptor instead.
  1084. func (*SqlManageReq) Descriptor() ([]byte, []int) {
  1085. return file_biService_proto_rawDescGZIP(), []int{17}
  1086. }
  1087. func (x *SqlManageReq) GetId() float32 {
  1088. if x != nil {
  1089. return x.Id
  1090. }
  1091. return 0
  1092. }
  1093. func (x *SqlManageReq) GetParams() []*Param {
  1094. if x != nil {
  1095. return x.Params
  1096. }
  1097. return nil
  1098. }
  1099. type MyInfoReq struct {
  1100. state protoimpl.MessageState
  1101. sizeCache protoimpl.SizeCache
  1102. unknownFields protoimpl.UnknownFields
  1103. Bid string `protobuf:"bytes,1,opt,name=bid,proto3" json:"bid,omitempty"`
  1104. Sid string `protobuf:"bytes,2,opt,name=sid,proto3" json:"sid,omitempty"`
  1105. }
  1106. func (x *MyInfoReq) Reset() {
  1107. *x = MyInfoReq{}
  1108. if protoimpl.UnsafeEnabled {
  1109. mi := &file_biService_proto_msgTypes[18]
  1110. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1111. ms.StoreMessageInfo(mi)
  1112. }
  1113. }
  1114. func (x *MyInfoReq) String() string {
  1115. return protoimpl.X.MessageStringOf(x)
  1116. }
  1117. func (*MyInfoReq) ProtoMessage() {}
  1118. func (x *MyInfoReq) ProtoReflect() protoreflect.Message {
  1119. mi := &file_biService_proto_msgTypes[18]
  1120. if protoimpl.UnsafeEnabled && x != nil {
  1121. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1122. if ms.LoadMessageInfo() == nil {
  1123. ms.StoreMessageInfo(mi)
  1124. }
  1125. return ms
  1126. }
  1127. return mi.MessageOf(x)
  1128. }
  1129. // Deprecated: Use MyInfoReq.ProtoReflect.Descriptor instead.
  1130. func (*MyInfoReq) Descriptor() ([]byte, []int) {
  1131. return file_biService_proto_rawDescGZIP(), []int{18}
  1132. }
  1133. func (x *MyInfoReq) GetBid() string {
  1134. if x != nil {
  1135. return x.Bid
  1136. }
  1137. return ""
  1138. }
  1139. func (x *MyInfoReq) GetSid() string {
  1140. if x != nil {
  1141. return x.Sid
  1142. }
  1143. return ""
  1144. }
  1145. type Param struct {
  1146. state protoimpl.MessageState
  1147. sizeCache protoimpl.SizeCache
  1148. unknownFields protoimpl.UnknownFields
  1149. Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
  1150. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
  1151. }
  1152. func (x *Param) Reset() {
  1153. *x = Param{}
  1154. if protoimpl.UnsafeEnabled {
  1155. mi := &file_biService_proto_msgTypes[19]
  1156. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1157. ms.StoreMessageInfo(mi)
  1158. }
  1159. }
  1160. func (x *Param) String() string {
  1161. return protoimpl.X.MessageStringOf(x)
  1162. }
  1163. func (*Param) ProtoMessage() {}
  1164. func (x *Param) ProtoReflect() protoreflect.Message {
  1165. mi := &file_biService_proto_msgTypes[19]
  1166. if protoimpl.UnsafeEnabled && x != nil {
  1167. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1168. if ms.LoadMessageInfo() == nil {
  1169. ms.StoreMessageInfo(mi)
  1170. }
  1171. return ms
  1172. }
  1173. return mi.MessageOf(x)
  1174. }
  1175. // Deprecated: Use Param.ProtoReflect.Descriptor instead.
  1176. func (*Param) Descriptor() ([]byte, []int) {
  1177. return file_biService_proto_rawDescGZIP(), []int{19}
  1178. }
  1179. func (x *Param) GetValue() string {
  1180. if x != nil {
  1181. return x.Value
  1182. }
  1183. return ""
  1184. }
  1185. func (x *Param) GetType() string {
  1186. if x != nil {
  1187. return x.Type
  1188. }
  1189. return ""
  1190. }
  1191. var File_biService_proto protoreflect.FileDescriptor
  1192. var file_biService_proto_rawDesc = []byte{
  1193. 0x0a, 0x0f, 0x62, 0x69, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1194. 0x6f, 0x22, 0x64, 0x0a, 0x0e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74,
  1195. 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20,
  1196. 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x6e,
  1197. 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  1198. 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74,
  1199. 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e,
  1200. 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x6f, 0x0a, 0x0f, 0x4d, 0x79, 0x44, 0x61, 0x74,
  1201. 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72,
  1202. 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  1203. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72,
  1204. 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72,
  1205. 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03,
  1206. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73,
  1207. 0x65, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xf3, 0x01, 0x0a, 0x0b, 0x4d, 0x79, 0x44,
  1208. 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x2c, 0x0a, 0x12, 0x63, 0x6f, 0x6c, 0x6c,
  1209. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01,
  1210. 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x66,
  1211. 0x6f, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77,
  1212. 0x5f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02,
  1213. 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x50, 0x72, 0x6f, 0x6a,
  1214. 0x65, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x6f, 0x6c, 0x6c,
  1215. 0x65, 0x63, 0x74, 0x5f, 0x64, 0x6f, 0x63, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20,
  1216. 0x01, 0x28, 0x03, 0x52, 0x0f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x44, 0x6f, 0x63, 0x43,
  1217. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x5f, 0x63, 0x75,
  1218. 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01,
  1219. 0x28, 0x03, 0x52, 0x12, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  1220. 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x5f,
  1221. 0x6e, 0x7a, 0x6a, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
  1222. 0x0d, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x4e, 0x7a, 0x6a, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xb5,
  1223. 0x02, 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71,
  1224. 0x12, 0x17, 0x0a, 0x07, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1225. 0x09, 0x52, 0x06, 0x69, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75,
  1226. 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63,
  1227. 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64,
  1228. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  1229. 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74,
  1230. 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74,
  1231. 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75,
  1232. 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x61, 0x63, 0x63,
  1233. 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e,
  1234. 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f,
  1235. 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65,
  1236. 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,
  1237. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  1238. 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14,
  1239. 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65,
  1240. 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e,
  1241. 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73,
  1242. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x6d, 0x0a, 0x0e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f,
  1243. 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f,
  1244. 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72,
  1245. 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  1246. 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f,
  1247. 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01,
  1248. 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
  1249. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3a, 0x0a, 0x0a, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a,
  1250. 0x65, 0x63, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20,
  1251. 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x63,
  1252. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e,
  1253. 0x74, 0x22, 0x5f, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x52, 0x65,
  1254. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  1255. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  1256. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  1257. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12,
  1258. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61,
  1259. 0x74, 0x61, 0x22, 0x43, 0x0a, 0x0b, 0x44, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65,
  1260. 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18,
  1261. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  1262. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1263. 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x40, 0x0a, 0x07, 0x43, 0x61, 0x6c, 0x6c, 0x52,
  1264. 0x65, 0x71, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,
  1265. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
  1266. 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01,
  1267. 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x56, 0x0a, 0x04, 0x52, 0x65, 0x73,
  1268. 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
  1269. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65,
  1270. 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  1271. 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12, 0x0a,
  1272. 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74,
  1273. 0x61, 0x22, 0xa2, 0x01, 0x0a, 0x05, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x65,
  1274. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1275. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72,
  1276. 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65,
  1277. 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x24, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
  1278. 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x2e, 0x44, 0x61,
  1279. 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x1a, 0x37, 0x0a,
  1280. 0x09, 0x44, 0x61, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  1281. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
  1282. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c,
  1283. 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xb1, 0x01, 0x0a, 0x11, 0x44, 0x69, 0x73, 0x74, 0x72,
  1284. 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09,
  1285. 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1286. 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c,
  1287. 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0a,
  1288. 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x05, 0x64, 0x61,
  1289. 0x74, 0x61, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x44, 0x69, 0x73, 0x74,
  1290. 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x73, 0x52, 0x05, 0x64, 0x61, 0x74,
  1291. 0x61, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
  1292. 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  1293. 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x54, 0x61, 0x73, 0x6b, 0x18, 0x05, 0x20, 0x01,
  1294. 0x28, 0x03, 0x52, 0x06, 0x69, 0x73, 0x54, 0x61, 0x73, 0x6b, 0x22, 0xbd, 0x01, 0x0a, 0x0f, 0x44,
  1295. 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x73, 0x12, 0x12,
  1296. 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
  1297. 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
  1298. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  1299. 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74,
  1300. 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75,
  1301. 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x6e, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65,
  1302. 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x75, 0x6e,
  1303. 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a,
  1304. 0x0a, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75,
  1305. 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69,
  1306. 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x43, 0x0a, 0x0d, 0x43, 0x6c,
  1307. 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x70,
  1308. 0x63, 0x62, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x70, 0x63, 0x62, 0x68, 0x12,
  1309. 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20,
  1310. 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22,
  1311. 0x6d, 0x0a, 0x0e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73,
  1312. 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
  1313. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65,
  1314. 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  1315. 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a,
  1316. 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x43, 0x6c,
  1317. 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3c,
  1318. 0x0a, 0x0a, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x16, 0x0a, 0x06,
  1319. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74,
  1320. 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02,
  1321. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22, 0xa6, 0x03, 0x0a,
  1322. 0x0a, 0x43, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x70,
  1323. 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  1324. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  1325. 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a,
  1326. 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
  1327. 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x39,
  1328. 0x39, 0x39, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  1329. 0x39, 0x39, 0x39, 0x12, 0x14, 0x0a, 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01,
  1330. 0x28, 0x09, 0x52, 0x05, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x70,
  1331. 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x70, 0x4e, 0x6f, 0x12,
  1332. 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09,
  1333. 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x73, 0x50,
  1334. 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x6d, 0x61, 0x6b, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09,
  1335. 0x52, 0x0d, 0x69, 0x73, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x6d, 0x61, 0x6b, 0x65, 0x72, 0x12,
  1336. 0x2a, 0x0a, 0x10, 0x62, 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x49, 0x6e, 0x64, 0x75, 0x73,
  1337. 0x74, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x62, 0x65, 0x6c, 0x6f, 0x6e,
  1338. 0x67, 0x54, 0x6f, 0x49, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6a,
  1339. 0x6f, 0x62, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6a, 0x6f, 0x62, 0x12, 0x24, 0x0a,
  1340. 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x65, 0x64, 0x73, 0x18, 0x0b,
  1341. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65,
  1342. 0x65, 0x64, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x18,
  1343. 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x12,
  1344. 0x1c, 0x0a, 0x09, 0x77, 0x61, 0x6e, 0x74, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x18, 0x0d, 0x20, 0x01,
  1345. 0x28, 0x09, 0x52, 0x09, 0x77, 0x61, 0x6e, 0x74, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x12, 0x26, 0x0a,
  1346. 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18,
  1347. 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x42,
  1348. 0x75, 0x64, 0x67, 0x65, 0x74, 0x22, 0x3e, 0x0a, 0x0c, 0x53, 0x71, 0x6c, 0x4d, 0x61, 0x6e, 0x61,
  1349. 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1350. 0x02, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18,
  1351. 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x52, 0x06, 0x70,
  1352. 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x2f, 0x0a, 0x09, 0x4d, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52,
  1353. 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1354. 0x03, 0x62, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
  1355. 0x09, 0x52, 0x03, 0x73, 0x69, 0x64, 0x22, 0x31, 0x0a, 0x05, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12,
  1356. 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  1357. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
  1358. 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x32, 0xdf, 0x03, 0x0a, 0x09, 0x42, 0x69,
  1359. 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x30, 0x0a, 0x0b, 0x6d, 0x79, 0x44, 0x61, 0x74,
  1360. 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x0f, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41,
  1361. 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61,
  1362. 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0a, 0x61, 0x64, 0x64,
  1363. 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x0e, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f,
  1364. 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f,
  1365. 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x09, 0x67, 0x65, 0x74, 0x49,
  1366. 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12, 0x0e, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65,
  1367. 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49,
  1368. 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x29, 0x0a, 0x08, 0x64, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75,
  1369. 0x65, 0x12, 0x0c, 0x2e, 0x44, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x1a,
  1370. 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70,
  1371. 0x12, 0x17, 0x0a, 0x04, 0x43, 0x61, 0x6c, 0x6c, 0x12, 0x08, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x52,
  1372. 0x65, 0x71, 0x1a, 0x05, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x35, 0x0a, 0x0e, 0x64, 0x69, 0x73,
  1373. 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x12, 0x12, 0x2e, 0x44, 0x69,
  1374. 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x1a,
  1375. 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70,
  1376. 0x12, 0x2d, 0x0a, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x0e,
  1377. 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0f,
  1378. 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12,
  1379. 0x27, 0x0a, 0x07, 0x63, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x64, 0x12, 0x0b, 0x2e, 0x43, 0x6c, 0x75,
  1380. 0x65, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f,
  1381. 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2f, 0x0a, 0x0c, 0x63, 0x6c, 0x75, 0x65,
  1382. 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x74, 0x12, 0x0e, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49,
  1383. 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49,
  1384. 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x22, 0x0a, 0x09, 0x73, 0x71, 0x6c,
  1385. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x12, 0x0d, 0x2e, 0x53, 0x71, 0x6c, 0x4d, 0x61, 0x6e, 0x61,
  1386. 0x67, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x06, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1c, 0x0a,
  1387. 0x06, 0x6d, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0a, 0x2e, 0x4d, 0x79, 0x49, 0x6e, 0x66, 0x6f,
  1388. 0x52, 0x65, 0x71, 0x1a, 0x06, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x42, 0x06, 0x5a, 0x04, 0x2e,
  1389. 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1390. }
  1391. var (
  1392. file_biService_proto_rawDescOnce sync.Once
  1393. file_biService_proto_rawDescData = file_biService_proto_rawDesc
  1394. )
  1395. func file_biService_proto_rawDescGZIP() []byte {
  1396. file_biService_proto_rawDescOnce.Do(func() {
  1397. file_biService_proto_rawDescData = protoimpl.X.CompressGZIP(file_biService_proto_rawDescData)
  1398. })
  1399. return file_biService_proto_rawDescData
  1400. }
  1401. var file_biService_proto_msgTypes = make([]protoimpl.MessageInfo, 21)
  1402. var file_biService_proto_goTypes = []interface{}{
  1403. (*MyDataAssetReq)(nil), // 0: MyDataAssetReq
  1404. (*MyDataAssetResp)(nil), // 1: MyDataAssetResp
  1405. (*MyDataAsset)(nil), // 2: MyDataAsset
  1406. (*AddProjectReq)(nil), // 3: AddProjectReq
  1407. (*AddProjectResp)(nil), // 4: AddProjectResp
  1408. (*AddProject)(nil), // 5: AddProject
  1409. (*GetInfoIdResp)(nil), // 6: GetInfoIdResp
  1410. (*DrawClueReq)(nil), // 7: DrawClueReq
  1411. (*CallReq)(nil), // 8: CallReq
  1412. (*Resp)(nil), // 9: Resp
  1413. (*Reply)(nil), // 10: Reply
  1414. (*DistributeClueReq)(nil), // 11: DistributeClueReq
  1415. (*DistributeDatas)(nil), // 12: DistributeDatas
  1416. (*ClueImportReq)(nil), // 13: ClueImportReq
  1417. (*ClueImportResp)(nil), // 14: ClueImportResp
  1418. (*ClueImport)(nil), // 15: ClueImport
  1419. (*ClueAddReq)(nil), // 16: ClueAddReq
  1420. (*SqlManageReq)(nil), // 17: SqlManageReq
  1421. (*MyInfoReq)(nil), // 18: MyInfoReq
  1422. (*Param)(nil), // 19: Param
  1423. nil, // 20: Reply.DataEntry
  1424. }
  1425. var file_biService_proto_depIdxs = []int32{
  1426. 2, // 0: MyDataAssetResp.data:type_name -> MyDataAsset
  1427. 5, // 1: AddProjectResp.data:type_name -> AddProject
  1428. 20, // 2: Reply.data:type_name -> Reply.DataEntry
  1429. 12, // 3: DistributeClueReq.datas:type_name -> DistributeDatas
  1430. 15, // 4: ClueImportResp.data:type_name -> ClueImport
  1431. 19, // 5: SqlManageReq.params:type_name -> Param
  1432. 0, // 6: BiService.myDataAsset:input_type -> MyDataAssetReq
  1433. 3, // 7: BiService.addProject:input_type -> AddProjectReq
  1434. 3, // 8: BiService.getInfoId:input_type -> AddProjectReq
  1435. 7, // 9: BiService.drawClue:input_type -> DrawClueReq
  1436. 8, // 10: BiService.Call:input_type -> CallReq
  1437. 11, // 11: BiService.distributeClue:input_type -> DistributeClueReq
  1438. 13, // 12: BiService.clueImport:input_type -> ClueImportReq
  1439. 16, // 13: BiService.clueAdd:input_type -> ClueAddReq
  1440. 13, // 14: BiService.clueImportTt:input_type -> ClueImportReq
  1441. 17, // 15: BiService.sqlManage:input_type -> SqlManageReq
  1442. 18, // 16: BiService.myInfo:input_type -> MyInfoReq
  1443. 1, // 17: BiService.myDataAsset:output_type -> MyDataAssetResp
  1444. 4, // 18: BiService.addProject:output_type -> AddProjectResp
  1445. 6, // 19: BiService.getInfoId:output_type -> GetInfoIdResp
  1446. 4, // 20: BiService.drawClue:output_type -> AddProjectResp
  1447. 9, // 21: BiService.Call:output_type -> Resp
  1448. 4, // 22: BiService.distributeClue:output_type -> AddProjectResp
  1449. 14, // 23: BiService.clueImport:output_type -> ClueImportResp
  1450. 4, // 24: BiService.clueAdd:output_type -> AddProjectResp
  1451. 14, // 25: BiService.clueImportTt:output_type -> ClueImportResp
  1452. 10, // 26: BiService.sqlManage:output_type -> Reply
  1453. 10, // 27: BiService.myInfo:output_type -> Reply
  1454. 17, // [17:28] is the sub-list for method output_type
  1455. 6, // [6:17] is the sub-list for method input_type
  1456. 6, // [6:6] is the sub-list for extension type_name
  1457. 6, // [6:6] is the sub-list for extension extendee
  1458. 0, // [0:6] is the sub-list for field type_name
  1459. }
  1460. func init() { file_biService_proto_init() }
  1461. func file_biService_proto_init() {
  1462. if File_biService_proto != nil {
  1463. return
  1464. }
  1465. if !protoimpl.UnsafeEnabled {
  1466. file_biService_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1467. switch v := v.(*MyDataAssetReq); i {
  1468. case 0:
  1469. return &v.state
  1470. case 1:
  1471. return &v.sizeCache
  1472. case 2:
  1473. return &v.unknownFields
  1474. default:
  1475. return nil
  1476. }
  1477. }
  1478. file_biService_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1479. switch v := v.(*MyDataAssetResp); i {
  1480. case 0:
  1481. return &v.state
  1482. case 1:
  1483. return &v.sizeCache
  1484. case 2:
  1485. return &v.unknownFields
  1486. default:
  1487. return nil
  1488. }
  1489. }
  1490. file_biService_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1491. switch v := v.(*MyDataAsset); i {
  1492. case 0:
  1493. return &v.state
  1494. case 1:
  1495. return &v.sizeCache
  1496. case 2:
  1497. return &v.unknownFields
  1498. default:
  1499. return nil
  1500. }
  1501. }
  1502. file_biService_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1503. switch v := v.(*AddProjectReq); i {
  1504. case 0:
  1505. return &v.state
  1506. case 1:
  1507. return &v.sizeCache
  1508. case 2:
  1509. return &v.unknownFields
  1510. default:
  1511. return nil
  1512. }
  1513. }
  1514. file_biService_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1515. switch v := v.(*AddProjectResp); i {
  1516. case 0:
  1517. return &v.state
  1518. case 1:
  1519. return &v.sizeCache
  1520. case 2:
  1521. return &v.unknownFields
  1522. default:
  1523. return nil
  1524. }
  1525. }
  1526. file_biService_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1527. switch v := v.(*AddProject); i {
  1528. case 0:
  1529. return &v.state
  1530. case 1:
  1531. return &v.sizeCache
  1532. case 2:
  1533. return &v.unknownFields
  1534. default:
  1535. return nil
  1536. }
  1537. }
  1538. file_biService_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1539. switch v := v.(*GetInfoIdResp); i {
  1540. case 0:
  1541. return &v.state
  1542. case 1:
  1543. return &v.sizeCache
  1544. case 2:
  1545. return &v.unknownFields
  1546. default:
  1547. return nil
  1548. }
  1549. }
  1550. file_biService_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1551. switch v := v.(*DrawClueReq); i {
  1552. case 0:
  1553. return &v.state
  1554. case 1:
  1555. return &v.sizeCache
  1556. case 2:
  1557. return &v.unknownFields
  1558. default:
  1559. return nil
  1560. }
  1561. }
  1562. file_biService_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1563. switch v := v.(*CallReq); i {
  1564. case 0:
  1565. return &v.state
  1566. case 1:
  1567. return &v.sizeCache
  1568. case 2:
  1569. return &v.unknownFields
  1570. default:
  1571. return nil
  1572. }
  1573. }
  1574. file_biService_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1575. switch v := v.(*Resp); i {
  1576. case 0:
  1577. return &v.state
  1578. case 1:
  1579. return &v.sizeCache
  1580. case 2:
  1581. return &v.unknownFields
  1582. default:
  1583. return nil
  1584. }
  1585. }
  1586. file_biService_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1587. switch v := v.(*Reply); i {
  1588. case 0:
  1589. return &v.state
  1590. case 1:
  1591. return &v.sizeCache
  1592. case 2:
  1593. return &v.unknownFields
  1594. default:
  1595. return nil
  1596. }
  1597. }
  1598. file_biService_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1599. switch v := v.(*DistributeClueReq); i {
  1600. case 0:
  1601. return &v.state
  1602. case 1:
  1603. return &v.sizeCache
  1604. case 2:
  1605. return &v.unknownFields
  1606. default:
  1607. return nil
  1608. }
  1609. }
  1610. file_biService_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1611. switch v := v.(*DistributeDatas); i {
  1612. case 0:
  1613. return &v.state
  1614. case 1:
  1615. return &v.sizeCache
  1616. case 2:
  1617. return &v.unknownFields
  1618. default:
  1619. return nil
  1620. }
  1621. }
  1622. file_biService_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1623. switch v := v.(*ClueImportReq); i {
  1624. case 0:
  1625. return &v.state
  1626. case 1:
  1627. return &v.sizeCache
  1628. case 2:
  1629. return &v.unknownFields
  1630. default:
  1631. return nil
  1632. }
  1633. }
  1634. file_biService_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1635. switch v := v.(*ClueImportResp); i {
  1636. case 0:
  1637. return &v.state
  1638. case 1:
  1639. return &v.sizeCache
  1640. case 2:
  1641. return &v.unknownFields
  1642. default:
  1643. return nil
  1644. }
  1645. }
  1646. file_biService_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1647. switch v := v.(*ClueImport); i {
  1648. case 0:
  1649. return &v.state
  1650. case 1:
  1651. return &v.sizeCache
  1652. case 2:
  1653. return &v.unknownFields
  1654. default:
  1655. return nil
  1656. }
  1657. }
  1658. file_biService_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  1659. switch v := v.(*ClueAddReq); i {
  1660. case 0:
  1661. return &v.state
  1662. case 1:
  1663. return &v.sizeCache
  1664. case 2:
  1665. return &v.unknownFields
  1666. default:
  1667. return nil
  1668. }
  1669. }
  1670. file_biService_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  1671. switch v := v.(*SqlManageReq); i {
  1672. case 0:
  1673. return &v.state
  1674. case 1:
  1675. return &v.sizeCache
  1676. case 2:
  1677. return &v.unknownFields
  1678. default:
  1679. return nil
  1680. }
  1681. }
  1682. file_biService_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  1683. switch v := v.(*MyInfoReq); i {
  1684. case 0:
  1685. return &v.state
  1686. case 1:
  1687. return &v.sizeCache
  1688. case 2:
  1689. return &v.unknownFields
  1690. default:
  1691. return nil
  1692. }
  1693. }
  1694. file_biService_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  1695. switch v := v.(*Param); i {
  1696. case 0:
  1697. return &v.state
  1698. case 1:
  1699. return &v.sizeCache
  1700. case 2:
  1701. return &v.unknownFields
  1702. default:
  1703. return nil
  1704. }
  1705. }
  1706. }
  1707. type x struct{}
  1708. out := protoimpl.TypeBuilder{
  1709. File: protoimpl.DescBuilder{
  1710. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1711. RawDescriptor: file_biService_proto_rawDesc,
  1712. NumEnums: 0,
  1713. NumMessages: 21,
  1714. NumExtensions: 0,
  1715. NumServices: 1,
  1716. },
  1717. GoTypes: file_biService_proto_goTypes,
  1718. DependencyIndexes: file_biService_proto_depIdxs,
  1719. MessageInfos: file_biService_proto_msgTypes,
  1720. }.Build()
  1721. File_biService_proto = out.File
  1722. file_biService_proto_rawDesc = nil
  1723. file_biService_proto_goTypes = nil
  1724. file_biService_proto_depIdxs = nil
  1725. }