biService.pb.go 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.28.0
  4. // protoc v3.19.4
  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 CompanyReq struct {
  1291. state protoimpl.MessageState
  1292. sizeCache protoimpl.SizeCache
  1293. unknownFields protoimpl.UnknownFields
  1294. CompanyName string `protobuf:"bytes,1,opt,name=companyName,proto3" json:"companyName,omitempty"`
  1295. }
  1296. func (x *CompanyReq) Reset() {
  1297. *x = CompanyReq{}
  1298. if protoimpl.UnsafeEnabled {
  1299. mi := &file_biService_proto_msgTypes[22]
  1300. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1301. ms.StoreMessageInfo(mi)
  1302. }
  1303. }
  1304. func (x *CompanyReq) String() string {
  1305. return protoimpl.X.MessageStringOf(x)
  1306. }
  1307. func (*CompanyReq) ProtoMessage() {}
  1308. func (x *CompanyReq) ProtoReflect() protoreflect.Message {
  1309. mi := &file_biService_proto_msgTypes[22]
  1310. if protoimpl.UnsafeEnabled && x != nil {
  1311. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1312. if ms.LoadMessageInfo() == nil {
  1313. ms.StoreMessageInfo(mi)
  1314. }
  1315. return ms
  1316. }
  1317. return mi.MessageOf(x)
  1318. }
  1319. // Deprecated: Use CompanyReq.ProtoReflect.Descriptor instead.
  1320. func (*CompanyReq) Descriptor() ([]byte, []int) {
  1321. return file_biService_proto_rawDescGZIP(), []int{22}
  1322. }
  1323. func (x *CompanyReq) GetCompanyName() string {
  1324. if x != nil {
  1325. return x.CompanyName
  1326. }
  1327. return ""
  1328. }
  1329. type CompanyResp struct {
  1330. state protoimpl.MessageState
  1331. sizeCache protoimpl.SizeCache
  1332. unknownFields protoimpl.UnknownFields
  1333. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  1334. IsCustomer bool `protobuf:"varint,2,opt,name=isCustomer,proto3" json:"isCustomer,omitempty"`
  1335. IsGroup bool `protobuf:"varint,3,opt,name=isGroup,proto3" json:"isGroup,omitempty"`
  1336. IsCommerce bool `protobuf:"varint,4,opt,name=isCommerce,proto3" json:"isCommerce,omitempty"`
  1337. }
  1338. func (x *CompanyResp) Reset() {
  1339. *x = CompanyResp{}
  1340. if protoimpl.UnsafeEnabled {
  1341. mi := &file_biService_proto_msgTypes[23]
  1342. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1343. ms.StoreMessageInfo(mi)
  1344. }
  1345. }
  1346. func (x *CompanyResp) String() string {
  1347. return protoimpl.X.MessageStringOf(x)
  1348. }
  1349. func (*CompanyResp) ProtoMessage() {}
  1350. func (x *CompanyResp) ProtoReflect() protoreflect.Message {
  1351. mi := &file_biService_proto_msgTypes[23]
  1352. if protoimpl.UnsafeEnabled && x != nil {
  1353. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1354. if ms.LoadMessageInfo() == nil {
  1355. ms.StoreMessageInfo(mi)
  1356. }
  1357. return ms
  1358. }
  1359. return mi.MessageOf(x)
  1360. }
  1361. // Deprecated: Use CompanyResp.ProtoReflect.Descriptor instead.
  1362. func (*CompanyResp) Descriptor() ([]byte, []int) {
  1363. return file_biService_proto_rawDescGZIP(), []int{23}
  1364. }
  1365. func (x *CompanyResp) GetStatus() int64 {
  1366. if x != nil {
  1367. return x.Status
  1368. }
  1369. return 0
  1370. }
  1371. func (x *CompanyResp) GetIsCustomer() bool {
  1372. if x != nil {
  1373. return x.IsCustomer
  1374. }
  1375. return false
  1376. }
  1377. func (x *CompanyResp) GetIsGroup() bool {
  1378. if x != nil {
  1379. return x.IsGroup
  1380. }
  1381. return false
  1382. }
  1383. func (x *CompanyResp) GetIsCommerce() bool {
  1384. if x != nil {
  1385. return x.IsCommerce
  1386. }
  1387. return false
  1388. }
  1389. type DistributeClueShowReq struct {
  1390. state protoimpl.MessageState
  1391. sizeCache protoimpl.SizeCache
  1392. unknownFields protoimpl.UnknownFields
  1393. PositionId int64 `protobuf:"varint,1,opt,name=positionId,proto3" json:"positionId,omitempty"`
  1394. DataType int64 `protobuf:"varint,2,opt,name=dataType,proto3" json:"dataType,omitempty"`
  1395. ClueIdList string `protobuf:"bytes,3,opt,name=clueIdList,proto3" json:"clueIdList,omitempty"`
  1396. Datas []*DistributeClueShows `protobuf:"bytes,4,rep,name=datas,proto3" json:"datas,omitempty"`
  1397. IsTask int64 `protobuf:"varint,5,opt,name=IsTask,proto3" json:"IsTask,omitempty"`
  1398. UpdatePositionID int64 `protobuf:"varint,6,opt,name=UpdatePositionID,proto3" json:"UpdatePositionID,omitempty"`
  1399. }
  1400. func (x *DistributeClueShowReq) Reset() {
  1401. *x = DistributeClueShowReq{}
  1402. if protoimpl.UnsafeEnabled {
  1403. mi := &file_biService_proto_msgTypes[24]
  1404. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1405. ms.StoreMessageInfo(mi)
  1406. }
  1407. }
  1408. func (x *DistributeClueShowReq) String() string {
  1409. return protoimpl.X.MessageStringOf(x)
  1410. }
  1411. func (*DistributeClueShowReq) ProtoMessage() {}
  1412. func (x *DistributeClueShowReq) ProtoReflect() protoreflect.Message {
  1413. mi := &file_biService_proto_msgTypes[24]
  1414. if protoimpl.UnsafeEnabled && x != nil {
  1415. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1416. if ms.LoadMessageInfo() == nil {
  1417. ms.StoreMessageInfo(mi)
  1418. }
  1419. return ms
  1420. }
  1421. return mi.MessageOf(x)
  1422. }
  1423. // Deprecated: Use DistributeClueShowReq.ProtoReflect.Descriptor instead.
  1424. func (*DistributeClueShowReq) Descriptor() ([]byte, []int) {
  1425. return file_biService_proto_rawDescGZIP(), []int{24}
  1426. }
  1427. func (x *DistributeClueShowReq) GetPositionId() int64 {
  1428. if x != nil {
  1429. return x.PositionId
  1430. }
  1431. return 0
  1432. }
  1433. func (x *DistributeClueShowReq) GetDataType() int64 {
  1434. if x != nil {
  1435. return x.DataType
  1436. }
  1437. return 0
  1438. }
  1439. func (x *DistributeClueShowReq) GetClueIdList() string {
  1440. if x != nil {
  1441. return x.ClueIdList
  1442. }
  1443. return ""
  1444. }
  1445. func (x *DistributeClueShowReq) GetDatas() []*DistributeClueShows {
  1446. if x != nil {
  1447. return x.Datas
  1448. }
  1449. return nil
  1450. }
  1451. func (x *DistributeClueShowReq) GetIsTask() int64 {
  1452. if x != nil {
  1453. return x.IsTask
  1454. }
  1455. return 0
  1456. }
  1457. func (x *DistributeClueShowReq) GetUpdatePositionID() int64 {
  1458. if x != nil {
  1459. return x.UpdatePositionID
  1460. }
  1461. return 0
  1462. }
  1463. type DistributeClueShows struct {
  1464. state protoimpl.MessageState
  1465. sizeCache protoimpl.SizeCache
  1466. unknownFields protoimpl.UnknownFields
  1467. PositionId int64 `protobuf:"varint,1,opt,name=positionId,proto3" json:"positionId,omitempty"`
  1468. DistributedCount int64 `protobuf:"varint,2,opt,name=distributedCount,proto3" json:"distributedCount,omitempty"`
  1469. }
  1470. func (x *DistributeClueShows) Reset() {
  1471. *x = DistributeClueShows{}
  1472. if protoimpl.UnsafeEnabled {
  1473. mi := &file_biService_proto_msgTypes[25]
  1474. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1475. ms.StoreMessageInfo(mi)
  1476. }
  1477. }
  1478. func (x *DistributeClueShows) String() string {
  1479. return protoimpl.X.MessageStringOf(x)
  1480. }
  1481. func (*DistributeClueShows) ProtoMessage() {}
  1482. func (x *DistributeClueShows) ProtoReflect() protoreflect.Message {
  1483. mi := &file_biService_proto_msgTypes[25]
  1484. if protoimpl.UnsafeEnabled && x != nil {
  1485. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1486. if ms.LoadMessageInfo() == nil {
  1487. ms.StoreMessageInfo(mi)
  1488. }
  1489. return ms
  1490. }
  1491. return mi.MessageOf(x)
  1492. }
  1493. // Deprecated: Use DistributeClueShows.ProtoReflect.Descriptor instead.
  1494. func (*DistributeClueShows) Descriptor() ([]byte, []int) {
  1495. return file_biService_proto_rawDescGZIP(), []int{25}
  1496. }
  1497. func (x *DistributeClueShows) GetPositionId() int64 {
  1498. if x != nil {
  1499. return x.PositionId
  1500. }
  1501. return 0
  1502. }
  1503. func (x *DistributeClueShows) GetDistributedCount() int64 {
  1504. if x != nil {
  1505. return x.DistributedCount
  1506. }
  1507. return 0
  1508. }
  1509. type DistributeClueShowss struct {
  1510. state protoimpl.MessageState
  1511. sizeCache protoimpl.SizeCache
  1512. unknownFields protoimpl.UnknownFields
  1513. PositionId int64 `protobuf:"varint,1,opt,name=positionId,proto3" json:"positionId,omitempty"`
  1514. CompanyCount int64 `protobuf:"varint,2,opt,name=companyCount,proto3" json:"companyCount,omitempty"`
  1515. ClueCount int64 `protobuf:"varint,3,opt,name=clueCount,proto3" json:"clueCount,omitempty"`
  1516. MinCount int64 `protobuf:"varint,4,opt,name=minCount,proto3" json:"minCount,omitempty"`
  1517. CompanyCounts int64 `protobuf:"varint,5,opt,name=companyCounts,proto3" json:"companyCounts,omitempty"`
  1518. ExistingCount int64 `protobuf:"varint,6,opt,name=existingCount,proto3" json:"existingCount,omitempty"`
  1519. FullStatus bool `protobuf:"varint,7,opt,name=FullStatus,proto3" json:"FullStatus,omitempty"`
  1520. }
  1521. func (x *DistributeClueShowss) Reset() {
  1522. *x = DistributeClueShowss{}
  1523. if protoimpl.UnsafeEnabled {
  1524. mi := &file_biService_proto_msgTypes[26]
  1525. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1526. ms.StoreMessageInfo(mi)
  1527. }
  1528. }
  1529. func (x *DistributeClueShowss) String() string {
  1530. return protoimpl.X.MessageStringOf(x)
  1531. }
  1532. func (*DistributeClueShowss) ProtoMessage() {}
  1533. func (x *DistributeClueShowss) ProtoReflect() protoreflect.Message {
  1534. mi := &file_biService_proto_msgTypes[26]
  1535. if protoimpl.UnsafeEnabled && x != nil {
  1536. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1537. if ms.LoadMessageInfo() == nil {
  1538. ms.StoreMessageInfo(mi)
  1539. }
  1540. return ms
  1541. }
  1542. return mi.MessageOf(x)
  1543. }
  1544. // Deprecated: Use DistributeClueShowss.ProtoReflect.Descriptor instead.
  1545. func (*DistributeClueShowss) Descriptor() ([]byte, []int) {
  1546. return file_biService_proto_rawDescGZIP(), []int{26}
  1547. }
  1548. func (x *DistributeClueShowss) GetPositionId() int64 {
  1549. if x != nil {
  1550. return x.PositionId
  1551. }
  1552. return 0
  1553. }
  1554. func (x *DistributeClueShowss) GetCompanyCount() int64 {
  1555. if x != nil {
  1556. return x.CompanyCount
  1557. }
  1558. return 0
  1559. }
  1560. func (x *DistributeClueShowss) GetClueCount() int64 {
  1561. if x != nil {
  1562. return x.ClueCount
  1563. }
  1564. return 0
  1565. }
  1566. func (x *DistributeClueShowss) GetMinCount() int64 {
  1567. if x != nil {
  1568. return x.MinCount
  1569. }
  1570. return 0
  1571. }
  1572. func (x *DistributeClueShowss) GetCompanyCounts() int64 {
  1573. if x != nil {
  1574. return x.CompanyCounts
  1575. }
  1576. return 0
  1577. }
  1578. func (x *DistributeClueShowss) GetExistingCount() int64 {
  1579. if x != nil {
  1580. return x.ExistingCount
  1581. }
  1582. return 0
  1583. }
  1584. func (x *DistributeClueShowss) GetFullStatus() bool {
  1585. if x != nil {
  1586. return x.FullStatus
  1587. }
  1588. return false
  1589. }
  1590. type DistributeClueShowResp struct {
  1591. state protoimpl.MessageState
  1592. sizeCache protoimpl.SizeCache
  1593. unknownFields protoimpl.UnknownFields
  1594. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1595. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1596. Data []*DistributeClueShowss `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  1597. }
  1598. func (x *DistributeClueShowResp) Reset() {
  1599. *x = DistributeClueShowResp{}
  1600. if protoimpl.UnsafeEnabled {
  1601. mi := &file_biService_proto_msgTypes[27]
  1602. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1603. ms.StoreMessageInfo(mi)
  1604. }
  1605. }
  1606. func (x *DistributeClueShowResp) String() string {
  1607. return protoimpl.X.MessageStringOf(x)
  1608. }
  1609. func (*DistributeClueShowResp) ProtoMessage() {}
  1610. func (x *DistributeClueShowResp) ProtoReflect() protoreflect.Message {
  1611. mi := &file_biService_proto_msgTypes[27]
  1612. if protoimpl.UnsafeEnabled && x != nil {
  1613. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1614. if ms.LoadMessageInfo() == nil {
  1615. ms.StoreMessageInfo(mi)
  1616. }
  1617. return ms
  1618. }
  1619. return mi.MessageOf(x)
  1620. }
  1621. // Deprecated: Use DistributeClueShowResp.ProtoReflect.Descriptor instead.
  1622. func (*DistributeClueShowResp) Descriptor() ([]byte, []int) {
  1623. return file_biService_proto_rawDescGZIP(), []int{27}
  1624. }
  1625. func (x *DistributeClueShowResp) GetErrorCode() int64 {
  1626. if x != nil {
  1627. return x.ErrorCode
  1628. }
  1629. return 0
  1630. }
  1631. func (x *DistributeClueShowResp) GetErrorMsg() string {
  1632. if x != nil {
  1633. return x.ErrorMsg
  1634. }
  1635. return ""
  1636. }
  1637. func (x *DistributeClueShowResp) GetData() []*DistributeClueShowss {
  1638. if x != nil {
  1639. return x.Data
  1640. }
  1641. return nil
  1642. }
  1643. type ExportByDbReq struct {
  1644. state protoimpl.MessageState
  1645. sizeCache protoimpl.SizeCache
  1646. unknownFields protoimpl.UnknownFields
  1647. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  1648. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
  1649. Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content,omitempty"`
  1650. Mails string `protobuf:"bytes,4,opt,name=mails,proto3" json:"mails,omitempty"`
  1651. FileName string `protobuf:"bytes,5,opt,name=fileName,proto3" json:"fileName,omitempty"`
  1652. Datas []*FilesData `protobuf:"bytes,6,rep,name=datas,proto3" json:"datas,omitempty"`
  1653. }
  1654. func (x *ExportByDbReq) Reset() {
  1655. *x = ExportByDbReq{}
  1656. if protoimpl.UnsafeEnabled {
  1657. mi := &file_biService_proto_msgTypes[28]
  1658. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1659. ms.StoreMessageInfo(mi)
  1660. }
  1661. }
  1662. func (x *ExportByDbReq) String() string {
  1663. return protoimpl.X.MessageStringOf(x)
  1664. }
  1665. func (*ExportByDbReq) ProtoMessage() {}
  1666. func (x *ExportByDbReq) ProtoReflect() protoreflect.Message {
  1667. mi := &file_biService_proto_msgTypes[28]
  1668. if protoimpl.UnsafeEnabled && x != nil {
  1669. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1670. if ms.LoadMessageInfo() == nil {
  1671. ms.StoreMessageInfo(mi)
  1672. }
  1673. return ms
  1674. }
  1675. return mi.MessageOf(x)
  1676. }
  1677. // Deprecated: Use ExportByDbReq.ProtoReflect.Descriptor instead.
  1678. func (*ExportByDbReq) Descriptor() ([]byte, []int) {
  1679. return file_biService_proto_rawDescGZIP(), []int{28}
  1680. }
  1681. func (x *ExportByDbReq) GetToken() string {
  1682. if x != nil {
  1683. return x.Token
  1684. }
  1685. return ""
  1686. }
  1687. func (x *ExportByDbReq) GetTitle() string {
  1688. if x != nil {
  1689. return x.Title
  1690. }
  1691. return ""
  1692. }
  1693. func (x *ExportByDbReq) GetContent() string {
  1694. if x != nil {
  1695. return x.Content
  1696. }
  1697. return ""
  1698. }
  1699. func (x *ExportByDbReq) GetMails() string {
  1700. if x != nil {
  1701. return x.Mails
  1702. }
  1703. return ""
  1704. }
  1705. func (x *ExportByDbReq) GetFileName() string {
  1706. if x != nil {
  1707. return x.FileName
  1708. }
  1709. return ""
  1710. }
  1711. func (x *ExportByDbReq) GetDatas() []*FilesData {
  1712. if x != nil {
  1713. return x.Datas
  1714. }
  1715. return nil
  1716. }
  1717. type FilesData struct {
  1718. state protoimpl.MessageState
  1719. sizeCache protoimpl.SizeCache
  1720. unknownFields protoimpl.UnknownFields
  1721. SheetName string `protobuf:"bytes,1,opt,name=sheetName,proto3" json:"sheetName,omitempty"`
  1722. Sql string `protobuf:"bytes,2,opt,name=sql,proto3" json:"sql,omitempty"`
  1723. }
  1724. func (x *FilesData) Reset() {
  1725. *x = FilesData{}
  1726. if protoimpl.UnsafeEnabled {
  1727. mi := &file_biService_proto_msgTypes[29]
  1728. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1729. ms.StoreMessageInfo(mi)
  1730. }
  1731. }
  1732. func (x *FilesData) String() string {
  1733. return protoimpl.X.MessageStringOf(x)
  1734. }
  1735. func (*FilesData) ProtoMessage() {}
  1736. func (x *FilesData) ProtoReflect() protoreflect.Message {
  1737. mi := &file_biService_proto_msgTypes[29]
  1738. if protoimpl.UnsafeEnabled && x != nil {
  1739. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1740. if ms.LoadMessageInfo() == nil {
  1741. ms.StoreMessageInfo(mi)
  1742. }
  1743. return ms
  1744. }
  1745. return mi.MessageOf(x)
  1746. }
  1747. // Deprecated: Use FilesData.ProtoReflect.Descriptor instead.
  1748. func (*FilesData) Descriptor() ([]byte, []int) {
  1749. return file_biService_proto_rawDescGZIP(), []int{29}
  1750. }
  1751. func (x *FilesData) GetSheetName() string {
  1752. if x != nil {
  1753. return x.SheetName
  1754. }
  1755. return ""
  1756. }
  1757. func (x *FilesData) GetSql() string {
  1758. if x != nil {
  1759. return x.Sql
  1760. }
  1761. return ""
  1762. }
  1763. type UpFileReq struct {
  1764. state protoimpl.MessageState
  1765. sizeCache protoimpl.SizeCache
  1766. unknownFields protoimpl.UnknownFields
  1767. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
  1768. UserId int64 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  1769. PositionId int64 `protobuf:"varint,3,opt,name=positionId,proto3" json:"positionId,omitempty"`
  1770. EntUserId int64 `protobuf:"varint,4,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  1771. EntId int64 `protobuf:"varint,5,opt,name=entId,proto3" json:"entId,omitempty"`
  1772. Stype string `protobuf:"bytes,6,opt,name=stype,proto3" json:"stype,omitempty"`
  1773. File []byte `protobuf:"bytes,7,opt,name=file,proto3" json:"file,omitempty"`
  1774. FileName string `protobuf:"bytes,8,opt,name=fileName,proto3" json:"fileName,omitempty"`
  1775. FileSize string `protobuf:"bytes,9,opt,name=fileSize,proto3" json:"fileSize,omitempty"`
  1776. }
  1777. func (x *UpFileReq) Reset() {
  1778. *x = UpFileReq{}
  1779. if protoimpl.UnsafeEnabled {
  1780. mi := &file_biService_proto_msgTypes[30]
  1781. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1782. ms.StoreMessageInfo(mi)
  1783. }
  1784. }
  1785. func (x *UpFileReq) String() string {
  1786. return protoimpl.X.MessageStringOf(x)
  1787. }
  1788. func (*UpFileReq) ProtoMessage() {}
  1789. func (x *UpFileReq) ProtoReflect() protoreflect.Message {
  1790. mi := &file_biService_proto_msgTypes[30]
  1791. if protoimpl.UnsafeEnabled && x != nil {
  1792. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1793. if ms.LoadMessageInfo() == nil {
  1794. ms.StoreMessageInfo(mi)
  1795. }
  1796. return ms
  1797. }
  1798. return mi.MessageOf(x)
  1799. }
  1800. // Deprecated: Use UpFileReq.ProtoReflect.Descriptor instead.
  1801. func (*UpFileReq) Descriptor() ([]byte, []int) {
  1802. return file_biService_proto_rawDescGZIP(), []int{30}
  1803. }
  1804. func (x *UpFileReq) GetAppId() string {
  1805. if x != nil {
  1806. return x.AppId
  1807. }
  1808. return ""
  1809. }
  1810. func (x *UpFileReq) GetUserId() int64 {
  1811. if x != nil {
  1812. return x.UserId
  1813. }
  1814. return 0
  1815. }
  1816. func (x *UpFileReq) GetPositionId() int64 {
  1817. if x != nil {
  1818. return x.PositionId
  1819. }
  1820. return 0
  1821. }
  1822. func (x *UpFileReq) GetEntUserId() int64 {
  1823. if x != nil {
  1824. return x.EntUserId
  1825. }
  1826. return 0
  1827. }
  1828. func (x *UpFileReq) GetEntId() int64 {
  1829. if x != nil {
  1830. return x.EntId
  1831. }
  1832. return 0
  1833. }
  1834. func (x *UpFileReq) GetStype() string {
  1835. if x != nil {
  1836. return x.Stype
  1837. }
  1838. return ""
  1839. }
  1840. func (x *UpFileReq) GetFile() []byte {
  1841. if x != nil {
  1842. return x.File
  1843. }
  1844. return nil
  1845. }
  1846. func (x *UpFileReq) GetFileName() string {
  1847. if x != nil {
  1848. return x.FileName
  1849. }
  1850. return ""
  1851. }
  1852. func (x *UpFileReq) GetFileSize() string {
  1853. if x != nil {
  1854. return x.FileSize
  1855. }
  1856. return ""
  1857. }
  1858. type AcceptanceReq struct {
  1859. state protoimpl.MessageState
  1860. sizeCache protoimpl.SizeCache
  1861. unknownFields protoimpl.UnknownFields
  1862. ProposeType int64 `protobuf:"varint,1,opt,name=ProposeType,proto3" json:"ProposeType,omitempty"`
  1863. ProposeTime string `protobuf:"bytes,2,opt,name=Propose_time,json=ProposeTime,proto3" json:"Propose_time,omitempty"`
  1864. Channel string `protobuf:"bytes,3,opt,name=Channel,proto3" json:"Channel,omitempty"`
  1865. AcceptanceType int64 `protobuf:"varint,4,opt,name=Acceptance_type,json=AcceptanceType,proto3" json:"Acceptance_type,omitempty"`
  1866. Status int64 `protobuf:"varint,5,opt,name=Status,proto3" json:"Status,omitempty"`
  1867. OverTime string `protobuf:"bytes,6,opt,name=Over_time,json=OverTime,proto3" json:"Over_time,omitempty"`
  1868. Remark string `protobuf:"bytes,7,opt,name=Remark,proto3" json:"Remark,omitempty"`
  1869. PositionId int64 `protobuf:"varint,8,opt,name=PositionId,proto3" json:"PositionId,omitempty"`
  1870. DeptId string `protobuf:"bytes,9,opt,name=DeptId,proto3" json:"DeptId,omitempty"`
  1871. EntUserName string `protobuf:"bytes,10,opt,name=EntUserName,proto3" json:"EntUserName,omitempty"`
  1872. ParamData string `protobuf:"bytes,11,opt,name=paramData,proto3" json:"paramData,omitempty"`
  1873. }
  1874. func (x *AcceptanceReq) Reset() {
  1875. *x = AcceptanceReq{}
  1876. if protoimpl.UnsafeEnabled {
  1877. mi := &file_biService_proto_msgTypes[31]
  1878. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1879. ms.StoreMessageInfo(mi)
  1880. }
  1881. }
  1882. func (x *AcceptanceReq) String() string {
  1883. return protoimpl.X.MessageStringOf(x)
  1884. }
  1885. func (*AcceptanceReq) ProtoMessage() {}
  1886. func (x *AcceptanceReq) ProtoReflect() protoreflect.Message {
  1887. mi := &file_biService_proto_msgTypes[31]
  1888. if protoimpl.UnsafeEnabled && x != nil {
  1889. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1890. if ms.LoadMessageInfo() == nil {
  1891. ms.StoreMessageInfo(mi)
  1892. }
  1893. return ms
  1894. }
  1895. return mi.MessageOf(x)
  1896. }
  1897. // Deprecated: Use AcceptanceReq.ProtoReflect.Descriptor instead.
  1898. func (*AcceptanceReq) Descriptor() ([]byte, []int) {
  1899. return file_biService_proto_rawDescGZIP(), []int{31}
  1900. }
  1901. func (x *AcceptanceReq) GetProposeType() int64 {
  1902. if x != nil {
  1903. return x.ProposeType
  1904. }
  1905. return 0
  1906. }
  1907. func (x *AcceptanceReq) GetProposeTime() string {
  1908. if x != nil {
  1909. return x.ProposeTime
  1910. }
  1911. return ""
  1912. }
  1913. func (x *AcceptanceReq) GetChannel() string {
  1914. if x != nil {
  1915. return x.Channel
  1916. }
  1917. return ""
  1918. }
  1919. func (x *AcceptanceReq) GetAcceptanceType() int64 {
  1920. if x != nil {
  1921. return x.AcceptanceType
  1922. }
  1923. return 0
  1924. }
  1925. func (x *AcceptanceReq) GetStatus() int64 {
  1926. if x != nil {
  1927. return x.Status
  1928. }
  1929. return 0
  1930. }
  1931. func (x *AcceptanceReq) GetOverTime() string {
  1932. if x != nil {
  1933. return x.OverTime
  1934. }
  1935. return ""
  1936. }
  1937. func (x *AcceptanceReq) GetRemark() string {
  1938. if x != nil {
  1939. return x.Remark
  1940. }
  1941. return ""
  1942. }
  1943. func (x *AcceptanceReq) GetPositionId() int64 {
  1944. if x != nil {
  1945. return x.PositionId
  1946. }
  1947. return 0
  1948. }
  1949. func (x *AcceptanceReq) GetDeptId() string {
  1950. if x != nil {
  1951. return x.DeptId
  1952. }
  1953. return ""
  1954. }
  1955. func (x *AcceptanceReq) GetEntUserName() string {
  1956. if x != nil {
  1957. return x.EntUserName
  1958. }
  1959. return ""
  1960. }
  1961. func (x *AcceptanceReq) GetParamData() string {
  1962. if x != nil {
  1963. return x.ParamData
  1964. }
  1965. return ""
  1966. }
  1967. type AcceptanceResp struct {
  1968. state protoimpl.MessageState
  1969. sizeCache protoimpl.SizeCache
  1970. unknownFields protoimpl.UnknownFields
  1971. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1972. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1973. Data *Acceptance `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1974. }
  1975. func (x *AcceptanceResp) Reset() {
  1976. *x = AcceptanceResp{}
  1977. if protoimpl.UnsafeEnabled {
  1978. mi := &file_biService_proto_msgTypes[32]
  1979. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1980. ms.StoreMessageInfo(mi)
  1981. }
  1982. }
  1983. func (x *AcceptanceResp) String() string {
  1984. return protoimpl.X.MessageStringOf(x)
  1985. }
  1986. func (*AcceptanceResp) ProtoMessage() {}
  1987. func (x *AcceptanceResp) ProtoReflect() protoreflect.Message {
  1988. mi := &file_biService_proto_msgTypes[32]
  1989. if protoimpl.UnsafeEnabled && x != nil {
  1990. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1991. if ms.LoadMessageInfo() == nil {
  1992. ms.StoreMessageInfo(mi)
  1993. }
  1994. return ms
  1995. }
  1996. return mi.MessageOf(x)
  1997. }
  1998. // Deprecated: Use AcceptanceResp.ProtoReflect.Descriptor instead.
  1999. func (*AcceptanceResp) Descriptor() ([]byte, []int) {
  2000. return file_biService_proto_rawDescGZIP(), []int{32}
  2001. }
  2002. func (x *AcceptanceResp) GetErrorCode() int64 {
  2003. if x != nil {
  2004. return x.ErrorCode
  2005. }
  2006. return 0
  2007. }
  2008. func (x *AcceptanceResp) GetErrorMsg() string {
  2009. if x != nil {
  2010. return x.ErrorMsg
  2011. }
  2012. return ""
  2013. }
  2014. func (x *AcceptanceResp) GetData() *Acceptance {
  2015. if x != nil {
  2016. return x.Data
  2017. }
  2018. return nil
  2019. }
  2020. type Acceptance struct {
  2021. state protoimpl.MessageState
  2022. sizeCache protoimpl.SizeCache
  2023. unknownFields protoimpl.UnknownFields
  2024. AcceptanceNo string `protobuf:"bytes,1,opt,name=AcceptanceNo,proto3" json:"AcceptanceNo,omitempty"`
  2025. }
  2026. func (x *Acceptance) Reset() {
  2027. *x = Acceptance{}
  2028. if protoimpl.UnsafeEnabled {
  2029. mi := &file_biService_proto_msgTypes[33]
  2030. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2031. ms.StoreMessageInfo(mi)
  2032. }
  2033. }
  2034. func (x *Acceptance) String() string {
  2035. return protoimpl.X.MessageStringOf(x)
  2036. }
  2037. func (*Acceptance) ProtoMessage() {}
  2038. func (x *Acceptance) ProtoReflect() protoreflect.Message {
  2039. mi := &file_biService_proto_msgTypes[33]
  2040. if protoimpl.UnsafeEnabled && x != nil {
  2041. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2042. if ms.LoadMessageInfo() == nil {
  2043. ms.StoreMessageInfo(mi)
  2044. }
  2045. return ms
  2046. }
  2047. return mi.MessageOf(x)
  2048. }
  2049. // Deprecated: Use Acceptance.ProtoReflect.Descriptor instead.
  2050. func (*Acceptance) Descriptor() ([]byte, []int) {
  2051. return file_biService_proto_rawDescGZIP(), []int{33}
  2052. }
  2053. func (x *Acceptance) GetAcceptanceNo() string {
  2054. if x != nil {
  2055. return x.AcceptanceNo
  2056. }
  2057. return ""
  2058. }
  2059. type SendMailReq struct {
  2060. state protoimpl.MessageState
  2061. sizeCache protoimpl.SizeCache
  2062. unknownFields protoimpl.UnknownFields
  2063. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  2064. Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
  2065. Mails string `protobuf:"bytes,3,opt,name=mails,proto3" json:"mails,omitempty"`
  2066. }
  2067. func (x *SendMailReq) Reset() {
  2068. *x = SendMailReq{}
  2069. if protoimpl.UnsafeEnabled {
  2070. mi := &file_biService_proto_msgTypes[34]
  2071. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2072. ms.StoreMessageInfo(mi)
  2073. }
  2074. }
  2075. func (x *SendMailReq) String() string {
  2076. return protoimpl.X.MessageStringOf(x)
  2077. }
  2078. func (*SendMailReq) ProtoMessage() {}
  2079. func (x *SendMailReq) ProtoReflect() protoreflect.Message {
  2080. mi := &file_biService_proto_msgTypes[34]
  2081. if protoimpl.UnsafeEnabled && x != nil {
  2082. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2083. if ms.LoadMessageInfo() == nil {
  2084. ms.StoreMessageInfo(mi)
  2085. }
  2086. return ms
  2087. }
  2088. return mi.MessageOf(x)
  2089. }
  2090. // Deprecated: Use SendMailReq.ProtoReflect.Descriptor instead.
  2091. func (*SendMailReq) Descriptor() ([]byte, []int) {
  2092. return file_biService_proto_rawDescGZIP(), []int{34}
  2093. }
  2094. func (x *SendMailReq) GetTitle() string {
  2095. if x != nil {
  2096. return x.Title
  2097. }
  2098. return ""
  2099. }
  2100. func (x *SendMailReq) GetContent() string {
  2101. if x != nil {
  2102. return x.Content
  2103. }
  2104. return ""
  2105. }
  2106. func (x *SendMailReq) GetMails() string {
  2107. if x != nil {
  2108. return x.Mails
  2109. }
  2110. return ""
  2111. }
  2112. type CreateCuleReq struct {
  2113. state protoimpl.MessageState
  2114. sizeCache protoimpl.SizeCache
  2115. unknownFields protoimpl.UnknownFields
  2116. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
  2117. PositionId int64 `protobuf:"varint,2,opt,name=positionId,proto3" json:"positionId,omitempty"`
  2118. UserId string `protobuf:"bytes,3,opt,name=userId,proto3" json:"userId,omitempty"`
  2119. Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"`
  2120. }
  2121. func (x *CreateCuleReq) Reset() {
  2122. *x = CreateCuleReq{}
  2123. if protoimpl.UnsafeEnabled {
  2124. mi := &file_biService_proto_msgTypes[35]
  2125. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2126. ms.StoreMessageInfo(mi)
  2127. }
  2128. }
  2129. func (x *CreateCuleReq) String() string {
  2130. return protoimpl.X.MessageStringOf(x)
  2131. }
  2132. func (*CreateCuleReq) ProtoMessage() {}
  2133. func (x *CreateCuleReq) ProtoReflect() protoreflect.Message {
  2134. mi := &file_biService_proto_msgTypes[35]
  2135. if protoimpl.UnsafeEnabled && x != nil {
  2136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2137. if ms.LoadMessageInfo() == nil {
  2138. ms.StoreMessageInfo(mi)
  2139. }
  2140. return ms
  2141. }
  2142. return mi.MessageOf(x)
  2143. }
  2144. // Deprecated: Use CreateCuleReq.ProtoReflect.Descriptor instead.
  2145. func (*CreateCuleReq) Descriptor() ([]byte, []int) {
  2146. return file_biService_proto_rawDescGZIP(), []int{35}
  2147. }
  2148. func (x *CreateCuleReq) GetAppId() string {
  2149. if x != nil {
  2150. return x.AppId
  2151. }
  2152. return ""
  2153. }
  2154. func (x *CreateCuleReq) GetPositionId() int64 {
  2155. if x != nil {
  2156. return x.PositionId
  2157. }
  2158. return 0
  2159. }
  2160. func (x *CreateCuleReq) GetUserId() string {
  2161. if x != nil {
  2162. return x.UserId
  2163. }
  2164. return ""
  2165. }
  2166. func (x *CreateCuleReq) GetPhone() string {
  2167. if x != nil {
  2168. return x.Phone
  2169. }
  2170. return ""
  2171. }
  2172. type TransferClueReq struct {
  2173. state protoimpl.MessageState
  2174. sizeCache protoimpl.SizeCache
  2175. unknownFields protoimpl.UnknownFields
  2176. PositionId int64 `protobuf:"varint,1,opt,name=positionId,proto3" json:"positionId,omitempty"`
  2177. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId,omitempty"`
  2178. Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone,omitempty"`
  2179. OrderNo string `protobuf:"bytes,4,opt,name=orderNo,proto3" json:"orderNo,omitempty"`
  2180. }
  2181. func (x *TransferClueReq) Reset() {
  2182. *x = TransferClueReq{}
  2183. if protoimpl.UnsafeEnabled {
  2184. mi := &file_biService_proto_msgTypes[36]
  2185. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2186. ms.StoreMessageInfo(mi)
  2187. }
  2188. }
  2189. func (x *TransferClueReq) String() string {
  2190. return protoimpl.X.MessageStringOf(x)
  2191. }
  2192. func (*TransferClueReq) ProtoMessage() {}
  2193. func (x *TransferClueReq) ProtoReflect() protoreflect.Message {
  2194. mi := &file_biService_proto_msgTypes[36]
  2195. if protoimpl.UnsafeEnabled && x != nil {
  2196. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2197. if ms.LoadMessageInfo() == nil {
  2198. ms.StoreMessageInfo(mi)
  2199. }
  2200. return ms
  2201. }
  2202. return mi.MessageOf(x)
  2203. }
  2204. // Deprecated: Use TransferClueReq.ProtoReflect.Descriptor instead.
  2205. func (*TransferClueReq) Descriptor() ([]byte, []int) {
  2206. return file_biService_proto_rawDescGZIP(), []int{36}
  2207. }
  2208. func (x *TransferClueReq) GetPositionId() int64 {
  2209. if x != nil {
  2210. return x.PositionId
  2211. }
  2212. return 0
  2213. }
  2214. func (x *TransferClueReq) GetUserId() string {
  2215. if x != nil {
  2216. return x.UserId
  2217. }
  2218. return ""
  2219. }
  2220. func (x *TransferClueReq) GetPhone() string {
  2221. if x != nil {
  2222. return x.Phone
  2223. }
  2224. return ""
  2225. }
  2226. func (x *TransferClueReq) GetOrderNo() string {
  2227. if x != nil {
  2228. return x.OrderNo
  2229. }
  2230. return ""
  2231. }
  2232. type FindClueInfoReq struct {
  2233. state protoimpl.MessageState
  2234. sizeCache protoimpl.SizeCache
  2235. unknownFields protoimpl.UnknownFields
  2236. UserId string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId,omitempty"`
  2237. PositionId int64 `protobuf:"varint,1,opt,name=positionId,proto3" json:"positionId,omitempty"`
  2238. Phone string `protobuf:"bytes,3,opt,name=phone,proto3" json:"phone,omitempty"`
  2239. }
  2240. func (x *FindClueInfoReq) Reset() {
  2241. *x = FindClueInfoReq{}
  2242. if protoimpl.UnsafeEnabled {
  2243. mi := &file_biService_proto_msgTypes[37]
  2244. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2245. ms.StoreMessageInfo(mi)
  2246. }
  2247. }
  2248. func (x *FindClueInfoReq) String() string {
  2249. return protoimpl.X.MessageStringOf(x)
  2250. }
  2251. func (*FindClueInfoReq) ProtoMessage() {}
  2252. func (x *FindClueInfoReq) ProtoReflect() protoreflect.Message {
  2253. mi := &file_biService_proto_msgTypes[37]
  2254. if protoimpl.UnsafeEnabled && x != nil {
  2255. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2256. if ms.LoadMessageInfo() == nil {
  2257. ms.StoreMessageInfo(mi)
  2258. }
  2259. return ms
  2260. }
  2261. return mi.MessageOf(x)
  2262. }
  2263. // Deprecated: Use FindClueInfoReq.ProtoReflect.Descriptor instead.
  2264. func (*FindClueInfoReq) Descriptor() ([]byte, []int) {
  2265. return file_biService_proto_rawDescGZIP(), []int{37}
  2266. }
  2267. func (x *FindClueInfoReq) GetUserId() string {
  2268. if x != nil {
  2269. return x.UserId
  2270. }
  2271. return ""
  2272. }
  2273. func (x *FindClueInfoReq) GetPositionId() int64 {
  2274. if x != nil {
  2275. return x.PositionId
  2276. }
  2277. return 0
  2278. }
  2279. func (x *FindClueInfoReq) GetPhone() string {
  2280. if x != nil {
  2281. return x.Phone
  2282. }
  2283. return ""
  2284. }
  2285. type ClueInfoReq struct {
  2286. state protoimpl.MessageState
  2287. sizeCache protoimpl.SizeCache
  2288. unknownFields protoimpl.UnknownFields
  2289. SearchTxt string `protobuf:"bytes,1,opt,name=searchTxt,proto3" json:"searchTxt,omitempty"`
  2290. SearchType string `protobuf:"bytes,2,opt,name=searchType,proto3" json:"searchType,omitempty"` // 0: 线索名称,1: 联系方式,2: 联系人
  2291. PageSize int64 `protobuf:"varint,3,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  2292. PageNum int64 `protobuf:"varint,4,opt,name=pageNum,proto3" json:"pageNum,omitempty"`
  2293. }
  2294. func (x *ClueInfoReq) Reset() {
  2295. *x = ClueInfoReq{}
  2296. if protoimpl.UnsafeEnabled {
  2297. mi := &file_biService_proto_msgTypes[38]
  2298. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2299. ms.StoreMessageInfo(mi)
  2300. }
  2301. }
  2302. func (x *ClueInfoReq) String() string {
  2303. return protoimpl.X.MessageStringOf(x)
  2304. }
  2305. func (*ClueInfoReq) ProtoMessage() {}
  2306. func (x *ClueInfoReq) ProtoReflect() protoreflect.Message {
  2307. mi := &file_biService_proto_msgTypes[38]
  2308. if protoimpl.UnsafeEnabled && x != nil {
  2309. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2310. if ms.LoadMessageInfo() == nil {
  2311. ms.StoreMessageInfo(mi)
  2312. }
  2313. return ms
  2314. }
  2315. return mi.MessageOf(x)
  2316. }
  2317. // Deprecated: Use ClueInfoReq.ProtoReflect.Descriptor instead.
  2318. func (*ClueInfoReq) Descriptor() ([]byte, []int) {
  2319. return file_biService_proto_rawDescGZIP(), []int{38}
  2320. }
  2321. func (x *ClueInfoReq) GetSearchTxt() string {
  2322. if x != nil {
  2323. return x.SearchTxt
  2324. }
  2325. return ""
  2326. }
  2327. func (x *ClueInfoReq) GetSearchType() string {
  2328. if x != nil {
  2329. return x.SearchType
  2330. }
  2331. return ""
  2332. }
  2333. func (x *ClueInfoReq) GetPageSize() int64 {
  2334. if x != nil {
  2335. return x.PageSize
  2336. }
  2337. return 0
  2338. }
  2339. func (x *ClueInfoReq) GetPageNum() int64 {
  2340. if x != nil {
  2341. return x.PageNum
  2342. }
  2343. return 0
  2344. }
  2345. type MaterialSaveReq struct {
  2346. state protoimpl.MessageState
  2347. sizeCache protoimpl.SizeCache
  2348. unknownFields protoimpl.UnknownFields
  2349. TaskName string `protobuf:"bytes,1,opt,name=task_name,json=taskName,proto3" json:"task_name,omitempty"`
  2350. TaskDescription string `protobuf:"bytes,2,opt,name=task_description,json=taskDescription,proto3" json:"task_description,omitempty"`
  2351. MaterialContent string `protobuf:"bytes,3,opt,name=material_content,json=materialContent,proto3" json:"material_content,omitempty"`
  2352. QrcodeUrl string `protobuf:"bytes,4,opt,name=qrcode_url,json=qrcodeUrl,proto3" json:"qrcode_url,omitempty"`
  2353. ReceiveUserName string `protobuf:"bytes,5,opt,name=receive_user_name,json=receiveUserName,proto3" json:"receive_user_name,omitempty"`
  2354. ReceiveUserId string `protobuf:"bytes,6,opt,name=receive_user_id,json=receiveUserId,proto3" json:"receive_user_id,omitempty"`
  2355. FileUrl string `protobuf:"bytes,7,opt,name=file_url,json=fileUrl,proto3" json:"file_url,omitempty"`
  2356. EntId int64 `protobuf:"varint,8,opt,name=ent_id,json=entId,proto3" json:"ent_id,omitempty"`
  2357. CreateUser string `protobuf:"bytes,9,opt,name=create_user,json=createUser,proto3" json:"create_user,omitempty"`
  2358. ImgWebpage string `protobuf:"bytes,10,opt,name=img_webpage,json=imgWebpage,proto3" json:"img_webpage,omitempty"`
  2359. }
  2360. func (x *MaterialSaveReq) Reset() {
  2361. *x = MaterialSaveReq{}
  2362. if protoimpl.UnsafeEnabled {
  2363. mi := &file_biService_proto_msgTypes[39]
  2364. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2365. ms.StoreMessageInfo(mi)
  2366. }
  2367. }
  2368. func (x *MaterialSaveReq) String() string {
  2369. return protoimpl.X.MessageStringOf(x)
  2370. }
  2371. func (*MaterialSaveReq) ProtoMessage() {}
  2372. func (x *MaterialSaveReq) ProtoReflect() protoreflect.Message {
  2373. mi := &file_biService_proto_msgTypes[39]
  2374. if protoimpl.UnsafeEnabled && x != nil {
  2375. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2376. if ms.LoadMessageInfo() == nil {
  2377. ms.StoreMessageInfo(mi)
  2378. }
  2379. return ms
  2380. }
  2381. return mi.MessageOf(x)
  2382. }
  2383. // Deprecated: Use MaterialSaveReq.ProtoReflect.Descriptor instead.
  2384. func (*MaterialSaveReq) Descriptor() ([]byte, []int) {
  2385. return file_biService_proto_rawDescGZIP(), []int{39}
  2386. }
  2387. func (x *MaterialSaveReq) GetTaskName() string {
  2388. if x != nil {
  2389. return x.TaskName
  2390. }
  2391. return ""
  2392. }
  2393. func (x *MaterialSaveReq) GetTaskDescription() string {
  2394. if x != nil {
  2395. return x.TaskDescription
  2396. }
  2397. return ""
  2398. }
  2399. func (x *MaterialSaveReq) GetMaterialContent() string {
  2400. if x != nil {
  2401. return x.MaterialContent
  2402. }
  2403. return ""
  2404. }
  2405. func (x *MaterialSaveReq) GetQrcodeUrl() string {
  2406. if x != nil {
  2407. return x.QrcodeUrl
  2408. }
  2409. return ""
  2410. }
  2411. func (x *MaterialSaveReq) GetReceiveUserName() string {
  2412. if x != nil {
  2413. return x.ReceiveUserName
  2414. }
  2415. return ""
  2416. }
  2417. func (x *MaterialSaveReq) GetReceiveUserId() string {
  2418. if x != nil {
  2419. return x.ReceiveUserId
  2420. }
  2421. return ""
  2422. }
  2423. func (x *MaterialSaveReq) GetFileUrl() string {
  2424. if x != nil {
  2425. return x.FileUrl
  2426. }
  2427. return ""
  2428. }
  2429. func (x *MaterialSaveReq) GetEntId() int64 {
  2430. if x != nil {
  2431. return x.EntId
  2432. }
  2433. return 0
  2434. }
  2435. func (x *MaterialSaveReq) GetCreateUser() string {
  2436. if x != nil {
  2437. return x.CreateUser
  2438. }
  2439. return ""
  2440. }
  2441. func (x *MaterialSaveReq) GetImgWebpage() string {
  2442. if x != nil {
  2443. return x.ImgWebpage
  2444. }
  2445. return ""
  2446. }
  2447. type MaterialSaveResp struct {
  2448. state protoimpl.MessageState
  2449. sizeCache protoimpl.SizeCache
  2450. unknownFields protoimpl.UnknownFields
  2451. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  2452. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  2453. MsgId int64 `protobuf:"varint,3,opt,name=msg_id,json=msgId,proto3" json:"msg_id,omitempty"`
  2454. MaterialId int64 `protobuf:"varint,5,opt,name=Material_id,json=MaterialId,proto3" json:"Material_id,omitempty"`
  2455. UserIdArr []string `protobuf:"bytes,4,rep,name=userIdArr,proto3" json:"userIdArr,omitempty"`
  2456. }
  2457. func (x *MaterialSaveResp) Reset() {
  2458. *x = MaterialSaveResp{}
  2459. if protoimpl.UnsafeEnabled {
  2460. mi := &file_biService_proto_msgTypes[40]
  2461. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2462. ms.StoreMessageInfo(mi)
  2463. }
  2464. }
  2465. func (x *MaterialSaveResp) String() string {
  2466. return protoimpl.X.MessageStringOf(x)
  2467. }
  2468. func (*MaterialSaveResp) ProtoMessage() {}
  2469. func (x *MaterialSaveResp) ProtoReflect() protoreflect.Message {
  2470. mi := &file_biService_proto_msgTypes[40]
  2471. if protoimpl.UnsafeEnabled && x != nil {
  2472. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2473. if ms.LoadMessageInfo() == nil {
  2474. ms.StoreMessageInfo(mi)
  2475. }
  2476. return ms
  2477. }
  2478. return mi.MessageOf(x)
  2479. }
  2480. // Deprecated: Use MaterialSaveResp.ProtoReflect.Descriptor instead.
  2481. func (*MaterialSaveResp) Descriptor() ([]byte, []int) {
  2482. return file_biService_proto_rawDescGZIP(), []int{40}
  2483. }
  2484. func (x *MaterialSaveResp) GetErrorCode() int64 {
  2485. if x != nil {
  2486. return x.ErrorCode
  2487. }
  2488. return 0
  2489. }
  2490. func (x *MaterialSaveResp) GetErrorMsg() string {
  2491. if x != nil {
  2492. return x.ErrorMsg
  2493. }
  2494. return ""
  2495. }
  2496. func (x *MaterialSaveResp) GetMsgId() int64 {
  2497. if x != nil {
  2498. return x.MsgId
  2499. }
  2500. return 0
  2501. }
  2502. func (x *MaterialSaveResp) GetMaterialId() int64 {
  2503. if x != nil {
  2504. return x.MaterialId
  2505. }
  2506. return 0
  2507. }
  2508. func (x *MaterialSaveResp) GetUserIdArr() []string {
  2509. if x != nil {
  2510. return x.UserIdArr
  2511. }
  2512. return nil
  2513. }
  2514. type ClueTransferReq struct {
  2515. state protoimpl.MessageState
  2516. sizeCache protoimpl.SizeCache
  2517. unknownFields protoimpl.UnknownFields
  2518. ClueId int64 `protobuf:"varint,1,opt,name=clueId,proto3" json:"clueId,omitempty"`
  2519. ClueName string `protobuf:"bytes,2,opt,name=clueName,proto3" json:"clueName,omitempty"`
  2520. ChangeType int64 `protobuf:"varint,3,opt,name=changeType,proto3" json:"changeType,omitempty"` //1:电销修改名称 2:客成中修改名称
  2521. KcType int64 `protobuf:"varint,4,opt,name=kcType,proto3" json:"kcType,omitempty"` //1:回电销 2:移客成
  2522. MainClueId int64 `protobuf:"varint,5,opt,name=mainClueId,proto3" json:"mainClueId,omitempty"` //原所在企业/个人主账号
  2523. }
  2524. func (x *ClueTransferReq) Reset() {
  2525. *x = ClueTransferReq{}
  2526. if protoimpl.UnsafeEnabled {
  2527. mi := &file_biService_proto_msgTypes[41]
  2528. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2529. ms.StoreMessageInfo(mi)
  2530. }
  2531. }
  2532. func (x *ClueTransferReq) String() string {
  2533. return protoimpl.X.MessageStringOf(x)
  2534. }
  2535. func (*ClueTransferReq) ProtoMessage() {}
  2536. func (x *ClueTransferReq) ProtoReflect() protoreflect.Message {
  2537. mi := &file_biService_proto_msgTypes[41]
  2538. if protoimpl.UnsafeEnabled && x != nil {
  2539. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2540. if ms.LoadMessageInfo() == nil {
  2541. ms.StoreMessageInfo(mi)
  2542. }
  2543. return ms
  2544. }
  2545. return mi.MessageOf(x)
  2546. }
  2547. // Deprecated: Use ClueTransferReq.ProtoReflect.Descriptor instead.
  2548. func (*ClueTransferReq) Descriptor() ([]byte, []int) {
  2549. return file_biService_proto_rawDescGZIP(), []int{41}
  2550. }
  2551. func (x *ClueTransferReq) GetClueId() int64 {
  2552. if x != nil {
  2553. return x.ClueId
  2554. }
  2555. return 0
  2556. }
  2557. func (x *ClueTransferReq) GetClueName() string {
  2558. if x != nil {
  2559. return x.ClueName
  2560. }
  2561. return ""
  2562. }
  2563. func (x *ClueTransferReq) GetChangeType() int64 {
  2564. if x != nil {
  2565. return x.ChangeType
  2566. }
  2567. return 0
  2568. }
  2569. func (x *ClueTransferReq) GetKcType() int64 {
  2570. if x != nil {
  2571. return x.KcType
  2572. }
  2573. return 0
  2574. }
  2575. func (x *ClueTransferReq) GetMainClueId() int64 {
  2576. if x != nil {
  2577. return x.MainClueId
  2578. }
  2579. return 0
  2580. }
  2581. var File_biService_proto protoreflect.FileDescriptor
  2582. var file_biService_proto_rawDesc = []byte{
  2583. 0x0a, 0x0f, 0x62, 0x69, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2584. 0x6f, 0x22, 0x64, 0x0a, 0x0e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74,
  2585. 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20,
  2586. 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x6e,
  2587. 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  2588. 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74,
  2589. 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e,
  2590. 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x6f, 0x0a, 0x0f, 0x4d, 0x79, 0x44, 0x61, 0x74,
  2591. 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72,
  2592. 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  2593. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72,
  2594. 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72,
  2595. 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03,
  2596. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73,
  2597. 0x65, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xf3, 0x01, 0x0a, 0x0b, 0x4d, 0x79, 0x44,
  2598. 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x2c, 0x0a, 0x12, 0x63, 0x6f, 0x6c, 0x6c,
  2599. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01,
  2600. 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x66,
  2601. 0x6f, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77,
  2602. 0x5f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02,
  2603. 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x50, 0x72, 0x6f, 0x6a,
  2604. 0x65, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x6f, 0x6c, 0x6c,
  2605. 0x65, 0x63, 0x74, 0x5f, 0x64, 0x6f, 0x63, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20,
  2606. 0x01, 0x28, 0x03, 0x52, 0x0f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x44, 0x6f, 0x63, 0x43,
  2607. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x5f, 0x63, 0x75,
  2608. 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01,
  2609. 0x28, 0x03, 0x52, 0x12, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  2610. 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x5f,
  2611. 0x6e, 0x7a, 0x6a, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
  2612. 0x0d, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x4e, 0x7a, 0x6a, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xb5,
  2613. 0x02, 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71,
  2614. 0x12, 0x17, 0x0a, 0x07, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2615. 0x09, 0x52, 0x06, 0x69, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75,
  2616. 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63,
  2617. 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64,
  2618. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  2619. 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74,
  2620. 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74,
  2621. 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75,
  2622. 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x61, 0x63, 0x63,
  2623. 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e,
  2624. 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f,
  2625. 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65,
  2626. 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,
  2627. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  2628. 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14,
  2629. 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65,
  2630. 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e,
  2631. 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73,
  2632. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x6d, 0x0a, 0x0e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f,
  2633. 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f,
  2634. 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72,
  2635. 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  2636. 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f,
  2637. 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01,
  2638. 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
  2639. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3a, 0x0a, 0x0a, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a,
  2640. 0x65, 0x63, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20,
  2641. 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x63,
  2642. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e,
  2643. 0x74, 0x22, 0x5f, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x52, 0x65,
  2644. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  2645. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  2646. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  2647. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12,
  2648. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61,
  2649. 0x74, 0x61, 0x22, 0x43, 0x0a, 0x0b, 0x44, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65,
  2650. 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18,
  2651. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  2652. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  2653. 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x40, 0x0a, 0x07, 0x43, 0x61, 0x6c, 0x6c, 0x52,
  2654. 0x65, 0x71, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,
  2655. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
  2656. 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01,
  2657. 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x58, 0x0a, 0x06, 0x42, 0x69, 0x52,
  2658. 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
  2659. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
  2660. 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
  2661. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
  2662. 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64,
  2663. 0x61, 0x74, 0x61, 0x22, 0x59, 0x0a, 0x07, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1d,
  2664. 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
  2665. 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a,
  2666. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2667. 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61,
  2668. 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xb1,
  2669. 0x01, 0x0a, 0x11, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75,
  2670. 0x65, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75, 0x6e,
  2671. 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75,
  2672. 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74,
  2673. 0x18, 0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69,
  2674. 0x73, 0x74, 0x12, 0x26, 0x0a, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  2675. 0x0b, 0x32, 0x10, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x44, 0x61,
  2676. 0x74, 0x61, 0x73, 0x52, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f,
  2677. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  2678. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73,
  2679. 0x54, 0x61, 0x73, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x69, 0x73, 0x54, 0x61,
  2680. 0x73, 0x6b, 0x22, 0xbd, 0x01, 0x0a, 0x0f, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
  2681. 0x65, 0x44, 0x61, 0x74, 0x61, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
  2682. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f,
  2683. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  2684. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x6f,
  2685. 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  2686. 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x6e,
  2687. 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04,
  2688. 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x75, 0x6e, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65,
  2689. 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69,
  2690. 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  2691. 0x52, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75,
  2692. 0x6e, 0x74, 0x22, 0x43, 0x0a, 0x0d, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  2693. 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x63, 0x62, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28,
  2694. 0x09, 0x52, 0x04, 0x70, 0x63, 0x62, 0x68, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74,
  2695. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73,
  2696. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x6d, 0x0a, 0x0e, 0x43, 0x6c, 0x75, 0x65, 0x49,
  2697. 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72,
  2698. 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65,
  2699. 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f,
  2700. 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72,
  2701. 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20,
  2702. 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  2703. 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3c, 0x0a, 0x0a, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d,
  2704. 0x70, 0x6f, 0x72, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01,
  2705. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06,
  2706. 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65,
  2707. 0x73, 0x75, 0x6c, 0x74, 0x22, 0xa6, 0x03, 0x0a, 0x0a, 0x43, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x64,
  2708. 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01,
  2709. 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65,
  2710. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
  2711. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18,
  2712. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x1c, 0x0a,
  2713. 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x39, 0x39, 0x39, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2714. 0x52, 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x39, 0x39, 0x39, 0x12, 0x14, 0x0a, 0x05, 0x6f,
  2715. 0x77, 0x6e, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x77, 0x6e, 0x65,
  2716. 0x72, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x70, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  2717. 0x52, 0x05, 0x65, 0x6d, 0x70, 0x4e, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61,
  2718. 0x6e, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e,
  2719. 0x79, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x73, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x6d, 0x61, 0x6b,
  2720. 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x69, 0x73, 0x50, 0x6f, 0x6c, 0x69,
  2721. 0x63, 0x79, 0x6d, 0x61, 0x6b, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x62, 0x65, 0x6c, 0x6f, 0x6e,
  2722. 0x67, 0x54, 0x6f, 0x49, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28,
  2723. 0x09, 0x52, 0x10, 0x62, 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x49, 0x6e, 0x64, 0x75, 0x73,
  2724. 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6a, 0x6f, 0x62, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  2725. 0x52, 0x03, 0x6a, 0x6f, 0x62, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  2726. 0x72, 0x4e, 0x65, 0x65, 0x64, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x75,
  2727. 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x65, 0x64, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x62,
  2728. 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62,
  2729. 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x77, 0x61, 0x6e, 0x74, 0x47,
  2730. 0x6f, 0x6f, 0x64, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x77, 0x61, 0x6e, 0x74,
  2731. 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  2732. 0x72, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x63,
  2733. 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x22, 0x3e, 0x0a,
  2734. 0x0c, 0x53, 0x71, 0x6c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a,
  2735. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x02, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a,
  2736. 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e,
  2737. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x2f, 0x0a,
  2738. 0x09, 0x4d, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x69,
  2739. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x62, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03,
  2740. 0x73, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x69, 0x64, 0x22, 0x31,
  2741. 0x0a, 0x05, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2742. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x12, 0x0a,
  2743. 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70,
  2744. 0x65, 0x22, 0x59, 0x0a, 0x09, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12,
  2745. 0x0a, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x61,
  2746. 0x69, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20,
  2747. 0x03, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x1e, 0x0a, 0x0a,
  2748. 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  2749. 0x52, 0x0a, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x36, 0x0a, 0x0a,
  2750. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x65,
  2751. 0x77, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x65, 0x77, 0x49, 0x64,
  2752. 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
  2753. 0x74, 0x79, 0x70, 0x65, 0x22, 0x2e, 0x0a, 0x0a, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x52,
  2754. 0x65, 0x71, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x4e, 0x61, 0x6d,
  2755. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79,
  2756. 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x7f, 0x0a, 0x0b, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x52,
  2757. 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20,
  2758. 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x69,
  2759. 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
  2760. 0x0a, 0x69, 0x73, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x12, 0x18, 0x0a, 0x07, 0x69,
  2761. 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x69, 0x73,
  2762. 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1e, 0x0a, 0x0a, 0x69, 0x73, 0x43, 0x6f, 0x6d, 0x6d, 0x65,
  2763. 0x72, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x69, 0x73, 0x43, 0x6f, 0x6d,
  2764. 0x6d, 0x65, 0x72, 0x63, 0x65, 0x22, 0xe3, 0x01, 0x0a, 0x15, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69,
  2765. 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x12,
  2766. 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20,
  2767. 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12,
  2768. 0x1a, 0x0a, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2769. 0x03, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63,
  2770. 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  2771. 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2a, 0x0a, 0x05, 0x64,
  2772. 0x61, 0x74, 0x61, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x44, 0x69, 0x73,
  2773. 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x73,
  2774. 0x52, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x49, 0x73, 0x54, 0x61, 0x73,
  2775. 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x49, 0x73, 0x54, 0x61, 0x73, 0x6b, 0x12,
  2776. 0x2a, 0x0a, 0x10, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
  2777. 0x6e, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x55, 0x70, 0x64, 0x61, 0x74,
  2778. 0x65, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x22, 0x61, 0x0a, 0x13, 0x44,
  2779. 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f,
  2780. 0x77, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
  2781. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  2782. 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
  2783. 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x64, 0x69,
  2784. 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x80,
  2785. 0x02, 0x0a, 0x14, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75,
  2786. 0x65, 0x53, 0x68, 0x6f, 0x77, 0x73, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74,
  2787. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73,
  2788. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x61,
  2789. 0x6e, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x63,
  2790. 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x63,
  2791. 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  2792. 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x69, 0x6e,
  2793. 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6d, 0x69, 0x6e,
  2794. 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79,
  2795. 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x63, 0x6f,
  2796. 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x65,
  2797. 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01,
  2798. 0x28, 0x03, 0x52, 0x0d, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x75, 0x6e,
  2799. 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  2800. 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x46, 0x75, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75,
  2801. 0x73, 0x22, 0x7f, 0x0a, 0x16, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43,
  2802. 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65,
  2803. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  2804. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72,
  2805. 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65,
  2806. 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x29, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
  2807. 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75,
  2808. 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x73, 0x73, 0x52, 0x04, 0x64, 0x61,
  2809. 0x74, 0x61, 0x22, 0xa9, 0x01, 0x0a, 0x0d, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x42, 0x79, 0x44,
  2810. 0x62, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20,
  2811. 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69,
  2812. 0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65,
  2813. 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  2814. 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x61,
  2815. 0x69, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x61, 0x69, 0x6c, 0x73,
  2816. 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
  2817. 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x05,
  2818. 0x64, 0x61, 0x74, 0x61, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0a, 0x2e, 0x46, 0x69,
  2819. 0x6c, 0x65, 0x73, 0x44, 0x61, 0x74, 0x61, 0x52, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x22, 0x3b,
  2820. 0x0a, 0x09, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x73,
  2821. 0x68, 0x65, 0x65, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  2822. 0x73, 0x68, 0x65, 0x65, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x71, 0x6c,
  2823. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x71, 0x6c, 0x22, 0xef, 0x01, 0x0a, 0x09,
  2824. 0x55, 0x70, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70,
  2825. 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12,
  2826. 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  2827. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74,
  2828. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73,
  2829. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73,
  2830. 0x65, 0x72, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55,
  2831. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x05,
  2832. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x73,
  2833. 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x79, 0x70,
  2834. 0x65, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0c, 0x52,
  2835. 0x04, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d,
  2836. 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d,
  2837. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x09, 0x20,
  2838. 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22, 0xdc, 0x02,
  2839. 0x0a, 0x0d, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x12,
  2840. 0x20, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x01,
  2841. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x65, 0x54, 0x79, 0x70,
  2842. 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x65, 0x5f, 0x74, 0x69, 0x6d,
  2843. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x65,
  2844. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18,
  2845. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x27,
  2846. 0x0a, 0x0f, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70,
  2847. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61,
  2848. 0x6e, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75,
  2849. 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  2850. 0x1b, 0x0a, 0x09, 0x4f, 0x76, 0x65, 0x72, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01,
  2851. 0x28, 0x09, 0x52, 0x08, 0x4f, 0x76, 0x65, 0x72, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06,
  2852. 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65,
  2853. 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  2854. 0x49, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69,
  2855. 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x44, 0x65, 0x70, 0x74, 0x49, 0x64, 0x18, 0x09,
  2856. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x44, 0x65, 0x70, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b,
  2857. 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28,
  2858. 0x09, 0x52, 0x0b, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
  2859. 0x0a, 0x09, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x44, 0x61, 0x74, 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28,
  2860. 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x44, 0x61, 0x74, 0x61, 0x22, 0x6d, 0x0a, 0x0e,
  2861. 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d,
  2862. 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
  2863. 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a,
  2864. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2865. 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61,
  2866. 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x70,
  2867. 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x30, 0x0a, 0x0a, 0x41,
  2868. 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x41, 0x63, 0x63,
  2869. 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x4e, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2870. 0x0c, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x4e, 0x6f, 0x22, 0x53, 0x0a,
  2871. 0x0b, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05,
  2872. 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74,
  2873. 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x02, 0x20,
  2874. 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x14, 0x0a, 0x05,
  2875. 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6d, 0x61, 0x69,
  2876. 0x6c, 0x73, 0x22, 0x73, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x6c, 0x65,
  2877. 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  2878. 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73,
  2879. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70,
  2880. 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65,
  2881. 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
  2882. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2883. 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x79, 0x0a, 0x0f, 0x54, 0x72, 0x61, 0x6e, 0x73,
  2884. 0x66, 0x65, 0x72, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f,
  2885. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  2886. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73,
  2887. 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
  2888. 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  2889. 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6f, 0x72, 0x64, 0x65,
  2890. 0x72, 0x4e, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x72, 0x64, 0x65, 0x72,
  2891. 0x4e, 0x6f, 0x22, 0x5f, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6e,
  2892. 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2893. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  2894. 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2895. 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a,
  2896. 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68,
  2897. 0x6f, 0x6e, 0x65, 0x22, 0x81, 0x01, 0x0a, 0x0b, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  2898. 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x78, 0x74,
  2899. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x78,
  2900. 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18,
  2901. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x79, 0x70,
  2902. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20,
  2903. 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x18, 0x0a,
  2904. 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
  2905. 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x22, 0xeb, 0x02, 0x0a, 0x0f, 0x4d, 0x61, 0x74, 0x65,
  2906. 0x72, 0x69, 0x61, 0x6c, 0x53, 0x61, 0x76, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1b, 0x0a, 0x09, 0x74,
  2907. 0x61, 0x73, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  2908. 0x74, 0x61, 0x73, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x74, 0x61, 0x73, 0x6b,
  2909. 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
  2910. 0x28, 0x09, 0x52, 0x0f, 0x74, 0x61, 0x73, 0x6b, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
  2911. 0x69, 0x6f, 0x6e, 0x12, 0x29, 0x0a, 0x10, 0x6d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f,
  2912. 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x6d,
  2913. 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1d,
  2914. 0x0a, 0x0a, 0x71, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x04, 0x20, 0x01,
  2915. 0x28, 0x09, 0x52, 0x09, 0x71, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x2a, 0x0a,
  2916. 0x11, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61,
  2917. 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
  2918. 0x65, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x72, 0x65, 0x63,
  2919. 0x65, 0x69, 0x76, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01,
  2920. 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49,
  2921. 0x64, 0x12, 0x19, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x07, 0x20,
  2922. 0x01, 0x28, 0x09, 0x52, 0x07, 0x66, 0x69, 0x6c, 0x65, 0x55, 0x72, 0x6c, 0x12, 0x15, 0x0a, 0x06,
  2923. 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e,
  2924. 0x74, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x75, 0x73,
  2925. 0x65, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  2926. 0x55, 0x73, 0x65, 0x72, 0x12, 0x1f, 0x0a, 0x0b, 0x69, 0x6d, 0x67, 0x5f, 0x77, 0x65, 0x62, 0x70,
  2927. 0x61, 0x67, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x69, 0x6d, 0x67, 0x57, 0x65,
  2928. 0x62, 0x70, 0x61, 0x67, 0x65, 0x22, 0xa4, 0x01, 0x0a, 0x10, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69,
  2929. 0x61, 0x6c, 0x53, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72,
  2930. 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  2931. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72,
  2932. 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72,
  2933. 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x15, 0x0a, 0x06, 0x6d, 0x73, 0x67, 0x5f, 0x69, 0x64,
  2934. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x73, 0x67, 0x49, 0x64, 0x12, 0x1f, 0x0a,
  2935. 0x0b, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01,
  2936. 0x28, 0x03, 0x52, 0x0a, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x49, 0x64, 0x12, 0x1c,
  2937. 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x41, 0x72, 0x72, 0x18, 0x04, 0x20, 0x03, 0x28,
  2938. 0x09, 0x52, 0x09, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x41, 0x72, 0x72, 0x22, 0x9d, 0x01, 0x0a,
  2939. 0x0f, 0x43, 0x6c, 0x75, 0x65, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x52, 0x65, 0x71,
  2940. 0x12, 0x16, 0x0a, 0x06, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  2941. 0x52, 0x06, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6c, 0x75, 0x65,
  2942. 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x75, 0x65,
  2943. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79,
  2944. 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
  2945. 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6b, 0x63, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04,
  2946. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6b, 0x63, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
  2947. 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  2948. 0x52, 0x0a, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x32, 0xb4, 0x09, 0x0a,
  2949. 0x09, 0x42, 0x69, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x30, 0x0a, 0x0b, 0x6d, 0x79,
  2950. 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x0f, 0x2e, 0x4d, 0x79, 0x44, 0x61,
  2951. 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x4d, 0x79, 0x44,
  2952. 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0a,
  2953. 0x61, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x0e, 0x2e, 0x41, 0x64, 0x64,
  2954. 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64,
  2955. 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x09, 0x67,
  2956. 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12, 0x0e, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72,
  2957. 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e,
  2958. 0x66, 0x6f, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x29, 0x0a, 0x08, 0x64, 0x72, 0x61, 0x77,
  2959. 0x43, 0x6c, 0x75, 0x65, 0x12, 0x0c, 0x2e, 0x44, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x52,
  2960. 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
  2961. 0x65, 0x73, 0x70, 0x12, 0x19, 0x0a, 0x04, 0x43, 0x61, 0x6c, 0x6c, 0x12, 0x08, 0x2e, 0x43, 0x61,
  2962. 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x07, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x73, 0x70, 0x12, 0x35,
  2963. 0x0a, 0x0e, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65,
  2964. 0x12, 0x12, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75,
  2965. 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  2966. 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70,
  2967. 0x6f, 0x72, 0x74, 0x12, 0x0e, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  2968. 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  2969. 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x07, 0x63, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x64, 0x12,
  2970. 0x0b, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41,
  2971. 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2f, 0x0a,
  2972. 0x0c, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x54, 0x74, 0x12, 0x0e, 0x2e,
  2973. 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e,
  2974. 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27,
  2975. 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x46, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x12, 0x08, 0x2e, 0x43,
  2976. 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70,
  2977. 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a, 0x09, 0x73, 0x71, 0x6c, 0x4d, 0x61,
  2978. 0x6e, 0x61, 0x67, 0x65, 0x12, 0x0d, 0x2e, 0x53, 0x71, 0x6c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2979. 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a,
  2980. 0x06, 0x6d, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0a, 0x2e, 0x4d, 0x79, 0x49, 0x6e, 0x66, 0x6f,
  2981. 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x25, 0x0a,
  2982. 0x0d, 0x61, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x0a,
  2983. 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52,
  2984. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x10, 0x61, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x6a, 0x65,
  2985. 0x63, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x0a, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72,
  2986. 0x74, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x24,
  2987. 0x0a, 0x0b, 0x69, 0x6e, 0x66, 0x6f, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x12, 0x0b, 0x2e,
  2988. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52,
  2989. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2b, 0x0a, 0x0e, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x61,
  2990. 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0b, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79,
  2991. 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x73,
  2992. 0x70, 0x12, 0x45, 0x0a, 0x12, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43,
  2993. 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x16, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69,
  2994. 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x1a,
  2995. 0x17, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65,
  2996. 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64,
  2997. 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x0e, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x42, 0x79, 0x44,
  2998. 0x62, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e,
  2999. 0x0a, 0x06, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x0a, 0x2e, 0x55, 0x70, 0x46, 0x69, 0x6c,
  3000. 0x65, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28,
  3001. 0x0a, 0x0e, 0x73, 0x65, 0x6e, 0x64, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x4d, 0x61, 0x69, 0x6c,
  3002. 0x12, 0x0c, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x08,
  3003. 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x30, 0x0a, 0x0d, 0x61, 0x64, 0x64, 0x41,
  3004. 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x2e, 0x41, 0x63, 0x63, 0x65,
  3005. 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x63, 0x63, 0x65,
  3006. 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x11, 0x63, 0x72,
  3007. 0x65, 0x61, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x42, 0x79, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12,
  3008. 0x0e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x75, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a,
  3009. 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x31, 0x0a, 0x13, 0x74, 0x72, 0x61,
  3010. 0x6e, 0x73, 0x66, 0x65, 0x72, 0x43, 0x6c, 0x75, 0x65, 0x42, 0x79, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  3011. 0x12, 0x10, 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x43, 0x6c, 0x75, 0x65, 0x52,
  3012. 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2a, 0x0a, 0x0c,
  3013. 0x66, 0x69, 0x6e, 0x64, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x10, 0x2e, 0x46,
  3014. 0x69, 0x6e, 0x64, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x08,
  3015. 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x29, 0x0a, 0x0f, 0x67, 0x65, 0x74, 0x43,
  3016. 0x6c, 0x75, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0c, 0x2e, 0x43, 0x6c,
  3017. 0x75, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65,
  3018. 0x70, 0x6c, 0x79, 0x12, 0x33, 0x0a, 0x0c, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x53,
  3019. 0x61, 0x76, 0x65, 0x12, 0x10, 0x2e, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x53, 0x61,
  3020. 0x76, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x4d, 0x61, 0x74, 0x65, 0x72, 0x69, 0x61, 0x6c,
  3021. 0x53, 0x61, 0x76, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x29, 0x0a, 0x0c, 0x63, 0x6c, 0x75, 0x65,
  3022. 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x12, 0x10, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x54,
  3023. 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x07, 0x2e, 0x42, 0x69, 0x52,
  3024. 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f,
  3025. 0x74, 0x6f, 0x33,
  3026. }
  3027. var (
  3028. file_biService_proto_rawDescOnce sync.Once
  3029. file_biService_proto_rawDescData = file_biService_proto_rawDesc
  3030. )
  3031. func file_biService_proto_rawDescGZIP() []byte {
  3032. file_biService_proto_rawDescOnce.Do(func() {
  3033. file_biService_proto_rawDescData = protoimpl.X.CompressGZIP(file_biService_proto_rawDescData)
  3034. })
  3035. return file_biService_proto_rawDescData
  3036. }
  3037. var file_biService_proto_msgTypes = make([]protoimpl.MessageInfo, 42)
  3038. var file_biService_proto_goTypes = []interface{}{
  3039. (*MyDataAssetReq)(nil), // 0: MyDataAssetReq
  3040. (*MyDataAssetResp)(nil), // 1: MyDataAssetResp
  3041. (*MyDataAsset)(nil), // 2: MyDataAsset
  3042. (*AddProjectReq)(nil), // 3: AddProjectReq
  3043. (*AddProjectResp)(nil), // 4: AddProjectResp
  3044. (*AddProject)(nil), // 5: AddProject
  3045. (*GetInfoIdResp)(nil), // 6: GetInfoIdResp
  3046. (*DrawClueReq)(nil), // 7: DrawClueReq
  3047. (*CallReq)(nil), // 8: CallReq
  3048. (*BiResp)(nil), // 9: BiResp
  3049. (*BiReply)(nil), // 10: BiReply
  3050. (*DistributeClueReq)(nil), // 11: DistributeClueReq
  3051. (*DistributeDatas)(nil), // 12: DistributeDatas
  3052. (*ClueImportReq)(nil), // 13: ClueImportReq
  3053. (*ClueImportResp)(nil), // 14: ClueImportResp
  3054. (*ClueImport)(nil), // 15: ClueImport
  3055. (*ClueAddReq)(nil), // 16: ClueAddReq
  3056. (*SqlManageReq)(nil), // 17: SqlManageReq
  3057. (*MyInfoReq)(nil), // 18: MyInfoReq
  3058. (*Param)(nil), // 19: Param
  3059. (*ExportReq)(nil), // 20: ExportReq
  3060. (*OperateReq)(nil), // 21: OperateReq
  3061. (*CompanyReq)(nil), // 22: CompanyReq
  3062. (*CompanyResp)(nil), // 23: CompanyResp
  3063. (*DistributeClueShowReq)(nil), // 24: DistributeClueShowReq
  3064. (*DistributeClueShows)(nil), // 25: DistributeClueShows
  3065. (*DistributeClueShowss)(nil), // 26: DistributeClueShowss
  3066. (*DistributeClueShowResp)(nil), // 27: DistributeClueShowResp
  3067. (*ExportByDbReq)(nil), // 28: ExportByDbReq
  3068. (*FilesData)(nil), // 29: FilesData
  3069. (*UpFileReq)(nil), // 30: UpFileReq
  3070. (*AcceptanceReq)(nil), // 31: AcceptanceReq
  3071. (*AcceptanceResp)(nil), // 32: AcceptanceResp
  3072. (*Acceptance)(nil), // 33: Acceptance
  3073. (*SendMailReq)(nil), // 34: SendMailReq
  3074. (*CreateCuleReq)(nil), // 35: CreateCuleReq
  3075. (*TransferClueReq)(nil), // 36: TransferClueReq
  3076. (*FindClueInfoReq)(nil), // 37: FindClueInfoReq
  3077. (*ClueInfoReq)(nil), // 38: ClueInfoReq
  3078. (*MaterialSaveReq)(nil), // 39: MaterialSaveReq
  3079. (*MaterialSaveResp)(nil), // 40: MaterialSaveResp
  3080. (*ClueTransferReq)(nil), // 41: ClueTransferReq
  3081. }
  3082. var file_biService_proto_depIdxs = []int32{
  3083. 2, // 0: MyDataAssetResp.data:type_name -> MyDataAsset
  3084. 5, // 1: AddProjectResp.data:type_name -> AddProject
  3085. 12, // 2: DistributeClueReq.datas:type_name -> DistributeDatas
  3086. 15, // 3: ClueImportResp.data:type_name -> ClueImport
  3087. 19, // 4: SqlManageReq.params:type_name -> Param
  3088. 25, // 5: DistributeClueShowReq.datas:type_name -> DistributeClueShows
  3089. 26, // 6: DistributeClueShowResp.data:type_name -> DistributeClueShowss
  3090. 29, // 7: ExportByDbReq.datas:type_name -> FilesData
  3091. 33, // 8: AcceptanceResp.data:type_name -> Acceptance
  3092. 0, // 9: BiService.myDataAsset:input_type -> MyDataAssetReq
  3093. 3, // 10: BiService.addProject:input_type -> AddProjectReq
  3094. 3, // 11: BiService.getInfoId:input_type -> AddProjectReq
  3095. 7, // 12: BiService.drawClue:input_type -> DrawClueReq
  3096. 8, // 13: BiService.Call:input_type -> CallReq
  3097. 11, // 14: BiService.distributeClue:input_type -> DistributeClueReq
  3098. 13, // 15: BiService.clueImport:input_type -> ClueImportReq
  3099. 16, // 16: BiService.clueAdd:input_type -> ClueAddReq
  3100. 13, // 17: BiService.clueImportTt:input_type -> ClueImportReq
  3101. 8, // 18: BiService.autoFollow:input_type -> CallReq
  3102. 17, // 19: BiService.sqlManage:input_type -> SqlManageReq
  3103. 18, // 20: BiService.myInfo:input_type -> MyInfoReq
  3104. 20, // 21: BiService.allInfoExport:input_type -> ExportReq
  3105. 20, // 22: BiService.allProjectExport:input_type -> ExportReq
  3106. 21, // 23: BiService.infoOperate:input_type -> OperateReq
  3107. 22, // 24: BiService.getCompanyType:input_type -> CompanyReq
  3108. 24, // 25: BiService.distributeClueShow:input_type -> DistributeClueShowReq
  3109. 28, // 26: BiService.sendMail:input_type -> ExportByDbReq
  3110. 30, // 27: BiService.upFile:input_type -> UpFileReq
  3111. 34, // 28: BiService.sendCommonMail:input_type -> SendMailReq
  3112. 31, // 29: BiService.addAcceptance:input_type -> AcceptanceReq
  3113. 35, // 30: BiService.createClueByPhone:input_type -> CreateCuleReq
  3114. 36, // 31: BiService.transferClueByPhone:input_type -> TransferClueReq
  3115. 37, // 32: BiService.findClueInfo:input_type -> FindClueInfoReq
  3116. 38, // 33: BiService.getClueInfoList:input_type -> ClueInfoReq
  3117. 39, // 34: BiService.MaterialSave:input_type -> MaterialSaveReq
  3118. 41, // 35: BiService.clueTransfer:input_type -> ClueTransferReq
  3119. 1, // 36: BiService.myDataAsset:output_type -> MyDataAssetResp
  3120. 4, // 37: BiService.addProject:output_type -> AddProjectResp
  3121. 6, // 38: BiService.getInfoId:output_type -> GetInfoIdResp
  3122. 4, // 39: BiService.drawClue:output_type -> AddProjectResp
  3123. 9, // 40: BiService.Call:output_type -> BiResp
  3124. 4, // 41: BiService.distributeClue:output_type -> AddProjectResp
  3125. 14, // 42: BiService.clueImport:output_type -> ClueImportResp
  3126. 4, // 43: BiService.clueAdd:output_type -> AddProjectResp
  3127. 14, // 44: BiService.clueImportTt:output_type -> ClueImportResp
  3128. 14, // 45: BiService.autoFollow:output_type -> ClueImportResp
  3129. 10, // 46: BiService.sqlManage:output_type -> BiReply
  3130. 10, // 47: BiService.myInfo:output_type -> BiReply
  3131. 10, // 48: BiService.allInfoExport:output_type -> BiReply
  3132. 10, // 49: BiService.allProjectExport:output_type -> BiReply
  3133. 10, // 50: BiService.infoOperate:output_type -> BiReply
  3134. 23, // 51: BiService.getCompanyType:output_type -> CompanyResp
  3135. 27, // 52: BiService.distributeClueShow:output_type -> DistributeClueShowResp
  3136. 10, // 53: BiService.sendMail:output_type -> BiReply
  3137. 10, // 54: BiService.upFile:output_type -> BiReply
  3138. 10, // 55: BiService.sendCommonMail:output_type -> BiReply
  3139. 32, // 56: BiService.addAcceptance:output_type -> AcceptanceResp
  3140. 10, // 57: BiService.createClueByPhone:output_type -> BiReply
  3141. 10, // 58: BiService.transferClueByPhone:output_type -> BiReply
  3142. 10, // 59: BiService.findClueInfo:output_type -> BiReply
  3143. 10, // 60: BiService.getClueInfoList:output_type -> BiReply
  3144. 40, // 61: BiService.MaterialSave:output_type -> MaterialSaveResp
  3145. 9, // 62: BiService.clueTransfer:output_type -> BiResp
  3146. 36, // [36:63] is the sub-list for method output_type
  3147. 9, // [9:36] is the sub-list for method input_type
  3148. 9, // [9:9] is the sub-list for extension type_name
  3149. 9, // [9:9] is the sub-list for extension extendee
  3150. 0, // [0:9] is the sub-list for field type_name
  3151. }
  3152. func init() { file_biService_proto_init() }
  3153. func file_biService_proto_init() {
  3154. if File_biService_proto != nil {
  3155. return
  3156. }
  3157. if !protoimpl.UnsafeEnabled {
  3158. file_biService_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3159. switch v := v.(*MyDataAssetReq); i {
  3160. case 0:
  3161. return &v.state
  3162. case 1:
  3163. return &v.sizeCache
  3164. case 2:
  3165. return &v.unknownFields
  3166. default:
  3167. return nil
  3168. }
  3169. }
  3170. file_biService_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3171. switch v := v.(*MyDataAssetResp); i {
  3172. case 0:
  3173. return &v.state
  3174. case 1:
  3175. return &v.sizeCache
  3176. case 2:
  3177. return &v.unknownFields
  3178. default:
  3179. return nil
  3180. }
  3181. }
  3182. file_biService_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3183. switch v := v.(*MyDataAsset); i {
  3184. case 0:
  3185. return &v.state
  3186. case 1:
  3187. return &v.sizeCache
  3188. case 2:
  3189. return &v.unknownFields
  3190. default:
  3191. return nil
  3192. }
  3193. }
  3194. file_biService_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3195. switch v := v.(*AddProjectReq); i {
  3196. case 0:
  3197. return &v.state
  3198. case 1:
  3199. return &v.sizeCache
  3200. case 2:
  3201. return &v.unknownFields
  3202. default:
  3203. return nil
  3204. }
  3205. }
  3206. file_biService_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3207. switch v := v.(*AddProjectResp); i {
  3208. case 0:
  3209. return &v.state
  3210. case 1:
  3211. return &v.sizeCache
  3212. case 2:
  3213. return &v.unknownFields
  3214. default:
  3215. return nil
  3216. }
  3217. }
  3218. file_biService_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3219. switch v := v.(*AddProject); i {
  3220. case 0:
  3221. return &v.state
  3222. case 1:
  3223. return &v.sizeCache
  3224. case 2:
  3225. return &v.unknownFields
  3226. default:
  3227. return nil
  3228. }
  3229. }
  3230. file_biService_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3231. switch v := v.(*GetInfoIdResp); i {
  3232. case 0:
  3233. return &v.state
  3234. case 1:
  3235. return &v.sizeCache
  3236. case 2:
  3237. return &v.unknownFields
  3238. default:
  3239. return nil
  3240. }
  3241. }
  3242. file_biService_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3243. switch v := v.(*DrawClueReq); i {
  3244. case 0:
  3245. return &v.state
  3246. case 1:
  3247. return &v.sizeCache
  3248. case 2:
  3249. return &v.unknownFields
  3250. default:
  3251. return nil
  3252. }
  3253. }
  3254. file_biService_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3255. switch v := v.(*CallReq); i {
  3256. case 0:
  3257. return &v.state
  3258. case 1:
  3259. return &v.sizeCache
  3260. case 2:
  3261. return &v.unknownFields
  3262. default:
  3263. return nil
  3264. }
  3265. }
  3266. file_biService_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3267. switch v := v.(*BiResp); i {
  3268. case 0:
  3269. return &v.state
  3270. case 1:
  3271. return &v.sizeCache
  3272. case 2:
  3273. return &v.unknownFields
  3274. default:
  3275. return nil
  3276. }
  3277. }
  3278. file_biService_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3279. switch v := v.(*BiReply); i {
  3280. case 0:
  3281. return &v.state
  3282. case 1:
  3283. return &v.sizeCache
  3284. case 2:
  3285. return &v.unknownFields
  3286. default:
  3287. return nil
  3288. }
  3289. }
  3290. file_biService_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3291. switch v := v.(*DistributeClueReq); i {
  3292. case 0:
  3293. return &v.state
  3294. case 1:
  3295. return &v.sizeCache
  3296. case 2:
  3297. return &v.unknownFields
  3298. default:
  3299. return nil
  3300. }
  3301. }
  3302. file_biService_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3303. switch v := v.(*DistributeDatas); i {
  3304. case 0:
  3305. return &v.state
  3306. case 1:
  3307. return &v.sizeCache
  3308. case 2:
  3309. return &v.unknownFields
  3310. default:
  3311. return nil
  3312. }
  3313. }
  3314. file_biService_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3315. switch v := v.(*ClueImportReq); i {
  3316. case 0:
  3317. return &v.state
  3318. case 1:
  3319. return &v.sizeCache
  3320. case 2:
  3321. return &v.unknownFields
  3322. default:
  3323. return nil
  3324. }
  3325. }
  3326. file_biService_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3327. switch v := v.(*ClueImportResp); i {
  3328. case 0:
  3329. return &v.state
  3330. case 1:
  3331. return &v.sizeCache
  3332. case 2:
  3333. return &v.unknownFields
  3334. default:
  3335. return nil
  3336. }
  3337. }
  3338. file_biService_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3339. switch v := v.(*ClueImport); i {
  3340. case 0:
  3341. return &v.state
  3342. case 1:
  3343. return &v.sizeCache
  3344. case 2:
  3345. return &v.unknownFields
  3346. default:
  3347. return nil
  3348. }
  3349. }
  3350. file_biService_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3351. switch v := v.(*ClueAddReq); i {
  3352. case 0:
  3353. return &v.state
  3354. case 1:
  3355. return &v.sizeCache
  3356. case 2:
  3357. return &v.unknownFields
  3358. default:
  3359. return nil
  3360. }
  3361. }
  3362. file_biService_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3363. switch v := v.(*SqlManageReq); i {
  3364. case 0:
  3365. return &v.state
  3366. case 1:
  3367. return &v.sizeCache
  3368. case 2:
  3369. return &v.unknownFields
  3370. default:
  3371. return nil
  3372. }
  3373. }
  3374. file_biService_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3375. switch v := v.(*MyInfoReq); i {
  3376. case 0:
  3377. return &v.state
  3378. case 1:
  3379. return &v.sizeCache
  3380. case 2:
  3381. return &v.unknownFields
  3382. default:
  3383. return nil
  3384. }
  3385. }
  3386. file_biService_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3387. switch v := v.(*Param); i {
  3388. case 0:
  3389. return &v.state
  3390. case 1:
  3391. return &v.sizeCache
  3392. case 2:
  3393. return &v.unknownFields
  3394. default:
  3395. return nil
  3396. }
  3397. }
  3398. file_biService_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3399. switch v := v.(*ExportReq); i {
  3400. case 0:
  3401. return &v.state
  3402. case 1:
  3403. return &v.sizeCache
  3404. case 2:
  3405. return &v.unknownFields
  3406. default:
  3407. return nil
  3408. }
  3409. }
  3410. file_biService_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3411. switch v := v.(*OperateReq); i {
  3412. case 0:
  3413. return &v.state
  3414. case 1:
  3415. return &v.sizeCache
  3416. case 2:
  3417. return &v.unknownFields
  3418. default:
  3419. return nil
  3420. }
  3421. }
  3422. file_biService_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3423. switch v := v.(*CompanyReq); i {
  3424. case 0:
  3425. return &v.state
  3426. case 1:
  3427. return &v.sizeCache
  3428. case 2:
  3429. return &v.unknownFields
  3430. default:
  3431. return nil
  3432. }
  3433. }
  3434. file_biService_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3435. switch v := v.(*CompanyResp); i {
  3436. case 0:
  3437. return &v.state
  3438. case 1:
  3439. return &v.sizeCache
  3440. case 2:
  3441. return &v.unknownFields
  3442. default:
  3443. return nil
  3444. }
  3445. }
  3446. file_biService_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3447. switch v := v.(*DistributeClueShowReq); i {
  3448. case 0:
  3449. return &v.state
  3450. case 1:
  3451. return &v.sizeCache
  3452. case 2:
  3453. return &v.unknownFields
  3454. default:
  3455. return nil
  3456. }
  3457. }
  3458. file_biService_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3459. switch v := v.(*DistributeClueShows); i {
  3460. case 0:
  3461. return &v.state
  3462. case 1:
  3463. return &v.sizeCache
  3464. case 2:
  3465. return &v.unknownFields
  3466. default:
  3467. return nil
  3468. }
  3469. }
  3470. file_biService_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3471. switch v := v.(*DistributeClueShowss); i {
  3472. case 0:
  3473. return &v.state
  3474. case 1:
  3475. return &v.sizeCache
  3476. case 2:
  3477. return &v.unknownFields
  3478. default:
  3479. return nil
  3480. }
  3481. }
  3482. file_biService_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3483. switch v := v.(*DistributeClueShowResp); i {
  3484. case 0:
  3485. return &v.state
  3486. case 1:
  3487. return &v.sizeCache
  3488. case 2:
  3489. return &v.unknownFields
  3490. default:
  3491. return nil
  3492. }
  3493. }
  3494. file_biService_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  3495. switch v := v.(*ExportByDbReq); i {
  3496. case 0:
  3497. return &v.state
  3498. case 1:
  3499. return &v.sizeCache
  3500. case 2:
  3501. return &v.unknownFields
  3502. default:
  3503. return nil
  3504. }
  3505. }
  3506. file_biService_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  3507. switch v := v.(*FilesData); i {
  3508. case 0:
  3509. return &v.state
  3510. case 1:
  3511. return &v.sizeCache
  3512. case 2:
  3513. return &v.unknownFields
  3514. default:
  3515. return nil
  3516. }
  3517. }
  3518. file_biService_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  3519. switch v := v.(*UpFileReq); i {
  3520. case 0:
  3521. return &v.state
  3522. case 1:
  3523. return &v.sizeCache
  3524. case 2:
  3525. return &v.unknownFields
  3526. default:
  3527. return nil
  3528. }
  3529. }
  3530. file_biService_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  3531. switch v := v.(*AcceptanceReq); i {
  3532. case 0:
  3533. return &v.state
  3534. case 1:
  3535. return &v.sizeCache
  3536. case 2:
  3537. return &v.unknownFields
  3538. default:
  3539. return nil
  3540. }
  3541. }
  3542. file_biService_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  3543. switch v := v.(*AcceptanceResp); i {
  3544. case 0:
  3545. return &v.state
  3546. case 1:
  3547. return &v.sizeCache
  3548. case 2:
  3549. return &v.unknownFields
  3550. default:
  3551. return nil
  3552. }
  3553. }
  3554. file_biService_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  3555. switch v := v.(*Acceptance); i {
  3556. case 0:
  3557. return &v.state
  3558. case 1:
  3559. return &v.sizeCache
  3560. case 2:
  3561. return &v.unknownFields
  3562. default:
  3563. return nil
  3564. }
  3565. }
  3566. file_biService_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  3567. switch v := v.(*SendMailReq); i {
  3568. case 0:
  3569. return &v.state
  3570. case 1:
  3571. return &v.sizeCache
  3572. case 2:
  3573. return &v.unknownFields
  3574. default:
  3575. return nil
  3576. }
  3577. }
  3578. file_biService_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  3579. switch v := v.(*CreateCuleReq); i {
  3580. case 0:
  3581. return &v.state
  3582. case 1:
  3583. return &v.sizeCache
  3584. case 2:
  3585. return &v.unknownFields
  3586. default:
  3587. return nil
  3588. }
  3589. }
  3590. file_biService_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  3591. switch v := v.(*TransferClueReq); i {
  3592. case 0:
  3593. return &v.state
  3594. case 1:
  3595. return &v.sizeCache
  3596. case 2:
  3597. return &v.unknownFields
  3598. default:
  3599. return nil
  3600. }
  3601. }
  3602. file_biService_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
  3603. switch v := v.(*FindClueInfoReq); i {
  3604. case 0:
  3605. return &v.state
  3606. case 1:
  3607. return &v.sizeCache
  3608. case 2:
  3609. return &v.unknownFields
  3610. default:
  3611. return nil
  3612. }
  3613. }
  3614. file_biService_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
  3615. switch v := v.(*ClueInfoReq); i {
  3616. case 0:
  3617. return &v.state
  3618. case 1:
  3619. return &v.sizeCache
  3620. case 2:
  3621. return &v.unknownFields
  3622. default:
  3623. return nil
  3624. }
  3625. }
  3626. file_biService_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  3627. switch v := v.(*MaterialSaveReq); i {
  3628. case 0:
  3629. return &v.state
  3630. case 1:
  3631. return &v.sizeCache
  3632. case 2:
  3633. return &v.unknownFields
  3634. default:
  3635. return nil
  3636. }
  3637. }
  3638. file_biService_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  3639. switch v := v.(*MaterialSaveResp); i {
  3640. case 0:
  3641. return &v.state
  3642. case 1:
  3643. return &v.sizeCache
  3644. case 2:
  3645. return &v.unknownFields
  3646. default:
  3647. return nil
  3648. }
  3649. }
  3650. file_biService_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
  3651. switch v := v.(*ClueTransferReq); i {
  3652. case 0:
  3653. return &v.state
  3654. case 1:
  3655. return &v.sizeCache
  3656. case 2:
  3657. return &v.unknownFields
  3658. default:
  3659. return nil
  3660. }
  3661. }
  3662. }
  3663. type x struct{}
  3664. out := protoimpl.TypeBuilder{
  3665. File: protoimpl.DescBuilder{
  3666. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3667. RawDescriptor: file_biService_proto_rawDesc,
  3668. NumEnums: 0,
  3669. NumMessages: 42,
  3670. NumExtensions: 0,
  3671. NumServices: 1,
  3672. },
  3673. GoTypes: file_biService_proto_goTypes,
  3674. DependencyIndexes: file_biService_proto_depIdxs,
  3675. MessageInfos: file_biService_proto_msgTypes,
  3676. }.Build()
  3677. File_biService_proto = out.File
  3678. file_biService_proto_rawDesc = nil
  3679. file_biService_proto_goTypes = nil
  3680. file_biService_proto_depIdxs = nil
  3681. }