biService.pb.go 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.32.0
  4. // protoc v4.25.2
  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 BiResp 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 *BiResp) Reset() {
  547. *x = BiResp{}
  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 *BiResp) String() string {
  555. return protoimpl.X.MessageStringOf(x)
  556. }
  557. func (*BiResp) ProtoMessage() {}
  558. func (x *BiResp) 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 BiResp.ProtoReflect.Descriptor instead.
  570. func (*BiResp) Descriptor() ([]byte, []int) {
  571. return file_biService_proto_rawDescGZIP(), []int{9}
  572. }
  573. func (x *BiResp) GetErrorCode() int64 {
  574. if x != nil {
  575. return x.ErrorCode
  576. }
  577. return 0
  578. }
  579. func (x *BiResp) GetErrorMsg() string {
  580. if x != nil {
  581. return x.ErrorMsg
  582. }
  583. return ""
  584. }
  585. func (x *BiResp) GetData() string {
  586. if x != nil {
  587. return x.Data
  588. }
  589. return ""
  590. }
  591. type BiReply 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 []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  598. }
  599. func (x *BiReply) Reset() {
  600. *x = BiReply{}
  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 *BiReply) String() string {
  608. return protoimpl.X.MessageStringOf(x)
  609. }
  610. func (*BiReply) ProtoMessage() {}
  611. func (x *BiReply) 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 BiReply.ProtoReflect.Descriptor instead.
  623. func (*BiReply) Descriptor() ([]byte, []int) {
  624. return file_biService_proto_rawDescGZIP(), []int{10}
  625. }
  626. func (x *BiReply) GetErrorCode() int64 {
  627. if x != nil {
  628. return x.ErrorCode
  629. }
  630. return 0
  631. }
  632. func (x *BiReply) GetErrorMsg() string {
  633. if x != nil {
  634. return x.ErrorMsg
  635. }
  636. return ""
  637. }
  638. func (x *BiReply) GetData() []byte {
  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. type ExportReq struct {
  1192. state protoimpl.MessageState
  1193. sizeCache protoimpl.SizeCache
  1194. unknownFields protoimpl.UnknownFields
  1195. Mail string `protobuf:"bytes,1,opt,name=mail,proto3" json:"mail,omitempty"`
  1196. Mapping []string `protobuf:"bytes,2,rep,name=mapping,proto3" json:"mapping,omitempty"`
  1197. PositionId int64 `protobuf:"varint,3,opt,name=PositionId,proto3" json:"PositionId,omitempty"`
  1198. }
  1199. func (x *ExportReq) Reset() {
  1200. *x = ExportReq{}
  1201. if protoimpl.UnsafeEnabled {
  1202. mi := &file_biService_proto_msgTypes[20]
  1203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1204. ms.StoreMessageInfo(mi)
  1205. }
  1206. }
  1207. func (x *ExportReq) String() string {
  1208. return protoimpl.X.MessageStringOf(x)
  1209. }
  1210. func (*ExportReq) ProtoMessage() {}
  1211. func (x *ExportReq) ProtoReflect() protoreflect.Message {
  1212. mi := &file_biService_proto_msgTypes[20]
  1213. if protoimpl.UnsafeEnabled && x != nil {
  1214. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1215. if ms.LoadMessageInfo() == nil {
  1216. ms.StoreMessageInfo(mi)
  1217. }
  1218. return ms
  1219. }
  1220. return mi.MessageOf(x)
  1221. }
  1222. // Deprecated: Use ExportReq.ProtoReflect.Descriptor instead.
  1223. func (*ExportReq) Descriptor() ([]byte, []int) {
  1224. return file_biService_proto_rawDescGZIP(), []int{20}
  1225. }
  1226. func (x *ExportReq) GetMail() string {
  1227. if x != nil {
  1228. return x.Mail
  1229. }
  1230. return ""
  1231. }
  1232. func (x *ExportReq) GetMapping() []string {
  1233. if x != nil {
  1234. return x.Mapping
  1235. }
  1236. return nil
  1237. }
  1238. func (x *ExportReq) GetPositionId() int64 {
  1239. if x != nil {
  1240. return x.PositionId
  1241. }
  1242. return 0
  1243. }
  1244. type OperateReq struct {
  1245. state protoimpl.MessageState
  1246. sizeCache protoimpl.SizeCache
  1247. unknownFields protoimpl.UnknownFields
  1248. NewId string `protobuf:"bytes,1,opt,name=newId,proto3" json:"newId,omitempty"`
  1249. Type int64 `protobuf:"varint,2,opt,name=type,proto3" json:"type,omitempty"`
  1250. }
  1251. func (x *OperateReq) Reset() {
  1252. *x = OperateReq{}
  1253. if protoimpl.UnsafeEnabled {
  1254. mi := &file_biService_proto_msgTypes[21]
  1255. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1256. ms.StoreMessageInfo(mi)
  1257. }
  1258. }
  1259. func (x *OperateReq) String() string {
  1260. return protoimpl.X.MessageStringOf(x)
  1261. }
  1262. func (*OperateReq) ProtoMessage() {}
  1263. func (x *OperateReq) ProtoReflect() protoreflect.Message {
  1264. mi := &file_biService_proto_msgTypes[21]
  1265. if protoimpl.UnsafeEnabled && x != nil {
  1266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1267. if ms.LoadMessageInfo() == nil {
  1268. ms.StoreMessageInfo(mi)
  1269. }
  1270. return ms
  1271. }
  1272. return mi.MessageOf(x)
  1273. }
  1274. // Deprecated: Use OperateReq.ProtoReflect.Descriptor instead.
  1275. func (*OperateReq) Descriptor() ([]byte, []int) {
  1276. return file_biService_proto_rawDescGZIP(), []int{21}
  1277. }
  1278. func (x *OperateReq) GetNewId() string {
  1279. if x != nil {
  1280. return x.NewId
  1281. }
  1282. return ""
  1283. }
  1284. func (x *OperateReq) GetType() int64 {
  1285. if x != nil {
  1286. return x.Type
  1287. }
  1288. return 0
  1289. }
  1290. type ExportByDbReq struct {
  1291. state protoimpl.MessageState
  1292. sizeCache protoimpl.SizeCache
  1293. unknownFields protoimpl.UnknownFields
  1294. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  1295. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
  1296. Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content,omitempty"`
  1297. Mails string `protobuf:"bytes,4,opt,name=mails,proto3" json:"mails,omitempty"`
  1298. Query string `protobuf:"bytes,5,opt,name=query,proto3" json:"query,omitempty"`
  1299. }
  1300. func (x *ExportByDbReq) Reset() {
  1301. *x = ExportByDbReq{}
  1302. if protoimpl.UnsafeEnabled {
  1303. mi := &file_biService_proto_msgTypes[22]
  1304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1305. ms.StoreMessageInfo(mi)
  1306. }
  1307. }
  1308. func (x *ExportByDbReq) String() string {
  1309. return protoimpl.X.MessageStringOf(x)
  1310. }
  1311. func (*ExportByDbReq) ProtoMessage() {}
  1312. func (x *ExportByDbReq) ProtoReflect() protoreflect.Message {
  1313. mi := &file_biService_proto_msgTypes[22]
  1314. if protoimpl.UnsafeEnabled && x != nil {
  1315. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1316. if ms.LoadMessageInfo() == nil {
  1317. ms.StoreMessageInfo(mi)
  1318. }
  1319. return ms
  1320. }
  1321. return mi.MessageOf(x)
  1322. }
  1323. // Deprecated: Use ExportByDbReq.ProtoReflect.Descriptor instead.
  1324. func (*ExportByDbReq) Descriptor() ([]byte, []int) {
  1325. return file_biService_proto_rawDescGZIP(), []int{22}
  1326. }
  1327. func (x *ExportByDbReq) GetToken() string {
  1328. if x != nil {
  1329. return x.Token
  1330. }
  1331. return ""
  1332. }
  1333. func (x *ExportByDbReq) GetTitle() string {
  1334. if x != nil {
  1335. return x.Title
  1336. }
  1337. return ""
  1338. }
  1339. func (x *ExportByDbReq) GetContent() string {
  1340. if x != nil {
  1341. return x.Content
  1342. }
  1343. return ""
  1344. }
  1345. func (x *ExportByDbReq) GetMails() string {
  1346. if x != nil {
  1347. return x.Mails
  1348. }
  1349. return ""
  1350. }
  1351. func (x *ExportByDbReq) GetQuery() string {
  1352. if x != nil {
  1353. return x.Query
  1354. }
  1355. return ""
  1356. }
  1357. var File_biService_proto protoreflect.FileDescriptor
  1358. var file_biService_proto_rawDesc = []byte{
  1359. 0x0a, 0x0f, 0x62, 0x69, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1360. 0x6f, 0x22, 0x64, 0x0a, 0x0e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74,
  1361. 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20,
  1362. 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x6e,
  1363. 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  1364. 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74,
  1365. 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e,
  1366. 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x6f, 0x0a, 0x0f, 0x4d, 0x79, 0x44, 0x61, 0x74,
  1367. 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72,
  1368. 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  1369. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72,
  1370. 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72,
  1371. 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03,
  1372. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73,
  1373. 0x65, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xf3, 0x01, 0x0a, 0x0b, 0x4d, 0x79, 0x44,
  1374. 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x2c, 0x0a, 0x12, 0x63, 0x6f, 0x6c, 0x6c,
  1375. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01,
  1376. 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x66,
  1377. 0x6f, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77,
  1378. 0x5f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02,
  1379. 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x50, 0x72, 0x6f, 0x6a,
  1380. 0x65, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x6f, 0x6c, 0x6c,
  1381. 0x65, 0x63, 0x74, 0x5f, 0x64, 0x6f, 0x63, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20,
  1382. 0x01, 0x28, 0x03, 0x52, 0x0f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x44, 0x6f, 0x63, 0x43,
  1383. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x5f, 0x63, 0x75,
  1384. 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01,
  1385. 0x28, 0x03, 0x52, 0x12, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  1386. 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x5f,
  1387. 0x6e, 0x7a, 0x6a, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
  1388. 0x0d, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x4e, 0x7a, 0x6a, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xb5,
  1389. 0x02, 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71,
  1390. 0x12, 0x17, 0x0a, 0x07, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1391. 0x09, 0x52, 0x06, 0x69, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75,
  1392. 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63,
  1393. 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64,
  1394. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  1395. 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74,
  1396. 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74,
  1397. 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75,
  1398. 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x61, 0x63, 0x63,
  1399. 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e,
  1400. 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f,
  1401. 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65,
  1402. 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,
  1403. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  1404. 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14,
  1405. 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65,
  1406. 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e,
  1407. 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73,
  1408. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x6d, 0x0a, 0x0e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f,
  1409. 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f,
  1410. 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72,
  1411. 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  1412. 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f,
  1413. 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01,
  1414. 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
  1415. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3a, 0x0a, 0x0a, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a,
  1416. 0x65, 0x63, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20,
  1417. 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x63,
  1418. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e,
  1419. 0x74, 0x22, 0x5f, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x52, 0x65,
  1420. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  1421. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  1422. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  1423. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12,
  1424. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61,
  1425. 0x74, 0x61, 0x22, 0x43, 0x0a, 0x0b, 0x44, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65,
  1426. 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18,
  1427. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  1428. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1429. 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x40, 0x0a, 0x07, 0x43, 0x61, 0x6c, 0x6c, 0x52,
  1430. 0x65, 0x71, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,
  1431. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
  1432. 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01,
  1433. 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x58, 0x0a, 0x06, 0x42, 0x69, 0x52,
  1434. 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
  1435. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
  1436. 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
  1437. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
  1438. 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64,
  1439. 0x61, 0x74, 0x61, 0x22, 0x59, 0x0a, 0x07, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1d,
  1440. 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
  1441. 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a,
  1442. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1443. 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61,
  1444. 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xb1,
  1445. 0x01, 0x0a, 0x11, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75,
  1446. 0x65, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75, 0x6e,
  1447. 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75,
  1448. 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74,
  1449. 0x18, 0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69,
  1450. 0x73, 0x74, 0x12, 0x26, 0x0a, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  1451. 0x0b, 0x32, 0x10, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x44, 0x61,
  1452. 0x74, 0x61, 0x73, 0x52, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f,
  1453. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  1454. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73,
  1455. 0x54, 0x61, 0x73, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x69, 0x73, 0x54, 0x61,
  1456. 0x73, 0x6b, 0x22, 0xbd, 0x01, 0x0a, 0x0f, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
  1457. 0x65, 0x44, 0x61, 0x74, 0x61, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
  1458. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f,
  1459. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  1460. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x6f,
  1461. 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  1462. 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x6e,
  1463. 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04,
  1464. 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x75, 0x6e, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65,
  1465. 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69,
  1466. 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  1467. 0x52, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75,
  1468. 0x6e, 0x74, 0x22, 0x43, 0x0a, 0x0d, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  1469. 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x63, 0x62, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28,
  1470. 0x09, 0x52, 0x04, 0x70, 0x63, 0x62, 0x68, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74,
  1471. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73,
  1472. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x6d, 0x0a, 0x0e, 0x43, 0x6c, 0x75, 0x65, 0x49,
  1473. 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72,
  1474. 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65,
  1475. 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f,
  1476. 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72,
  1477. 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20,
  1478. 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  1479. 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3c, 0x0a, 0x0a, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d,
  1480. 0x70, 0x6f, 0x72, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01,
  1481. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06,
  1482. 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65,
  1483. 0x73, 0x75, 0x6c, 0x74, 0x22, 0xa6, 0x03, 0x0a, 0x0a, 0x43, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x64,
  1484. 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01,
  1485. 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65,
  1486. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
  1487. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18,
  1488. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x1c, 0x0a,
  1489. 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x39, 0x39, 0x39, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  1490. 0x52, 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x39, 0x39, 0x39, 0x12, 0x14, 0x0a, 0x05, 0x6f,
  1491. 0x77, 0x6e, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x77, 0x6e, 0x65,
  1492. 0x72, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x70, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  1493. 0x52, 0x05, 0x65, 0x6d, 0x70, 0x4e, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61,
  1494. 0x6e, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e,
  1495. 0x79, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x73, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x6d, 0x61, 0x6b,
  1496. 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x69, 0x73, 0x50, 0x6f, 0x6c, 0x69,
  1497. 0x63, 0x79, 0x6d, 0x61, 0x6b, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x62, 0x65, 0x6c, 0x6f, 0x6e,
  1498. 0x67, 0x54, 0x6f, 0x49, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28,
  1499. 0x09, 0x52, 0x10, 0x62, 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x49, 0x6e, 0x64, 0x75, 0x73,
  1500. 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6a, 0x6f, 0x62, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  1501. 0x52, 0x03, 0x6a, 0x6f, 0x62, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  1502. 0x72, 0x4e, 0x65, 0x65, 0x64, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x75,
  1503. 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x65, 0x64, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x62,
  1504. 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62,
  1505. 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x77, 0x61, 0x6e, 0x74, 0x47,
  1506. 0x6f, 0x6f, 0x64, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x77, 0x61, 0x6e, 0x74,
  1507. 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  1508. 0x72, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x63,
  1509. 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x22, 0x3e, 0x0a,
  1510. 0x0c, 0x53, 0x71, 0x6c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a,
  1511. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x02, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a,
  1512. 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e,
  1513. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x2f, 0x0a,
  1514. 0x09, 0x4d, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x69,
  1515. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x62, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03,
  1516. 0x73, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x69, 0x64, 0x22, 0x31,
  1517. 0x0a, 0x05, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  1518. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x12, 0x0a,
  1519. 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70,
  1520. 0x65, 0x22, 0x59, 0x0a, 0x09, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12,
  1521. 0x0a, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x61,
  1522. 0x69, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20,
  1523. 0x03, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x1e, 0x0a, 0x0a,
  1524. 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  1525. 0x52, 0x0a, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x36, 0x0a, 0x0a,
  1526. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x65,
  1527. 0x77, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x65, 0x77, 0x49, 0x64,
  1528. 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
  1529. 0x74, 0x79, 0x70, 0x65, 0x22, 0x81, 0x01, 0x0a, 0x0d, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x42,
  1530. 0x79, 0x44, 0x62, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18,
  1531. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x14, 0x0a, 0x05,
  1532. 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74,
  1533. 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20,
  1534. 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x14, 0x0a, 0x05,
  1535. 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x61, 0x69,
  1536. 0x6c, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28,
  1537. 0x09, 0x52, 0x05, 0x71, 0x75, 0x65, 0x72, 0x79, 0x32, 0xb1, 0x05, 0x0a, 0x09, 0x42, 0x69, 0x53,
  1538. 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x30, 0x0a, 0x0b, 0x6d, 0x79, 0x44, 0x61, 0x74, 0x61,
  1539. 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x0f, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73,
  1540. 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41,
  1541. 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0a, 0x61, 0x64, 0x64, 0x50,
  1542. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x0e, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a,
  1543. 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a,
  1544. 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x09, 0x67, 0x65, 0x74, 0x49, 0x6e,
  1545. 0x66, 0x6f, 0x49, 0x64, 0x12, 0x0e, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  1546. 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64,
  1547. 0x52, 0x65, 0x73, 0x70, 0x12, 0x29, 0x0a, 0x08, 0x64, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65,
  1548. 0x12, 0x0c, 0x2e, 0x44, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0f,
  1549. 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12,
  1550. 0x19, 0x0a, 0x04, 0x43, 0x61, 0x6c, 0x6c, 0x12, 0x08, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65,
  1551. 0x71, 0x1a, 0x07, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x73, 0x70, 0x12, 0x35, 0x0a, 0x0e, 0x64, 0x69,
  1552. 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x12, 0x12, 0x2e, 0x44,
  1553. 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71,
  1554. 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73,
  1555. 0x70, 0x12, 0x2d, 0x0a, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x12,
  1556. 0x0e, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a,
  1557. 0x0f, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70,
  1558. 0x12, 0x27, 0x0a, 0x07, 0x63, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x64, 0x12, 0x0b, 0x2e, 0x43, 0x6c,
  1559. 0x75, 0x65, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72,
  1560. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2f, 0x0a, 0x0c, 0x63, 0x6c, 0x75,
  1561. 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x74, 0x12, 0x0e, 0x2e, 0x43, 0x6c, 0x75, 0x65,
  1562. 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x43, 0x6c, 0x75, 0x65,
  1563. 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x0a, 0x61, 0x75,
  1564. 0x74, 0x6f, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x12, 0x08, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x52,
  1565. 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52,
  1566. 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a, 0x09, 0x73, 0x71, 0x6c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  1567. 0x12, 0x0d, 0x2e, 0x53, 0x71, 0x6c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x1a,
  1568. 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a, 0x06, 0x6d, 0x79, 0x49,
  1569. 0x6e, 0x66, 0x6f, 0x12, 0x0a, 0x2e, 0x4d, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a,
  1570. 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x25, 0x0a, 0x0d, 0x61, 0x6c, 0x6c,
  1571. 0x49, 0x6e, 0x66, 0x6f, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x0a, 0x2e, 0x45, 0x78, 0x70,
  1572. 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1573. 0x12, 0x28, 0x0a, 0x10, 0x61, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x45, 0x78,
  1574. 0x70, 0x6f, 0x72, 0x74, 0x12, 0x0a, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71,
  1575. 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x24, 0x0a, 0x0b, 0x69, 0x6e,
  1576. 0x66, 0x6f, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x12, 0x0b, 0x2e, 0x4f, 0x70, 0x65, 0x72,
  1577. 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1578. 0x12, 0x2a, 0x0a, 0x0e, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x44, 0x61, 0x74, 0x61, 0x42, 0x79,
  1579. 0x44, 0x62, 0x12, 0x0e, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x42, 0x79, 0x44, 0x62, 0x52,
  1580. 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x42, 0x06, 0x5a, 0x04,
  1581. 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1582. }
  1583. var (
  1584. file_biService_proto_rawDescOnce sync.Once
  1585. file_biService_proto_rawDescData = file_biService_proto_rawDesc
  1586. )
  1587. func file_biService_proto_rawDescGZIP() []byte {
  1588. file_biService_proto_rawDescOnce.Do(func() {
  1589. file_biService_proto_rawDescData = protoimpl.X.CompressGZIP(file_biService_proto_rawDescData)
  1590. })
  1591. return file_biService_proto_rawDescData
  1592. }
  1593. var file_biService_proto_msgTypes = make([]protoimpl.MessageInfo, 23)
  1594. var file_biService_proto_goTypes = []interface{}{
  1595. (*MyDataAssetReq)(nil), // 0: MyDataAssetReq
  1596. (*MyDataAssetResp)(nil), // 1: MyDataAssetResp
  1597. (*MyDataAsset)(nil), // 2: MyDataAsset
  1598. (*AddProjectReq)(nil), // 3: AddProjectReq
  1599. (*AddProjectResp)(nil), // 4: AddProjectResp
  1600. (*AddProject)(nil), // 5: AddProject
  1601. (*GetInfoIdResp)(nil), // 6: GetInfoIdResp
  1602. (*DrawClueReq)(nil), // 7: DrawClueReq
  1603. (*CallReq)(nil), // 8: CallReq
  1604. (*BiResp)(nil), // 9: BiResp
  1605. (*BiReply)(nil), // 10: BiReply
  1606. (*DistributeClueReq)(nil), // 11: DistributeClueReq
  1607. (*DistributeDatas)(nil), // 12: DistributeDatas
  1608. (*ClueImportReq)(nil), // 13: ClueImportReq
  1609. (*ClueImportResp)(nil), // 14: ClueImportResp
  1610. (*ClueImport)(nil), // 15: ClueImport
  1611. (*ClueAddReq)(nil), // 16: ClueAddReq
  1612. (*SqlManageReq)(nil), // 17: SqlManageReq
  1613. (*MyInfoReq)(nil), // 18: MyInfoReq
  1614. (*Param)(nil), // 19: Param
  1615. (*ExportReq)(nil), // 20: ExportReq
  1616. (*OperateReq)(nil), // 21: OperateReq
  1617. (*ExportByDbReq)(nil), // 22: ExportByDbReq
  1618. }
  1619. var file_biService_proto_depIdxs = []int32{
  1620. 2, // 0: MyDataAssetResp.data:type_name -> MyDataAsset
  1621. 5, // 1: AddProjectResp.data:type_name -> AddProject
  1622. 12, // 2: DistributeClueReq.datas:type_name -> DistributeDatas
  1623. 15, // 3: ClueImportResp.data:type_name -> ClueImport
  1624. 19, // 4: SqlManageReq.params:type_name -> Param
  1625. 0, // 5: BiService.myDataAsset:input_type -> MyDataAssetReq
  1626. 3, // 6: BiService.addProject:input_type -> AddProjectReq
  1627. 3, // 7: BiService.getInfoId:input_type -> AddProjectReq
  1628. 7, // 8: BiService.drawClue:input_type -> DrawClueReq
  1629. 8, // 9: BiService.Call:input_type -> CallReq
  1630. 11, // 10: BiService.distributeClue:input_type -> DistributeClueReq
  1631. 13, // 11: BiService.clueImport:input_type -> ClueImportReq
  1632. 16, // 12: BiService.clueAdd:input_type -> ClueAddReq
  1633. 13, // 13: BiService.clueImportTt:input_type -> ClueImportReq
  1634. 8, // 14: BiService.autoFollow:input_type -> CallReq
  1635. 17, // 15: BiService.sqlManage:input_type -> SqlManageReq
  1636. 18, // 16: BiService.myInfo:input_type -> MyInfoReq
  1637. 20, // 17: BiService.allInfoExport:input_type -> ExportReq
  1638. 20, // 18: BiService.allProjectExport:input_type -> ExportReq
  1639. 21, // 19: BiService.infoOperate:input_type -> OperateReq
  1640. 22, // 20: BiService.exportDataByDb:input_type -> ExportByDbReq
  1641. 1, // 21: BiService.myDataAsset:output_type -> MyDataAssetResp
  1642. 4, // 22: BiService.addProject:output_type -> AddProjectResp
  1643. 6, // 23: BiService.getInfoId:output_type -> GetInfoIdResp
  1644. 4, // 24: BiService.drawClue:output_type -> AddProjectResp
  1645. 9, // 25: BiService.Call:output_type -> BiResp
  1646. 4, // 26: BiService.distributeClue:output_type -> AddProjectResp
  1647. 14, // 27: BiService.clueImport:output_type -> ClueImportResp
  1648. 4, // 28: BiService.clueAdd:output_type -> AddProjectResp
  1649. 14, // 29: BiService.clueImportTt:output_type -> ClueImportResp
  1650. 14, // 30: BiService.autoFollow:output_type -> ClueImportResp
  1651. 10, // 31: BiService.sqlManage:output_type -> BiReply
  1652. 10, // 32: BiService.myInfo:output_type -> BiReply
  1653. 10, // 33: BiService.allInfoExport:output_type -> BiReply
  1654. 10, // 34: BiService.allProjectExport:output_type -> BiReply
  1655. 10, // 35: BiService.infoOperate:output_type -> BiReply
  1656. 10, // 36: BiService.exportDataByDb:output_type -> BiReply
  1657. 21, // [21:37] is the sub-list for method output_type
  1658. 5, // [5:21] is the sub-list for method input_type
  1659. 5, // [5:5] is the sub-list for extension type_name
  1660. 5, // [5:5] is the sub-list for extension extendee
  1661. 0, // [0:5] is the sub-list for field type_name
  1662. }
  1663. func init() { file_biService_proto_init() }
  1664. func file_biService_proto_init() {
  1665. if File_biService_proto != nil {
  1666. return
  1667. }
  1668. if !protoimpl.UnsafeEnabled {
  1669. file_biService_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1670. switch v := v.(*MyDataAssetReq); i {
  1671. case 0:
  1672. return &v.state
  1673. case 1:
  1674. return &v.sizeCache
  1675. case 2:
  1676. return &v.unknownFields
  1677. default:
  1678. return nil
  1679. }
  1680. }
  1681. file_biService_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1682. switch v := v.(*MyDataAssetResp); i {
  1683. case 0:
  1684. return &v.state
  1685. case 1:
  1686. return &v.sizeCache
  1687. case 2:
  1688. return &v.unknownFields
  1689. default:
  1690. return nil
  1691. }
  1692. }
  1693. file_biService_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1694. switch v := v.(*MyDataAsset); i {
  1695. case 0:
  1696. return &v.state
  1697. case 1:
  1698. return &v.sizeCache
  1699. case 2:
  1700. return &v.unknownFields
  1701. default:
  1702. return nil
  1703. }
  1704. }
  1705. file_biService_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1706. switch v := v.(*AddProjectReq); i {
  1707. case 0:
  1708. return &v.state
  1709. case 1:
  1710. return &v.sizeCache
  1711. case 2:
  1712. return &v.unknownFields
  1713. default:
  1714. return nil
  1715. }
  1716. }
  1717. file_biService_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1718. switch v := v.(*AddProjectResp); i {
  1719. case 0:
  1720. return &v.state
  1721. case 1:
  1722. return &v.sizeCache
  1723. case 2:
  1724. return &v.unknownFields
  1725. default:
  1726. return nil
  1727. }
  1728. }
  1729. file_biService_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1730. switch v := v.(*AddProject); i {
  1731. case 0:
  1732. return &v.state
  1733. case 1:
  1734. return &v.sizeCache
  1735. case 2:
  1736. return &v.unknownFields
  1737. default:
  1738. return nil
  1739. }
  1740. }
  1741. file_biService_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1742. switch v := v.(*GetInfoIdResp); i {
  1743. case 0:
  1744. return &v.state
  1745. case 1:
  1746. return &v.sizeCache
  1747. case 2:
  1748. return &v.unknownFields
  1749. default:
  1750. return nil
  1751. }
  1752. }
  1753. file_biService_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1754. switch v := v.(*DrawClueReq); i {
  1755. case 0:
  1756. return &v.state
  1757. case 1:
  1758. return &v.sizeCache
  1759. case 2:
  1760. return &v.unknownFields
  1761. default:
  1762. return nil
  1763. }
  1764. }
  1765. file_biService_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1766. switch v := v.(*CallReq); i {
  1767. case 0:
  1768. return &v.state
  1769. case 1:
  1770. return &v.sizeCache
  1771. case 2:
  1772. return &v.unknownFields
  1773. default:
  1774. return nil
  1775. }
  1776. }
  1777. file_biService_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1778. switch v := v.(*BiResp); i {
  1779. case 0:
  1780. return &v.state
  1781. case 1:
  1782. return &v.sizeCache
  1783. case 2:
  1784. return &v.unknownFields
  1785. default:
  1786. return nil
  1787. }
  1788. }
  1789. file_biService_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1790. switch v := v.(*BiReply); i {
  1791. case 0:
  1792. return &v.state
  1793. case 1:
  1794. return &v.sizeCache
  1795. case 2:
  1796. return &v.unknownFields
  1797. default:
  1798. return nil
  1799. }
  1800. }
  1801. file_biService_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1802. switch v := v.(*DistributeClueReq); i {
  1803. case 0:
  1804. return &v.state
  1805. case 1:
  1806. return &v.sizeCache
  1807. case 2:
  1808. return &v.unknownFields
  1809. default:
  1810. return nil
  1811. }
  1812. }
  1813. file_biService_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1814. switch v := v.(*DistributeDatas); i {
  1815. case 0:
  1816. return &v.state
  1817. case 1:
  1818. return &v.sizeCache
  1819. case 2:
  1820. return &v.unknownFields
  1821. default:
  1822. return nil
  1823. }
  1824. }
  1825. file_biService_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1826. switch v := v.(*ClueImportReq); i {
  1827. case 0:
  1828. return &v.state
  1829. case 1:
  1830. return &v.sizeCache
  1831. case 2:
  1832. return &v.unknownFields
  1833. default:
  1834. return nil
  1835. }
  1836. }
  1837. file_biService_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1838. switch v := v.(*ClueImportResp); i {
  1839. case 0:
  1840. return &v.state
  1841. case 1:
  1842. return &v.sizeCache
  1843. case 2:
  1844. return &v.unknownFields
  1845. default:
  1846. return nil
  1847. }
  1848. }
  1849. file_biService_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1850. switch v := v.(*ClueImport); i {
  1851. case 0:
  1852. return &v.state
  1853. case 1:
  1854. return &v.sizeCache
  1855. case 2:
  1856. return &v.unknownFields
  1857. default:
  1858. return nil
  1859. }
  1860. }
  1861. file_biService_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  1862. switch v := v.(*ClueAddReq); i {
  1863. case 0:
  1864. return &v.state
  1865. case 1:
  1866. return &v.sizeCache
  1867. case 2:
  1868. return &v.unknownFields
  1869. default:
  1870. return nil
  1871. }
  1872. }
  1873. file_biService_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  1874. switch v := v.(*SqlManageReq); i {
  1875. case 0:
  1876. return &v.state
  1877. case 1:
  1878. return &v.sizeCache
  1879. case 2:
  1880. return &v.unknownFields
  1881. default:
  1882. return nil
  1883. }
  1884. }
  1885. file_biService_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  1886. switch v := v.(*MyInfoReq); i {
  1887. case 0:
  1888. return &v.state
  1889. case 1:
  1890. return &v.sizeCache
  1891. case 2:
  1892. return &v.unknownFields
  1893. default:
  1894. return nil
  1895. }
  1896. }
  1897. file_biService_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  1898. switch v := v.(*Param); i {
  1899. case 0:
  1900. return &v.state
  1901. case 1:
  1902. return &v.sizeCache
  1903. case 2:
  1904. return &v.unknownFields
  1905. default:
  1906. return nil
  1907. }
  1908. }
  1909. file_biService_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  1910. switch v := v.(*ExportReq); i {
  1911. case 0:
  1912. return &v.state
  1913. case 1:
  1914. return &v.sizeCache
  1915. case 2:
  1916. return &v.unknownFields
  1917. default:
  1918. return nil
  1919. }
  1920. }
  1921. file_biService_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  1922. switch v := v.(*OperateReq); i {
  1923. case 0:
  1924. return &v.state
  1925. case 1:
  1926. return &v.sizeCache
  1927. case 2:
  1928. return &v.unknownFields
  1929. default:
  1930. return nil
  1931. }
  1932. }
  1933. file_biService_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  1934. switch v := v.(*ExportByDbReq); i {
  1935. case 0:
  1936. return &v.state
  1937. case 1:
  1938. return &v.sizeCache
  1939. case 2:
  1940. return &v.unknownFields
  1941. default:
  1942. return nil
  1943. }
  1944. }
  1945. }
  1946. type x struct{}
  1947. out := protoimpl.TypeBuilder{
  1948. File: protoimpl.DescBuilder{
  1949. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1950. RawDescriptor: file_biService_proto_rawDesc,
  1951. NumEnums: 0,
  1952. NumMessages: 23,
  1953. NumExtensions: 0,
  1954. NumServices: 1,
  1955. },
  1956. GoTypes: file_biService_proto_goTypes,
  1957. DependencyIndexes: file_biService_proto_depIdxs,
  1958. MessageInfos: file_biService_proto_msgTypes,
  1959. }.Build()
  1960. File_biService_proto = out.File
  1961. file_biService_proto_rawDesc = nil
  1962. file_biService_proto_goTypes = nil
  1963. file_biService_proto_depIdxs = nil
  1964. }