biService.pb.go 96 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.32.0
  4. // protoc v4.25.2
  5. // source: biService.proto
  6. package pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type MyDataAssetReq struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  24. NewUserId int64 `protobuf:"varint,2,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
  25. EntUserId int64 `protobuf:"varint,3,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  26. }
  27. func (x *MyDataAssetReq) Reset() {
  28. *x = MyDataAssetReq{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_biService_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *MyDataAssetReq) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*MyDataAssetReq) ProtoMessage() {}
  39. func (x *MyDataAssetReq) ProtoReflect() protoreflect.Message {
  40. mi := &file_biService_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use MyDataAssetReq.ProtoReflect.Descriptor instead.
  51. func (*MyDataAssetReq) Descriptor() ([]byte, []int) {
  52. return file_biService_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *MyDataAssetReq) GetUserId() string {
  55. if x != nil {
  56. return x.UserId
  57. }
  58. return ""
  59. }
  60. func (x *MyDataAssetReq) GetNewUserId() int64 {
  61. if x != nil {
  62. return x.NewUserId
  63. }
  64. return 0
  65. }
  66. func (x *MyDataAssetReq) GetEntUserId() int64 {
  67. if x != nil {
  68. return x.EntUserId
  69. }
  70. return 0
  71. }
  72. type MyDataAssetResp struct {
  73. state protoimpl.MessageState
  74. sizeCache protoimpl.SizeCache
  75. unknownFields protoimpl.UnknownFields
  76. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  77. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  78. Data *MyDataAsset `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  79. }
  80. func (x *MyDataAssetResp) Reset() {
  81. *x = MyDataAssetResp{}
  82. if protoimpl.UnsafeEnabled {
  83. mi := &file_biService_proto_msgTypes[1]
  84. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  85. ms.StoreMessageInfo(mi)
  86. }
  87. }
  88. func (x *MyDataAssetResp) String() string {
  89. return protoimpl.X.MessageStringOf(x)
  90. }
  91. func (*MyDataAssetResp) ProtoMessage() {}
  92. func (x *MyDataAssetResp) ProtoReflect() protoreflect.Message {
  93. mi := &file_biService_proto_msgTypes[1]
  94. if protoimpl.UnsafeEnabled && x != nil {
  95. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  96. if ms.LoadMessageInfo() == nil {
  97. ms.StoreMessageInfo(mi)
  98. }
  99. return ms
  100. }
  101. return mi.MessageOf(x)
  102. }
  103. // Deprecated: Use MyDataAssetResp.ProtoReflect.Descriptor instead.
  104. func (*MyDataAssetResp) Descriptor() ([]byte, []int) {
  105. return file_biService_proto_rawDescGZIP(), []int{1}
  106. }
  107. func (x *MyDataAssetResp) GetErrorCode() int64 {
  108. if x != nil {
  109. return x.ErrorCode
  110. }
  111. return 0
  112. }
  113. func (x *MyDataAssetResp) GetErrorMsg() string {
  114. if x != nil {
  115. return x.ErrorMsg
  116. }
  117. return ""
  118. }
  119. func (x *MyDataAssetResp) GetData() *MyDataAsset {
  120. if x != nil {
  121. return x.Data
  122. }
  123. return nil
  124. }
  125. type MyDataAsset struct {
  126. state protoimpl.MessageState
  127. sizeCache protoimpl.SizeCache
  128. unknownFields protoimpl.UnknownFields
  129. CollectInfoCount int64 `protobuf:"varint,1,opt,name=collect_info_count,json=collectInfoCount,proto3" json:"collect_info_count,omitempty"`
  130. FollowProjectCount int64 `protobuf:"varint,2,opt,name=follow_project_count,json=followProjectCount,proto3" json:"follow_project_count,omitempty"`
  131. CollectDocCount int64 `protobuf:"varint,3,opt,name=collect_doc_count,json=collectDocCount,proto3" json:"collect_doc_count,omitempty"`
  132. ClaimCustomerCount int64 `protobuf:"varint,4,opt,name=claim_customer_count,json=claimCustomerCount,proto3" json:"claim_customer_count,omitempty"`
  133. ClaimNzjCount int64 `protobuf:"varint,5,opt,name=claim_nzj_count,json=claimNzjCount,proto3" json:"claim_nzj_count,omitempty"`
  134. }
  135. func (x *MyDataAsset) Reset() {
  136. *x = MyDataAsset{}
  137. if protoimpl.UnsafeEnabled {
  138. mi := &file_biService_proto_msgTypes[2]
  139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  140. ms.StoreMessageInfo(mi)
  141. }
  142. }
  143. func (x *MyDataAsset) String() string {
  144. return protoimpl.X.MessageStringOf(x)
  145. }
  146. func (*MyDataAsset) ProtoMessage() {}
  147. func (x *MyDataAsset) ProtoReflect() protoreflect.Message {
  148. mi := &file_biService_proto_msgTypes[2]
  149. if protoimpl.UnsafeEnabled && x != nil {
  150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  151. if ms.LoadMessageInfo() == nil {
  152. ms.StoreMessageInfo(mi)
  153. }
  154. return ms
  155. }
  156. return mi.MessageOf(x)
  157. }
  158. // Deprecated: Use MyDataAsset.ProtoReflect.Descriptor instead.
  159. func (*MyDataAsset) Descriptor() ([]byte, []int) {
  160. return file_biService_proto_rawDescGZIP(), []int{2}
  161. }
  162. func (x *MyDataAsset) GetCollectInfoCount() int64 {
  163. if x != nil {
  164. return x.CollectInfoCount
  165. }
  166. return 0
  167. }
  168. func (x *MyDataAsset) GetFollowProjectCount() int64 {
  169. if x != nil {
  170. return x.FollowProjectCount
  171. }
  172. return 0
  173. }
  174. func (x *MyDataAsset) GetCollectDocCount() int64 {
  175. if x != nil {
  176. return x.CollectDocCount
  177. }
  178. return 0
  179. }
  180. func (x *MyDataAsset) GetClaimCustomerCount() int64 {
  181. if x != nil {
  182. return x.ClaimCustomerCount
  183. }
  184. return 0
  185. }
  186. func (x *MyDataAsset) GetClaimNzjCount() int64 {
  187. if x != nil {
  188. return x.ClaimNzjCount
  189. }
  190. return 0
  191. }
  192. type AddProjectReq struct {
  193. state protoimpl.MessageState
  194. sizeCache protoimpl.SizeCache
  195. unknownFields protoimpl.UnknownFields
  196. InfoId string `protobuf:"bytes,1,opt,name=info_id,json=infoId,proto3" json:"info_id,omitempty"` //信息id
  197. Source int64 `protobuf:"varint,2,opt,name=source,proto3" json:"source,omitempty"` //1-收藏,2-招标搜索,3-关注
  198. PositionId int64 `protobuf:"varint,3,opt,name=position_id,json=positionId,proto3" json:"position_id,omitempty"` //职位id
  199. PositionType int64 `protobuf:"varint,4,opt,name=position_type,json=positionType,proto3" json:"position_type,omitempty"` //职位类型
  200. AccountId int64 `protobuf:"varint,5,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"` //账户id
  201. CompanyName string `protobuf:"bytes,6,opt,name=company_name,json=companyName,proto3" json:"company_name,omitempty"`
  202. UserName string `protobuf:"bytes,7,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
  203. UserId int64 `protobuf:"varint,8,opt,name=userId,proto3" json:"userId,omitempty"`
  204. EntId int64 `protobuf:"varint,9,opt,name=entId,proto3" json:"entId,omitempty"`
  205. EntUserName string `protobuf:"bytes,10,opt,name=entUserName,proto3" json:"entUserName,omitempty"`
  206. }
  207. func (x *AddProjectReq) Reset() {
  208. *x = AddProjectReq{}
  209. if protoimpl.UnsafeEnabled {
  210. mi := &file_biService_proto_msgTypes[3]
  211. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  212. ms.StoreMessageInfo(mi)
  213. }
  214. }
  215. func (x *AddProjectReq) String() string {
  216. return protoimpl.X.MessageStringOf(x)
  217. }
  218. func (*AddProjectReq) ProtoMessage() {}
  219. func (x *AddProjectReq) ProtoReflect() protoreflect.Message {
  220. mi := &file_biService_proto_msgTypes[3]
  221. if protoimpl.UnsafeEnabled && x != nil {
  222. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  223. if ms.LoadMessageInfo() == nil {
  224. ms.StoreMessageInfo(mi)
  225. }
  226. return ms
  227. }
  228. return mi.MessageOf(x)
  229. }
  230. // Deprecated: Use AddProjectReq.ProtoReflect.Descriptor instead.
  231. func (*AddProjectReq) Descriptor() ([]byte, []int) {
  232. return file_biService_proto_rawDescGZIP(), []int{3}
  233. }
  234. func (x *AddProjectReq) GetInfoId() string {
  235. if x != nil {
  236. return x.InfoId
  237. }
  238. return ""
  239. }
  240. func (x *AddProjectReq) GetSource() int64 {
  241. if x != nil {
  242. return x.Source
  243. }
  244. return 0
  245. }
  246. func (x *AddProjectReq) GetPositionId() int64 {
  247. if x != nil {
  248. return x.PositionId
  249. }
  250. return 0
  251. }
  252. func (x *AddProjectReq) GetPositionType() int64 {
  253. if x != nil {
  254. return x.PositionType
  255. }
  256. return 0
  257. }
  258. func (x *AddProjectReq) GetAccountId() int64 {
  259. if x != nil {
  260. return x.AccountId
  261. }
  262. return 0
  263. }
  264. func (x *AddProjectReq) GetCompanyName() string {
  265. if x != nil {
  266. return x.CompanyName
  267. }
  268. return ""
  269. }
  270. func (x *AddProjectReq) GetUserName() string {
  271. if x != nil {
  272. return x.UserName
  273. }
  274. return ""
  275. }
  276. func (x *AddProjectReq) GetUserId() int64 {
  277. if x != nil {
  278. return x.UserId
  279. }
  280. return 0
  281. }
  282. func (x *AddProjectReq) GetEntId() int64 {
  283. if x != nil {
  284. return x.EntId
  285. }
  286. return 0
  287. }
  288. func (x *AddProjectReq) GetEntUserName() string {
  289. if x != nil {
  290. return x.EntUserName
  291. }
  292. return ""
  293. }
  294. type AddProjectResp struct {
  295. state protoimpl.MessageState
  296. sizeCache protoimpl.SizeCache
  297. unknownFields protoimpl.UnknownFields
  298. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  299. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  300. Data *AddProject `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  301. }
  302. func (x *AddProjectResp) Reset() {
  303. *x = AddProjectResp{}
  304. if protoimpl.UnsafeEnabled {
  305. mi := &file_biService_proto_msgTypes[4]
  306. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  307. ms.StoreMessageInfo(mi)
  308. }
  309. }
  310. func (x *AddProjectResp) String() string {
  311. return protoimpl.X.MessageStringOf(x)
  312. }
  313. func (*AddProjectResp) ProtoMessage() {}
  314. func (x *AddProjectResp) ProtoReflect() protoreflect.Message {
  315. mi := &file_biService_proto_msgTypes[4]
  316. if protoimpl.UnsafeEnabled && x != nil {
  317. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  318. if ms.LoadMessageInfo() == nil {
  319. ms.StoreMessageInfo(mi)
  320. }
  321. return ms
  322. }
  323. return mi.MessageOf(x)
  324. }
  325. // Deprecated: Use AddProjectResp.ProtoReflect.Descriptor instead.
  326. func (*AddProjectResp) Descriptor() ([]byte, []int) {
  327. return file_biService_proto_rawDescGZIP(), []int{4}
  328. }
  329. func (x *AddProjectResp) GetErrorCode() int64 {
  330. if x != nil {
  331. return x.ErrorCode
  332. }
  333. return 0
  334. }
  335. func (x *AddProjectResp) GetErrorMsg() string {
  336. if x != nil {
  337. return x.ErrorMsg
  338. }
  339. return ""
  340. }
  341. func (x *AddProjectResp) GetData() *AddProject {
  342. if x != nil {
  343. return x.Data
  344. }
  345. return nil
  346. }
  347. type AddProject struct {
  348. state protoimpl.MessageState
  349. sizeCache protoimpl.SizeCache
  350. unknownFields protoimpl.UnknownFields
  351. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  352. Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
  353. }
  354. func (x *AddProject) Reset() {
  355. *x = AddProject{}
  356. if protoimpl.UnsafeEnabled {
  357. mi := &file_biService_proto_msgTypes[5]
  358. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  359. ms.StoreMessageInfo(mi)
  360. }
  361. }
  362. func (x *AddProject) String() string {
  363. return protoimpl.X.MessageStringOf(x)
  364. }
  365. func (*AddProject) ProtoMessage() {}
  366. func (x *AddProject) ProtoReflect() protoreflect.Message {
  367. mi := &file_biService_proto_msgTypes[5]
  368. if protoimpl.UnsafeEnabled && x != nil {
  369. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  370. if ms.LoadMessageInfo() == nil {
  371. ms.StoreMessageInfo(mi)
  372. }
  373. return ms
  374. }
  375. return mi.MessageOf(x)
  376. }
  377. // Deprecated: Use AddProject.ProtoReflect.Descriptor instead.
  378. func (*AddProject) Descriptor() ([]byte, []int) {
  379. return file_biService_proto_rawDescGZIP(), []int{5}
  380. }
  381. func (x *AddProject) GetStatus() int64 {
  382. if x != nil {
  383. return x.Status
  384. }
  385. return 0
  386. }
  387. func (x *AddProject) GetCount() int64 {
  388. if x != nil {
  389. return x.Count
  390. }
  391. return 0
  392. }
  393. type GetInfoIdResp struct {
  394. state protoimpl.MessageState
  395. sizeCache protoimpl.SizeCache
  396. unknownFields protoimpl.UnknownFields
  397. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  398. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  399. Data []string `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  400. }
  401. func (x *GetInfoIdResp) Reset() {
  402. *x = GetInfoIdResp{}
  403. if protoimpl.UnsafeEnabled {
  404. mi := &file_biService_proto_msgTypes[6]
  405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  406. ms.StoreMessageInfo(mi)
  407. }
  408. }
  409. func (x *GetInfoIdResp) String() string {
  410. return protoimpl.X.MessageStringOf(x)
  411. }
  412. func (*GetInfoIdResp) ProtoMessage() {}
  413. func (x *GetInfoIdResp) ProtoReflect() protoreflect.Message {
  414. mi := &file_biService_proto_msgTypes[6]
  415. if protoimpl.UnsafeEnabled && x != nil {
  416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  417. if ms.LoadMessageInfo() == nil {
  418. ms.StoreMessageInfo(mi)
  419. }
  420. return ms
  421. }
  422. return mi.MessageOf(x)
  423. }
  424. // Deprecated: Use GetInfoIdResp.ProtoReflect.Descriptor instead.
  425. func (*GetInfoIdResp) Descriptor() ([]byte, []int) {
  426. return file_biService_proto_rawDescGZIP(), []int{6}
  427. }
  428. func (x *GetInfoIdResp) GetErrorCode() int64 {
  429. if x != nil {
  430. return x.ErrorCode
  431. }
  432. return 0
  433. }
  434. func (x *GetInfoIdResp) GetErrorMsg() string {
  435. if x != nil {
  436. return x.ErrorMsg
  437. }
  438. return ""
  439. }
  440. func (x *GetInfoIdResp) GetData() []string {
  441. if x != nil {
  442. return x.Data
  443. }
  444. return nil
  445. }
  446. type DrawClueReq struct {
  447. state protoimpl.MessageState
  448. sizeCache protoimpl.SizeCache
  449. unknownFields protoimpl.UnknownFields
  450. PositionId int64 `protobuf:"varint,1,opt,name=positionId,proto3" json:"positionId,omitempty"`
  451. Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
  452. }
  453. func (x *DrawClueReq) Reset() {
  454. *x = DrawClueReq{}
  455. if protoimpl.UnsafeEnabled {
  456. mi := &file_biService_proto_msgTypes[7]
  457. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  458. ms.StoreMessageInfo(mi)
  459. }
  460. }
  461. func (x *DrawClueReq) String() string {
  462. return protoimpl.X.MessageStringOf(x)
  463. }
  464. func (*DrawClueReq) ProtoMessage() {}
  465. func (x *DrawClueReq) ProtoReflect() protoreflect.Message {
  466. mi := &file_biService_proto_msgTypes[7]
  467. if protoimpl.UnsafeEnabled && x != nil {
  468. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  469. if ms.LoadMessageInfo() == nil {
  470. ms.StoreMessageInfo(mi)
  471. }
  472. return ms
  473. }
  474. return mi.MessageOf(x)
  475. }
  476. // Deprecated: Use DrawClueReq.ProtoReflect.Descriptor instead.
  477. func (*DrawClueReq) Descriptor() ([]byte, []int) {
  478. return file_biService_proto_rawDescGZIP(), []int{7}
  479. }
  480. func (x *DrawClueReq) GetPositionId() int64 {
  481. if x != nil {
  482. return x.PositionId
  483. }
  484. return 0
  485. }
  486. func (x *DrawClueReq) GetCount() int64 {
  487. if x != nil {
  488. return x.Count
  489. }
  490. return 0
  491. }
  492. type CallReq struct {
  493. state protoimpl.MessageState
  494. sizeCache protoimpl.SizeCache
  495. unknownFields protoimpl.UnknownFields
  496. PositionId int64 `protobuf:"varint,1,opt,name=position_id,json=positionId,proto3" json:"position_id,omitempty"`
  497. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
  498. }
  499. func (x *CallReq) Reset() {
  500. *x = CallReq{}
  501. if protoimpl.UnsafeEnabled {
  502. mi := &file_biService_proto_msgTypes[8]
  503. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  504. ms.StoreMessageInfo(mi)
  505. }
  506. }
  507. func (x *CallReq) String() string {
  508. return protoimpl.X.MessageStringOf(x)
  509. }
  510. func (*CallReq) ProtoMessage() {}
  511. func (x *CallReq) ProtoReflect() protoreflect.Message {
  512. mi := &file_biService_proto_msgTypes[8]
  513. if protoimpl.UnsafeEnabled && x != nil {
  514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  515. if ms.LoadMessageInfo() == nil {
  516. ms.StoreMessageInfo(mi)
  517. }
  518. return ms
  519. }
  520. return mi.MessageOf(x)
  521. }
  522. // Deprecated: Use CallReq.ProtoReflect.Descriptor instead.
  523. func (*CallReq) Descriptor() ([]byte, []int) {
  524. return file_biService_proto_rawDescGZIP(), []int{8}
  525. }
  526. func (x *CallReq) GetPositionId() int64 {
  527. if x != nil {
  528. return x.PositionId
  529. }
  530. return 0
  531. }
  532. func (x *CallReq) GetPhone() string {
  533. if x != nil {
  534. return x.Phone
  535. }
  536. return ""
  537. }
  538. type BiResp struct {
  539. state protoimpl.MessageState
  540. sizeCache protoimpl.SizeCache
  541. unknownFields protoimpl.UnknownFields
  542. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  543. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  544. Data string `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  545. }
  546. func (x *BiResp) Reset() {
  547. *x = BiResp{}
  548. if protoimpl.UnsafeEnabled {
  549. mi := &file_biService_proto_msgTypes[9]
  550. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  551. ms.StoreMessageInfo(mi)
  552. }
  553. }
  554. func (x *BiResp) String() string {
  555. return protoimpl.X.MessageStringOf(x)
  556. }
  557. func (*BiResp) ProtoMessage() {}
  558. func (x *BiResp) ProtoReflect() protoreflect.Message {
  559. mi := &file_biService_proto_msgTypes[9]
  560. if protoimpl.UnsafeEnabled && x != nil {
  561. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  562. if ms.LoadMessageInfo() == nil {
  563. ms.StoreMessageInfo(mi)
  564. }
  565. return ms
  566. }
  567. return mi.MessageOf(x)
  568. }
  569. // Deprecated: Use BiResp.ProtoReflect.Descriptor instead.
  570. func (*BiResp) Descriptor() ([]byte, []int) {
  571. return file_biService_proto_rawDescGZIP(), []int{9}
  572. }
  573. func (x *BiResp) GetErrorCode() int64 {
  574. if x != nil {
  575. return x.ErrorCode
  576. }
  577. return 0
  578. }
  579. func (x *BiResp) GetErrorMsg() string {
  580. if x != nil {
  581. return x.ErrorMsg
  582. }
  583. return ""
  584. }
  585. func (x *BiResp) GetData() string {
  586. if x != nil {
  587. return x.Data
  588. }
  589. return ""
  590. }
  591. type BiReply struct {
  592. state protoimpl.MessageState
  593. sizeCache protoimpl.SizeCache
  594. unknownFields protoimpl.UnknownFields
  595. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  596. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  597. Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  598. }
  599. func (x *BiReply) Reset() {
  600. *x = BiReply{}
  601. if protoimpl.UnsafeEnabled {
  602. mi := &file_biService_proto_msgTypes[10]
  603. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  604. ms.StoreMessageInfo(mi)
  605. }
  606. }
  607. func (x *BiReply) String() string {
  608. return protoimpl.X.MessageStringOf(x)
  609. }
  610. func (*BiReply) ProtoMessage() {}
  611. func (x *BiReply) ProtoReflect() protoreflect.Message {
  612. mi := &file_biService_proto_msgTypes[10]
  613. if protoimpl.UnsafeEnabled && x != nil {
  614. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  615. if ms.LoadMessageInfo() == nil {
  616. ms.StoreMessageInfo(mi)
  617. }
  618. return ms
  619. }
  620. return mi.MessageOf(x)
  621. }
  622. // Deprecated: Use BiReply.ProtoReflect.Descriptor instead.
  623. func (*BiReply) Descriptor() ([]byte, []int) {
  624. return file_biService_proto_rawDescGZIP(), []int{10}
  625. }
  626. func (x *BiReply) GetErrorCode() int64 {
  627. if x != nil {
  628. return x.ErrorCode
  629. }
  630. return 0
  631. }
  632. func (x *BiReply) GetErrorMsg() string {
  633. if x != nil {
  634. return x.ErrorMsg
  635. }
  636. return ""
  637. }
  638. func (x *BiReply) GetData() []byte {
  639. if x != nil {
  640. return x.Data
  641. }
  642. return nil
  643. }
  644. type DistributeClueReq struct {
  645. state protoimpl.MessageState
  646. sizeCache protoimpl.SizeCache
  647. unknownFields protoimpl.UnknownFields
  648. ClueCount string `protobuf:"bytes,1,opt,name=clueCount,proto3" json:"clueCount,omitempty"`
  649. ClueIdList []int64 `protobuf:"varint,2,rep,packed,name=clueIdList,proto3" json:"clueIdList,omitempty"`
  650. Datas []*DistributeDatas `protobuf:"bytes,3,rep,name=datas,proto3" json:"datas,omitempty"`
  651. PositionId int64 `protobuf:"varint,4,opt,name=positionId,proto3" json:"positionId,omitempty"`
  652. IsTask int64 `protobuf:"varint,5,opt,name=isTask,proto3" json:"isTask,omitempty"`
  653. }
  654. func (x *DistributeClueReq) Reset() {
  655. *x = DistributeClueReq{}
  656. if protoimpl.UnsafeEnabled {
  657. mi := &file_biService_proto_msgTypes[11]
  658. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  659. ms.StoreMessageInfo(mi)
  660. }
  661. }
  662. func (x *DistributeClueReq) String() string {
  663. return protoimpl.X.MessageStringOf(x)
  664. }
  665. func (*DistributeClueReq) ProtoMessage() {}
  666. func (x *DistributeClueReq) ProtoReflect() protoreflect.Message {
  667. mi := &file_biService_proto_msgTypes[11]
  668. if protoimpl.UnsafeEnabled && x != nil {
  669. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  670. if ms.LoadMessageInfo() == nil {
  671. ms.StoreMessageInfo(mi)
  672. }
  673. return ms
  674. }
  675. return mi.MessageOf(x)
  676. }
  677. // Deprecated: Use DistributeClueReq.ProtoReflect.Descriptor instead.
  678. func (*DistributeClueReq) Descriptor() ([]byte, []int) {
  679. return file_biService_proto_rawDescGZIP(), []int{11}
  680. }
  681. func (x *DistributeClueReq) GetClueCount() string {
  682. if x != nil {
  683. return x.ClueCount
  684. }
  685. return ""
  686. }
  687. func (x *DistributeClueReq) GetClueIdList() []int64 {
  688. if x != nil {
  689. return x.ClueIdList
  690. }
  691. return nil
  692. }
  693. func (x *DistributeClueReq) GetDatas() []*DistributeDatas {
  694. if x != nil {
  695. return x.Datas
  696. }
  697. return nil
  698. }
  699. func (x *DistributeClueReq) GetPositionId() int64 {
  700. if x != nil {
  701. return x.PositionId
  702. }
  703. return 0
  704. }
  705. func (x *DistributeClueReq) GetIsTask() int64 {
  706. if x != nil {
  707. return x.IsTask
  708. }
  709. return 0
  710. }
  711. type DistributeDatas struct {
  712. state protoimpl.MessageState
  713. sizeCache protoimpl.SizeCache
  714. unknownFields protoimpl.UnknownFields
  715. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  716. PositionId int64 `protobuf:"varint,2,opt,name=positionId,proto3" json:"positionId,omitempty"`
  717. TotalCount string `protobuf:"bytes,3,opt,name=totalCount,proto3" json:"totalCount,omitempty"`
  718. UncompletedCount string `protobuf:"bytes,4,opt,name=uncompletedCount,proto3" json:"uncompletedCount,omitempty"`
  719. DistributedCount int64 `protobuf:"varint,5,opt,name=distributedCount,proto3" json:"distributedCount,omitempty"`
  720. }
  721. func (x *DistributeDatas) Reset() {
  722. *x = DistributeDatas{}
  723. if protoimpl.UnsafeEnabled {
  724. mi := &file_biService_proto_msgTypes[12]
  725. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  726. ms.StoreMessageInfo(mi)
  727. }
  728. }
  729. func (x *DistributeDatas) String() string {
  730. return protoimpl.X.MessageStringOf(x)
  731. }
  732. func (*DistributeDatas) ProtoMessage() {}
  733. func (x *DistributeDatas) ProtoReflect() protoreflect.Message {
  734. mi := &file_biService_proto_msgTypes[12]
  735. if protoimpl.UnsafeEnabled && x != nil {
  736. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  737. if ms.LoadMessageInfo() == nil {
  738. ms.StoreMessageInfo(mi)
  739. }
  740. return ms
  741. }
  742. return mi.MessageOf(x)
  743. }
  744. // Deprecated: Use DistributeDatas.ProtoReflect.Descriptor instead.
  745. func (*DistributeDatas) Descriptor() ([]byte, []int) {
  746. return file_biService_proto_rawDescGZIP(), []int{12}
  747. }
  748. func (x *DistributeDatas) GetName() string {
  749. if x != nil {
  750. return x.Name
  751. }
  752. return ""
  753. }
  754. func (x *DistributeDatas) GetPositionId() int64 {
  755. if x != nil {
  756. return x.PositionId
  757. }
  758. return 0
  759. }
  760. func (x *DistributeDatas) GetTotalCount() string {
  761. if x != nil {
  762. return x.TotalCount
  763. }
  764. return ""
  765. }
  766. func (x *DistributeDatas) GetUncompletedCount() string {
  767. if x != nil {
  768. return x.UncompletedCount
  769. }
  770. return ""
  771. }
  772. func (x *DistributeDatas) GetDistributedCount() int64 {
  773. if x != nil {
  774. return x.DistributedCount
  775. }
  776. return 0
  777. }
  778. type ClueImportReq struct {
  779. state protoimpl.MessageState
  780. sizeCache protoimpl.SizeCache
  781. unknownFields protoimpl.UnknownFields
  782. Pcbh string `protobuf:"bytes,1,opt,name=pcbh,proto3" json:"pcbh,omitempty"`
  783. PositionId int64 `protobuf:"varint,2,opt,name=positionId,proto3" json:"positionId,omitempty"`
  784. }
  785. func (x *ClueImportReq) Reset() {
  786. *x = ClueImportReq{}
  787. if protoimpl.UnsafeEnabled {
  788. mi := &file_biService_proto_msgTypes[13]
  789. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  790. ms.StoreMessageInfo(mi)
  791. }
  792. }
  793. func (x *ClueImportReq) String() string {
  794. return protoimpl.X.MessageStringOf(x)
  795. }
  796. func (*ClueImportReq) ProtoMessage() {}
  797. func (x *ClueImportReq) ProtoReflect() protoreflect.Message {
  798. mi := &file_biService_proto_msgTypes[13]
  799. if protoimpl.UnsafeEnabled && x != nil {
  800. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  801. if ms.LoadMessageInfo() == nil {
  802. ms.StoreMessageInfo(mi)
  803. }
  804. return ms
  805. }
  806. return mi.MessageOf(x)
  807. }
  808. // Deprecated: Use ClueImportReq.ProtoReflect.Descriptor instead.
  809. func (*ClueImportReq) Descriptor() ([]byte, []int) {
  810. return file_biService_proto_rawDescGZIP(), []int{13}
  811. }
  812. func (x *ClueImportReq) GetPcbh() string {
  813. if x != nil {
  814. return x.Pcbh
  815. }
  816. return ""
  817. }
  818. func (x *ClueImportReq) GetPositionId() int64 {
  819. if x != nil {
  820. return x.PositionId
  821. }
  822. return 0
  823. }
  824. type ClueImportResp struct {
  825. state protoimpl.MessageState
  826. sizeCache protoimpl.SizeCache
  827. unknownFields protoimpl.UnknownFields
  828. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  829. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  830. Data *ClueImport `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  831. }
  832. func (x *ClueImportResp) Reset() {
  833. *x = ClueImportResp{}
  834. if protoimpl.UnsafeEnabled {
  835. mi := &file_biService_proto_msgTypes[14]
  836. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  837. ms.StoreMessageInfo(mi)
  838. }
  839. }
  840. func (x *ClueImportResp) String() string {
  841. return protoimpl.X.MessageStringOf(x)
  842. }
  843. func (*ClueImportResp) ProtoMessage() {}
  844. func (x *ClueImportResp) ProtoReflect() protoreflect.Message {
  845. mi := &file_biService_proto_msgTypes[14]
  846. if protoimpl.UnsafeEnabled && x != nil {
  847. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  848. if ms.LoadMessageInfo() == nil {
  849. ms.StoreMessageInfo(mi)
  850. }
  851. return ms
  852. }
  853. return mi.MessageOf(x)
  854. }
  855. // Deprecated: Use ClueImportResp.ProtoReflect.Descriptor instead.
  856. func (*ClueImportResp) Descriptor() ([]byte, []int) {
  857. return file_biService_proto_rawDescGZIP(), []int{14}
  858. }
  859. func (x *ClueImportResp) GetErrorCode() int64 {
  860. if x != nil {
  861. return x.ErrorCode
  862. }
  863. return 0
  864. }
  865. func (x *ClueImportResp) GetErrorMsg() string {
  866. if x != nil {
  867. return x.ErrorMsg
  868. }
  869. return ""
  870. }
  871. func (x *ClueImportResp) GetData() *ClueImport {
  872. if x != nil {
  873. return x.Data
  874. }
  875. return nil
  876. }
  877. type ClueImport struct {
  878. state protoimpl.MessageState
  879. sizeCache protoimpl.SizeCache
  880. unknownFields protoimpl.UnknownFields
  881. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  882. Result string `protobuf:"bytes,2,opt,name=result,proto3" json:"result,omitempty"`
  883. }
  884. func (x *ClueImport) Reset() {
  885. *x = ClueImport{}
  886. if protoimpl.UnsafeEnabled {
  887. mi := &file_biService_proto_msgTypes[15]
  888. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  889. ms.StoreMessageInfo(mi)
  890. }
  891. }
  892. func (x *ClueImport) String() string {
  893. return protoimpl.X.MessageStringOf(x)
  894. }
  895. func (*ClueImport) ProtoMessage() {}
  896. func (x *ClueImport) ProtoReflect() protoreflect.Message {
  897. mi := &file_biService_proto_msgTypes[15]
  898. if protoimpl.UnsafeEnabled && x != nil {
  899. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  900. if ms.LoadMessageInfo() == nil {
  901. ms.StoreMessageInfo(mi)
  902. }
  903. return ms
  904. }
  905. return mi.MessageOf(x)
  906. }
  907. // Deprecated: Use ClueImport.ProtoReflect.Descriptor instead.
  908. func (*ClueImport) Descriptor() ([]byte, []int) {
  909. return file_biService_proto_rawDescGZIP(), []int{15}
  910. }
  911. func (x *ClueImport) GetStatus() int64 {
  912. if x != nil {
  913. return x.Status
  914. }
  915. return 0
  916. }
  917. func (x *ClueImport) GetResult() string {
  918. if x != nil {
  919. return x.Result
  920. }
  921. return ""
  922. }
  923. type ClueAddReq struct {
  924. state protoimpl.MessageState
  925. sizeCache protoimpl.SizeCache
  926. unknownFields protoimpl.UnknownFields
  927. Phone string `protobuf:"bytes,1,opt,name=phone,proto3" json:"phone,omitempty"`
  928. Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
  929. Source string `protobuf:"bytes,3,opt,name=source,proto3" json:"source,omitempty"`
  930. Status999 string `protobuf:"bytes,4,opt,name=status999,proto3" json:"status999,omitempty"`
  931. Owner string `protobuf:"bytes,5,opt,name=owner,proto3" json:"owner,omitempty"`
  932. EmpNo string `protobuf:"bytes,6,opt,name=empNo,proto3" json:"empNo,omitempty"`
  933. Company string `protobuf:"bytes,7,opt,name=company,proto3" json:"company,omitempty"`
  934. IsPolicymaker string `protobuf:"bytes,8,opt,name=isPolicymaker,proto3" json:"isPolicymaker,omitempty"`
  935. BelongToIndustry string `protobuf:"bytes,9,opt,name=belongToIndustry,proto3" json:"belongToIndustry,omitempty"`
  936. Job string `protobuf:"bytes,10,opt,name=job,proto3" json:"job,omitempty"`
  937. CustomerNeeds string `protobuf:"bytes,11,opt,name=customerNeeds,proto3" json:"customerNeeds,omitempty"`
  938. BelongTo string `protobuf:"bytes,12,opt,name=belongTo,proto3" json:"belongTo,omitempty"`
  939. WantGoods string `protobuf:"bytes,13,opt,name=wantGoods,proto3" json:"wantGoods,omitempty"`
  940. CustomerBudget string `protobuf:"bytes,14,opt,name=customerBudget,proto3" json:"customerBudget,omitempty"`
  941. }
  942. func (x *ClueAddReq) Reset() {
  943. *x = ClueAddReq{}
  944. if protoimpl.UnsafeEnabled {
  945. mi := &file_biService_proto_msgTypes[16]
  946. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  947. ms.StoreMessageInfo(mi)
  948. }
  949. }
  950. func (x *ClueAddReq) String() string {
  951. return protoimpl.X.MessageStringOf(x)
  952. }
  953. func (*ClueAddReq) ProtoMessage() {}
  954. func (x *ClueAddReq) ProtoReflect() protoreflect.Message {
  955. mi := &file_biService_proto_msgTypes[16]
  956. if protoimpl.UnsafeEnabled && x != nil {
  957. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  958. if ms.LoadMessageInfo() == nil {
  959. ms.StoreMessageInfo(mi)
  960. }
  961. return ms
  962. }
  963. return mi.MessageOf(x)
  964. }
  965. // Deprecated: Use ClueAddReq.ProtoReflect.Descriptor instead.
  966. func (*ClueAddReq) Descriptor() ([]byte, []int) {
  967. return file_biService_proto_rawDescGZIP(), []int{16}
  968. }
  969. func (x *ClueAddReq) GetPhone() string {
  970. if x != nil {
  971. return x.Phone
  972. }
  973. return ""
  974. }
  975. func (x *ClueAddReq) GetUsername() string {
  976. if x != nil {
  977. return x.Username
  978. }
  979. return ""
  980. }
  981. func (x *ClueAddReq) GetSource() string {
  982. if x != nil {
  983. return x.Source
  984. }
  985. return ""
  986. }
  987. func (x *ClueAddReq) GetStatus999() string {
  988. if x != nil {
  989. return x.Status999
  990. }
  991. return ""
  992. }
  993. func (x *ClueAddReq) GetOwner() string {
  994. if x != nil {
  995. return x.Owner
  996. }
  997. return ""
  998. }
  999. func (x *ClueAddReq) GetEmpNo() string {
  1000. if x != nil {
  1001. return x.EmpNo
  1002. }
  1003. return ""
  1004. }
  1005. func (x *ClueAddReq) GetCompany() string {
  1006. if x != nil {
  1007. return x.Company
  1008. }
  1009. return ""
  1010. }
  1011. func (x *ClueAddReq) GetIsPolicymaker() string {
  1012. if x != nil {
  1013. return x.IsPolicymaker
  1014. }
  1015. return ""
  1016. }
  1017. func (x *ClueAddReq) GetBelongToIndustry() string {
  1018. if x != nil {
  1019. return x.BelongToIndustry
  1020. }
  1021. return ""
  1022. }
  1023. func (x *ClueAddReq) GetJob() string {
  1024. if x != nil {
  1025. return x.Job
  1026. }
  1027. return ""
  1028. }
  1029. func (x *ClueAddReq) GetCustomerNeeds() string {
  1030. if x != nil {
  1031. return x.CustomerNeeds
  1032. }
  1033. return ""
  1034. }
  1035. func (x *ClueAddReq) GetBelongTo() string {
  1036. if x != nil {
  1037. return x.BelongTo
  1038. }
  1039. return ""
  1040. }
  1041. func (x *ClueAddReq) GetWantGoods() string {
  1042. if x != nil {
  1043. return x.WantGoods
  1044. }
  1045. return ""
  1046. }
  1047. func (x *ClueAddReq) GetCustomerBudget() string {
  1048. if x != nil {
  1049. return x.CustomerBudget
  1050. }
  1051. return ""
  1052. }
  1053. type SqlManageReq struct {
  1054. state protoimpl.MessageState
  1055. sizeCache protoimpl.SizeCache
  1056. unknownFields protoimpl.UnknownFields
  1057. Id float32 `protobuf:"fixed32,1,opt,name=id,proto3" json:"id,omitempty"`
  1058. Params []*Param `protobuf:"bytes,2,rep,name=params,proto3" json:"params,omitempty"`
  1059. }
  1060. func (x *SqlManageReq) Reset() {
  1061. *x = SqlManageReq{}
  1062. if protoimpl.UnsafeEnabled {
  1063. mi := &file_biService_proto_msgTypes[17]
  1064. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1065. ms.StoreMessageInfo(mi)
  1066. }
  1067. }
  1068. func (x *SqlManageReq) String() string {
  1069. return protoimpl.X.MessageStringOf(x)
  1070. }
  1071. func (*SqlManageReq) ProtoMessage() {}
  1072. func (x *SqlManageReq) ProtoReflect() protoreflect.Message {
  1073. mi := &file_biService_proto_msgTypes[17]
  1074. if protoimpl.UnsafeEnabled && x != nil {
  1075. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1076. if ms.LoadMessageInfo() == nil {
  1077. ms.StoreMessageInfo(mi)
  1078. }
  1079. return ms
  1080. }
  1081. return mi.MessageOf(x)
  1082. }
  1083. // Deprecated: Use SqlManageReq.ProtoReflect.Descriptor instead.
  1084. func (*SqlManageReq) Descriptor() ([]byte, []int) {
  1085. return file_biService_proto_rawDescGZIP(), []int{17}
  1086. }
  1087. func (x *SqlManageReq) GetId() float32 {
  1088. if x != nil {
  1089. return x.Id
  1090. }
  1091. return 0
  1092. }
  1093. func (x *SqlManageReq) GetParams() []*Param {
  1094. if x != nil {
  1095. return x.Params
  1096. }
  1097. return nil
  1098. }
  1099. type MyInfoReq struct {
  1100. state protoimpl.MessageState
  1101. sizeCache protoimpl.SizeCache
  1102. unknownFields protoimpl.UnknownFields
  1103. Bid string `protobuf:"bytes,1,opt,name=bid,proto3" json:"bid,omitempty"`
  1104. Sid string `protobuf:"bytes,2,opt,name=sid,proto3" json:"sid,omitempty"`
  1105. }
  1106. func (x *MyInfoReq) Reset() {
  1107. *x = MyInfoReq{}
  1108. if protoimpl.UnsafeEnabled {
  1109. mi := &file_biService_proto_msgTypes[18]
  1110. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1111. ms.StoreMessageInfo(mi)
  1112. }
  1113. }
  1114. func (x *MyInfoReq) String() string {
  1115. return protoimpl.X.MessageStringOf(x)
  1116. }
  1117. func (*MyInfoReq) ProtoMessage() {}
  1118. func (x *MyInfoReq) ProtoReflect() protoreflect.Message {
  1119. mi := &file_biService_proto_msgTypes[18]
  1120. if protoimpl.UnsafeEnabled && x != nil {
  1121. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1122. if ms.LoadMessageInfo() == nil {
  1123. ms.StoreMessageInfo(mi)
  1124. }
  1125. return ms
  1126. }
  1127. return mi.MessageOf(x)
  1128. }
  1129. // Deprecated: Use MyInfoReq.ProtoReflect.Descriptor instead.
  1130. func (*MyInfoReq) Descriptor() ([]byte, []int) {
  1131. return file_biService_proto_rawDescGZIP(), []int{18}
  1132. }
  1133. func (x *MyInfoReq) GetBid() string {
  1134. if x != nil {
  1135. return x.Bid
  1136. }
  1137. return ""
  1138. }
  1139. func (x *MyInfoReq) GetSid() string {
  1140. if x != nil {
  1141. return x.Sid
  1142. }
  1143. return ""
  1144. }
  1145. type Param struct {
  1146. state protoimpl.MessageState
  1147. sizeCache protoimpl.SizeCache
  1148. unknownFields protoimpl.UnknownFields
  1149. Value string `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
  1150. Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
  1151. }
  1152. func (x *Param) Reset() {
  1153. *x = Param{}
  1154. if protoimpl.UnsafeEnabled {
  1155. mi := &file_biService_proto_msgTypes[19]
  1156. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1157. ms.StoreMessageInfo(mi)
  1158. }
  1159. }
  1160. func (x *Param) String() string {
  1161. return protoimpl.X.MessageStringOf(x)
  1162. }
  1163. func (*Param) ProtoMessage() {}
  1164. func (x *Param) ProtoReflect() protoreflect.Message {
  1165. mi := &file_biService_proto_msgTypes[19]
  1166. if protoimpl.UnsafeEnabled && x != nil {
  1167. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1168. if ms.LoadMessageInfo() == nil {
  1169. ms.StoreMessageInfo(mi)
  1170. }
  1171. return ms
  1172. }
  1173. return mi.MessageOf(x)
  1174. }
  1175. // Deprecated: Use Param.ProtoReflect.Descriptor instead.
  1176. func (*Param) Descriptor() ([]byte, []int) {
  1177. return file_biService_proto_rawDescGZIP(), []int{19}
  1178. }
  1179. func (x *Param) GetValue() string {
  1180. if x != nil {
  1181. return x.Value
  1182. }
  1183. return ""
  1184. }
  1185. func (x *Param) GetType() string {
  1186. if x != nil {
  1187. return x.Type
  1188. }
  1189. return ""
  1190. }
  1191. type ExportReq struct {
  1192. state protoimpl.MessageState
  1193. sizeCache protoimpl.SizeCache
  1194. unknownFields protoimpl.UnknownFields
  1195. Mail string `protobuf:"bytes,1,opt,name=mail,proto3" json:"mail,omitempty"`
  1196. Mapping []string `protobuf:"bytes,2,rep,name=mapping,proto3" json:"mapping,omitempty"`
  1197. PositionId int64 `protobuf:"varint,3,opt,name=PositionId,proto3" json:"PositionId,omitempty"`
  1198. }
  1199. func (x *ExportReq) Reset() {
  1200. *x = ExportReq{}
  1201. if protoimpl.UnsafeEnabled {
  1202. mi := &file_biService_proto_msgTypes[20]
  1203. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1204. ms.StoreMessageInfo(mi)
  1205. }
  1206. }
  1207. func (x *ExportReq) String() string {
  1208. return protoimpl.X.MessageStringOf(x)
  1209. }
  1210. func (*ExportReq) ProtoMessage() {}
  1211. func (x *ExportReq) ProtoReflect() protoreflect.Message {
  1212. mi := &file_biService_proto_msgTypes[20]
  1213. if protoimpl.UnsafeEnabled && x != nil {
  1214. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1215. if ms.LoadMessageInfo() == nil {
  1216. ms.StoreMessageInfo(mi)
  1217. }
  1218. return ms
  1219. }
  1220. return mi.MessageOf(x)
  1221. }
  1222. // Deprecated: Use ExportReq.ProtoReflect.Descriptor instead.
  1223. func (*ExportReq) Descriptor() ([]byte, []int) {
  1224. return file_biService_proto_rawDescGZIP(), []int{20}
  1225. }
  1226. func (x *ExportReq) GetMail() string {
  1227. if x != nil {
  1228. return x.Mail
  1229. }
  1230. return ""
  1231. }
  1232. func (x *ExportReq) GetMapping() []string {
  1233. if x != nil {
  1234. return x.Mapping
  1235. }
  1236. return nil
  1237. }
  1238. func (x *ExportReq) GetPositionId() int64 {
  1239. if x != nil {
  1240. return x.PositionId
  1241. }
  1242. return 0
  1243. }
  1244. type OperateReq struct {
  1245. state protoimpl.MessageState
  1246. sizeCache protoimpl.SizeCache
  1247. unknownFields protoimpl.UnknownFields
  1248. NewId string `protobuf:"bytes,1,opt,name=newId,proto3" json:"newId,omitempty"`
  1249. Type int64 `protobuf:"varint,2,opt,name=type,proto3" json:"type,omitempty"`
  1250. }
  1251. func (x *OperateReq) Reset() {
  1252. *x = OperateReq{}
  1253. if protoimpl.UnsafeEnabled {
  1254. mi := &file_biService_proto_msgTypes[21]
  1255. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1256. ms.StoreMessageInfo(mi)
  1257. }
  1258. }
  1259. func (x *OperateReq) String() string {
  1260. return protoimpl.X.MessageStringOf(x)
  1261. }
  1262. func (*OperateReq) ProtoMessage() {}
  1263. func (x *OperateReq) ProtoReflect() protoreflect.Message {
  1264. mi := &file_biService_proto_msgTypes[21]
  1265. if protoimpl.UnsafeEnabled && x != nil {
  1266. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1267. if ms.LoadMessageInfo() == nil {
  1268. ms.StoreMessageInfo(mi)
  1269. }
  1270. return ms
  1271. }
  1272. return mi.MessageOf(x)
  1273. }
  1274. // Deprecated: Use OperateReq.ProtoReflect.Descriptor instead.
  1275. func (*OperateReq) Descriptor() ([]byte, []int) {
  1276. return file_biService_proto_rawDescGZIP(), []int{21}
  1277. }
  1278. func (x *OperateReq) GetNewId() string {
  1279. if x != nil {
  1280. return x.NewId
  1281. }
  1282. return ""
  1283. }
  1284. func (x *OperateReq) GetType() int64 {
  1285. if x != nil {
  1286. return x.Type
  1287. }
  1288. return 0
  1289. }
  1290. type 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. }
  1335. func (x *CompanyResp) Reset() {
  1336. *x = CompanyResp{}
  1337. if protoimpl.UnsafeEnabled {
  1338. mi := &file_biService_proto_msgTypes[23]
  1339. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1340. ms.StoreMessageInfo(mi)
  1341. }
  1342. }
  1343. func (x *CompanyResp) String() string {
  1344. return protoimpl.X.MessageStringOf(x)
  1345. }
  1346. func (*CompanyResp) ProtoMessage() {}
  1347. func (x *CompanyResp) ProtoReflect() protoreflect.Message {
  1348. mi := &file_biService_proto_msgTypes[23]
  1349. if protoimpl.UnsafeEnabled && x != nil {
  1350. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1351. if ms.LoadMessageInfo() == nil {
  1352. ms.StoreMessageInfo(mi)
  1353. }
  1354. return ms
  1355. }
  1356. return mi.MessageOf(x)
  1357. }
  1358. // Deprecated: Use CompanyResp.ProtoReflect.Descriptor instead.
  1359. func (*CompanyResp) Descriptor() ([]byte, []int) {
  1360. return file_biService_proto_rawDescGZIP(), []int{23}
  1361. }
  1362. func (x *CompanyResp) GetStatus() int64 {
  1363. if x != nil {
  1364. return x.Status
  1365. }
  1366. return 0
  1367. }
  1368. type DistributeClueShowReq struct {
  1369. state protoimpl.MessageState
  1370. sizeCache protoimpl.SizeCache
  1371. unknownFields protoimpl.UnknownFields
  1372. PositionId int64 `protobuf:"varint,1,opt,name=positionId,proto3" json:"positionId,omitempty"`
  1373. DataType int64 `protobuf:"varint,2,opt,name=dataType,proto3" json:"dataType,omitempty"`
  1374. ClueIdList string `protobuf:"bytes,3,opt,name=clueIdList,proto3" json:"clueIdList,omitempty"`
  1375. Datas []*DistributeClueShows `protobuf:"bytes,4,rep,name=datas,proto3" json:"datas,omitempty"`
  1376. IsTask int64 `protobuf:"varint,5,opt,name=IsTask,proto3" json:"IsTask,omitempty"`
  1377. UpdatePositionID int64 `protobuf:"varint,6,opt,name=UpdatePositionID,proto3" json:"UpdatePositionID,omitempty"`
  1378. }
  1379. func (x *DistributeClueShowReq) Reset() {
  1380. *x = DistributeClueShowReq{}
  1381. if protoimpl.UnsafeEnabled {
  1382. mi := &file_biService_proto_msgTypes[24]
  1383. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1384. ms.StoreMessageInfo(mi)
  1385. }
  1386. }
  1387. func (x *DistributeClueShowReq) String() string {
  1388. return protoimpl.X.MessageStringOf(x)
  1389. }
  1390. func (*DistributeClueShowReq) ProtoMessage() {}
  1391. func (x *DistributeClueShowReq) ProtoReflect() protoreflect.Message {
  1392. mi := &file_biService_proto_msgTypes[24]
  1393. if protoimpl.UnsafeEnabled && x != nil {
  1394. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1395. if ms.LoadMessageInfo() == nil {
  1396. ms.StoreMessageInfo(mi)
  1397. }
  1398. return ms
  1399. }
  1400. return mi.MessageOf(x)
  1401. }
  1402. // Deprecated: Use DistributeClueShowReq.ProtoReflect.Descriptor instead.
  1403. func (*DistributeClueShowReq) Descriptor() ([]byte, []int) {
  1404. return file_biService_proto_rawDescGZIP(), []int{24}
  1405. }
  1406. func (x *DistributeClueShowReq) GetPositionId() int64 {
  1407. if x != nil {
  1408. return x.PositionId
  1409. }
  1410. return 0
  1411. }
  1412. func (x *DistributeClueShowReq) GetDataType() int64 {
  1413. if x != nil {
  1414. return x.DataType
  1415. }
  1416. return 0
  1417. }
  1418. func (x *DistributeClueShowReq) GetClueIdList() string {
  1419. if x != nil {
  1420. return x.ClueIdList
  1421. }
  1422. return ""
  1423. }
  1424. func (x *DistributeClueShowReq) GetDatas() []*DistributeClueShows {
  1425. if x != nil {
  1426. return x.Datas
  1427. }
  1428. return nil
  1429. }
  1430. func (x *DistributeClueShowReq) GetIsTask() int64 {
  1431. if x != nil {
  1432. return x.IsTask
  1433. }
  1434. return 0
  1435. }
  1436. func (x *DistributeClueShowReq) GetUpdatePositionID() int64 {
  1437. if x != nil {
  1438. return x.UpdatePositionID
  1439. }
  1440. return 0
  1441. }
  1442. type DistributeClueShows struct {
  1443. state protoimpl.MessageState
  1444. sizeCache protoimpl.SizeCache
  1445. unknownFields protoimpl.UnknownFields
  1446. PositionId int64 `protobuf:"varint,1,opt,name=positionId,proto3" json:"positionId,omitempty"`
  1447. DistributedCount int64 `protobuf:"varint,2,opt,name=distributedCount,proto3" json:"distributedCount,omitempty"`
  1448. }
  1449. func (x *DistributeClueShows) Reset() {
  1450. *x = DistributeClueShows{}
  1451. if protoimpl.UnsafeEnabled {
  1452. mi := &file_biService_proto_msgTypes[25]
  1453. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1454. ms.StoreMessageInfo(mi)
  1455. }
  1456. }
  1457. func (x *DistributeClueShows) String() string {
  1458. return protoimpl.X.MessageStringOf(x)
  1459. }
  1460. func (*DistributeClueShows) ProtoMessage() {}
  1461. func (x *DistributeClueShows) ProtoReflect() protoreflect.Message {
  1462. mi := &file_biService_proto_msgTypes[25]
  1463. if protoimpl.UnsafeEnabled && x != nil {
  1464. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1465. if ms.LoadMessageInfo() == nil {
  1466. ms.StoreMessageInfo(mi)
  1467. }
  1468. return ms
  1469. }
  1470. return mi.MessageOf(x)
  1471. }
  1472. // Deprecated: Use DistributeClueShows.ProtoReflect.Descriptor instead.
  1473. func (*DistributeClueShows) Descriptor() ([]byte, []int) {
  1474. return file_biService_proto_rawDescGZIP(), []int{25}
  1475. }
  1476. func (x *DistributeClueShows) GetPositionId() int64 {
  1477. if x != nil {
  1478. return x.PositionId
  1479. }
  1480. return 0
  1481. }
  1482. func (x *DistributeClueShows) GetDistributedCount() int64 {
  1483. if x != nil {
  1484. return x.DistributedCount
  1485. }
  1486. return 0
  1487. }
  1488. type DistributeClueShowss struct {
  1489. state protoimpl.MessageState
  1490. sizeCache protoimpl.SizeCache
  1491. unknownFields protoimpl.UnknownFields
  1492. PositionId int64 `protobuf:"varint,1,opt,name=positionId,proto3" json:"positionId,omitempty"`
  1493. CompanyCount int64 `protobuf:"varint,2,opt,name=companyCount,proto3" json:"companyCount,omitempty"`
  1494. ClueCount int64 `protobuf:"varint,3,opt,name=clueCount,proto3" json:"clueCount,omitempty"`
  1495. MinCount int64 `protobuf:"varint,4,opt,name=minCount,proto3" json:"minCount,omitempty"`
  1496. CompanyCounts int64 `protobuf:"varint,5,opt,name=companyCounts,proto3" json:"companyCounts,omitempty"`
  1497. ExistingCount int64 `protobuf:"varint,6,opt,name=existingCount,proto3" json:"existingCount,omitempty"`
  1498. FullStatus bool `protobuf:"varint,7,opt,name=FullStatus,proto3" json:"FullStatus,omitempty"`
  1499. }
  1500. func (x *DistributeClueShowss) Reset() {
  1501. *x = DistributeClueShowss{}
  1502. if protoimpl.UnsafeEnabled {
  1503. mi := &file_biService_proto_msgTypes[26]
  1504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1505. ms.StoreMessageInfo(mi)
  1506. }
  1507. }
  1508. func (x *DistributeClueShowss) String() string {
  1509. return protoimpl.X.MessageStringOf(x)
  1510. }
  1511. func (*DistributeClueShowss) ProtoMessage() {}
  1512. func (x *DistributeClueShowss) ProtoReflect() protoreflect.Message {
  1513. mi := &file_biService_proto_msgTypes[26]
  1514. if protoimpl.UnsafeEnabled && x != nil {
  1515. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1516. if ms.LoadMessageInfo() == nil {
  1517. ms.StoreMessageInfo(mi)
  1518. }
  1519. return ms
  1520. }
  1521. return mi.MessageOf(x)
  1522. }
  1523. // Deprecated: Use DistributeClueShowss.ProtoReflect.Descriptor instead.
  1524. func (*DistributeClueShowss) Descriptor() ([]byte, []int) {
  1525. return file_biService_proto_rawDescGZIP(), []int{26}
  1526. }
  1527. func (x *DistributeClueShowss) GetPositionId() int64 {
  1528. if x != nil {
  1529. return x.PositionId
  1530. }
  1531. return 0
  1532. }
  1533. func (x *DistributeClueShowss) GetCompanyCount() int64 {
  1534. if x != nil {
  1535. return x.CompanyCount
  1536. }
  1537. return 0
  1538. }
  1539. func (x *DistributeClueShowss) GetClueCount() int64 {
  1540. if x != nil {
  1541. return x.ClueCount
  1542. }
  1543. return 0
  1544. }
  1545. func (x *DistributeClueShowss) GetMinCount() int64 {
  1546. if x != nil {
  1547. return x.MinCount
  1548. }
  1549. return 0
  1550. }
  1551. func (x *DistributeClueShowss) GetCompanyCounts() int64 {
  1552. if x != nil {
  1553. return x.CompanyCounts
  1554. }
  1555. return 0
  1556. }
  1557. func (x *DistributeClueShowss) GetExistingCount() int64 {
  1558. if x != nil {
  1559. return x.ExistingCount
  1560. }
  1561. return 0
  1562. }
  1563. func (x *DistributeClueShowss) GetFullStatus() bool {
  1564. if x != nil {
  1565. return x.FullStatus
  1566. }
  1567. return false
  1568. }
  1569. type DistributeClueShowResp struct {
  1570. state protoimpl.MessageState
  1571. sizeCache protoimpl.SizeCache
  1572. unknownFields protoimpl.UnknownFields
  1573. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1574. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1575. Data []*DistributeClueShowss `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  1576. }
  1577. func (x *DistributeClueShowResp) Reset() {
  1578. *x = DistributeClueShowResp{}
  1579. if protoimpl.UnsafeEnabled {
  1580. mi := &file_biService_proto_msgTypes[27]
  1581. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1582. ms.StoreMessageInfo(mi)
  1583. }
  1584. }
  1585. func (x *DistributeClueShowResp) String() string {
  1586. return protoimpl.X.MessageStringOf(x)
  1587. }
  1588. func (*DistributeClueShowResp) ProtoMessage() {}
  1589. func (x *DistributeClueShowResp) ProtoReflect() protoreflect.Message {
  1590. mi := &file_biService_proto_msgTypes[27]
  1591. if protoimpl.UnsafeEnabled && x != nil {
  1592. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1593. if ms.LoadMessageInfo() == nil {
  1594. ms.StoreMessageInfo(mi)
  1595. }
  1596. return ms
  1597. }
  1598. return mi.MessageOf(x)
  1599. }
  1600. // Deprecated: Use DistributeClueShowResp.ProtoReflect.Descriptor instead.
  1601. func (*DistributeClueShowResp) Descriptor() ([]byte, []int) {
  1602. return file_biService_proto_rawDescGZIP(), []int{27}
  1603. }
  1604. func (x *DistributeClueShowResp) GetErrorCode() int64 {
  1605. if x != nil {
  1606. return x.ErrorCode
  1607. }
  1608. return 0
  1609. }
  1610. func (x *DistributeClueShowResp) GetErrorMsg() string {
  1611. if x != nil {
  1612. return x.ErrorMsg
  1613. }
  1614. return ""
  1615. }
  1616. func (x *DistributeClueShowResp) GetData() []*DistributeClueShowss {
  1617. if x != nil {
  1618. return x.Data
  1619. }
  1620. return nil
  1621. }
  1622. type ExportByDbReq struct {
  1623. state protoimpl.MessageState
  1624. sizeCache protoimpl.SizeCache
  1625. unknownFields protoimpl.UnknownFields
  1626. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  1627. Title string `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
  1628. Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content,omitempty"`
  1629. Mails string `protobuf:"bytes,4,opt,name=mails,proto3" json:"mails,omitempty"`
  1630. FileName string `protobuf:"bytes,5,opt,name=fileName,proto3" json:"fileName,omitempty"`
  1631. Datas []*FilesData `protobuf:"bytes,6,rep,name=datas,proto3" json:"datas,omitempty"`
  1632. }
  1633. func (x *ExportByDbReq) Reset() {
  1634. *x = ExportByDbReq{}
  1635. if protoimpl.UnsafeEnabled {
  1636. mi := &file_biService_proto_msgTypes[28]
  1637. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1638. ms.StoreMessageInfo(mi)
  1639. }
  1640. }
  1641. func (x *ExportByDbReq) String() string {
  1642. return protoimpl.X.MessageStringOf(x)
  1643. }
  1644. func (*ExportByDbReq) ProtoMessage() {}
  1645. func (x *ExportByDbReq) ProtoReflect() protoreflect.Message {
  1646. mi := &file_biService_proto_msgTypes[28]
  1647. if protoimpl.UnsafeEnabled && x != nil {
  1648. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1649. if ms.LoadMessageInfo() == nil {
  1650. ms.StoreMessageInfo(mi)
  1651. }
  1652. return ms
  1653. }
  1654. return mi.MessageOf(x)
  1655. }
  1656. // Deprecated: Use ExportByDbReq.ProtoReflect.Descriptor instead.
  1657. func (*ExportByDbReq) Descriptor() ([]byte, []int) {
  1658. return file_biService_proto_rawDescGZIP(), []int{28}
  1659. }
  1660. func (x *ExportByDbReq) GetToken() string {
  1661. if x != nil {
  1662. return x.Token
  1663. }
  1664. return ""
  1665. }
  1666. func (x *ExportByDbReq) GetTitle() string {
  1667. if x != nil {
  1668. return x.Title
  1669. }
  1670. return ""
  1671. }
  1672. func (x *ExportByDbReq) GetContent() string {
  1673. if x != nil {
  1674. return x.Content
  1675. }
  1676. return ""
  1677. }
  1678. func (x *ExportByDbReq) GetMails() string {
  1679. if x != nil {
  1680. return x.Mails
  1681. }
  1682. return ""
  1683. }
  1684. func (x *ExportByDbReq) GetFileName() string {
  1685. if x != nil {
  1686. return x.FileName
  1687. }
  1688. return ""
  1689. }
  1690. func (x *ExportByDbReq) GetDatas() []*FilesData {
  1691. if x != nil {
  1692. return x.Datas
  1693. }
  1694. return nil
  1695. }
  1696. type FilesData struct {
  1697. state protoimpl.MessageState
  1698. sizeCache protoimpl.SizeCache
  1699. unknownFields protoimpl.UnknownFields
  1700. SheetName string `protobuf:"bytes,1,opt,name=sheetName,proto3" json:"sheetName,omitempty"`
  1701. Sql string `protobuf:"bytes,2,opt,name=sql,proto3" json:"sql,omitempty"`
  1702. }
  1703. func (x *FilesData) Reset() {
  1704. *x = FilesData{}
  1705. if protoimpl.UnsafeEnabled {
  1706. mi := &file_biService_proto_msgTypes[29]
  1707. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1708. ms.StoreMessageInfo(mi)
  1709. }
  1710. }
  1711. func (x *FilesData) String() string {
  1712. return protoimpl.X.MessageStringOf(x)
  1713. }
  1714. func (*FilesData) ProtoMessage() {}
  1715. func (x *FilesData) ProtoReflect() protoreflect.Message {
  1716. mi := &file_biService_proto_msgTypes[29]
  1717. if protoimpl.UnsafeEnabled && x != nil {
  1718. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1719. if ms.LoadMessageInfo() == nil {
  1720. ms.StoreMessageInfo(mi)
  1721. }
  1722. return ms
  1723. }
  1724. return mi.MessageOf(x)
  1725. }
  1726. // Deprecated: Use FilesData.ProtoReflect.Descriptor instead.
  1727. func (*FilesData) Descriptor() ([]byte, []int) {
  1728. return file_biService_proto_rawDescGZIP(), []int{29}
  1729. }
  1730. func (x *FilesData) GetSheetName() string {
  1731. if x != nil {
  1732. return x.SheetName
  1733. }
  1734. return ""
  1735. }
  1736. func (x *FilesData) GetSql() string {
  1737. if x != nil {
  1738. return x.Sql
  1739. }
  1740. return ""
  1741. }
  1742. type UpFileReq struct {
  1743. state protoimpl.MessageState
  1744. sizeCache protoimpl.SizeCache
  1745. unknownFields protoimpl.UnknownFields
  1746. AppId string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
  1747. UserId int64 `protobuf:"varint,2,opt,name=userId,proto3" json:"userId,omitempty"`
  1748. PositionId int64 `protobuf:"varint,3,opt,name=positionId,proto3" json:"positionId,omitempty"`
  1749. EntUserId int64 `protobuf:"varint,4,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  1750. EntId int64 `protobuf:"varint,5,opt,name=entId,proto3" json:"entId,omitempty"`
  1751. Stype string `protobuf:"bytes,6,opt,name=stype,proto3" json:"stype,omitempty"`
  1752. File []byte `protobuf:"bytes,7,opt,name=file,proto3" json:"file,omitempty"`
  1753. FileName string `protobuf:"bytes,8,opt,name=fileName,proto3" json:"fileName,omitempty"`
  1754. FileSize string `protobuf:"bytes,9,opt,name=fileSize,proto3" json:"fileSize,omitempty"`
  1755. }
  1756. func (x *UpFileReq) Reset() {
  1757. *x = UpFileReq{}
  1758. if protoimpl.UnsafeEnabled {
  1759. mi := &file_biService_proto_msgTypes[30]
  1760. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1761. ms.StoreMessageInfo(mi)
  1762. }
  1763. }
  1764. func (x *UpFileReq) String() string {
  1765. return protoimpl.X.MessageStringOf(x)
  1766. }
  1767. func (*UpFileReq) ProtoMessage() {}
  1768. func (x *UpFileReq) ProtoReflect() protoreflect.Message {
  1769. mi := &file_biService_proto_msgTypes[30]
  1770. if protoimpl.UnsafeEnabled && x != nil {
  1771. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1772. if ms.LoadMessageInfo() == nil {
  1773. ms.StoreMessageInfo(mi)
  1774. }
  1775. return ms
  1776. }
  1777. return mi.MessageOf(x)
  1778. }
  1779. // Deprecated: Use UpFileReq.ProtoReflect.Descriptor instead.
  1780. func (*UpFileReq) Descriptor() ([]byte, []int) {
  1781. return file_biService_proto_rawDescGZIP(), []int{30}
  1782. }
  1783. func (x *UpFileReq) GetAppId() string {
  1784. if x != nil {
  1785. return x.AppId
  1786. }
  1787. return ""
  1788. }
  1789. func (x *UpFileReq) GetUserId() int64 {
  1790. if x != nil {
  1791. return x.UserId
  1792. }
  1793. return 0
  1794. }
  1795. func (x *UpFileReq) GetPositionId() int64 {
  1796. if x != nil {
  1797. return x.PositionId
  1798. }
  1799. return 0
  1800. }
  1801. func (x *UpFileReq) GetEntUserId() int64 {
  1802. if x != nil {
  1803. return x.EntUserId
  1804. }
  1805. return 0
  1806. }
  1807. func (x *UpFileReq) GetEntId() int64 {
  1808. if x != nil {
  1809. return x.EntId
  1810. }
  1811. return 0
  1812. }
  1813. func (x *UpFileReq) GetStype() string {
  1814. if x != nil {
  1815. return x.Stype
  1816. }
  1817. return ""
  1818. }
  1819. func (x *UpFileReq) GetFile() []byte {
  1820. if x != nil {
  1821. return x.File
  1822. }
  1823. return nil
  1824. }
  1825. func (x *UpFileReq) GetFileName() string {
  1826. if x != nil {
  1827. return x.FileName
  1828. }
  1829. return ""
  1830. }
  1831. func (x *UpFileReq) GetFileSize() string {
  1832. if x != nil {
  1833. return x.FileSize
  1834. }
  1835. return ""
  1836. }
  1837. var File_biService_proto protoreflect.FileDescriptor
  1838. var file_biService_proto_rawDesc = []byte{
  1839. 0x0a, 0x0f, 0x62, 0x69, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1840. 0x6f, 0x22, 0x64, 0x0a, 0x0e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74,
  1841. 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20,
  1842. 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x6e,
  1843. 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  1844. 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74,
  1845. 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e,
  1846. 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x6f, 0x0a, 0x0f, 0x4d, 0x79, 0x44, 0x61, 0x74,
  1847. 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72,
  1848. 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  1849. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72,
  1850. 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72,
  1851. 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03,
  1852. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73,
  1853. 0x65, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xf3, 0x01, 0x0a, 0x0b, 0x4d, 0x79, 0x44,
  1854. 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x2c, 0x0a, 0x12, 0x63, 0x6f, 0x6c, 0x6c,
  1855. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01,
  1856. 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x66,
  1857. 0x6f, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77,
  1858. 0x5f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02,
  1859. 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x50, 0x72, 0x6f, 0x6a,
  1860. 0x65, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x6f, 0x6c, 0x6c,
  1861. 0x65, 0x63, 0x74, 0x5f, 0x64, 0x6f, 0x63, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20,
  1862. 0x01, 0x28, 0x03, 0x52, 0x0f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x44, 0x6f, 0x63, 0x43,
  1863. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x5f, 0x63, 0x75,
  1864. 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01,
  1865. 0x28, 0x03, 0x52, 0x12, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  1866. 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x5f,
  1867. 0x6e, 0x7a, 0x6a, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
  1868. 0x0d, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x4e, 0x7a, 0x6a, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xb5,
  1869. 0x02, 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71,
  1870. 0x12, 0x17, 0x0a, 0x07, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1871. 0x09, 0x52, 0x06, 0x69, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75,
  1872. 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63,
  1873. 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64,
  1874. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  1875. 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74,
  1876. 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74,
  1877. 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75,
  1878. 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x61, 0x63, 0x63,
  1879. 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e,
  1880. 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f,
  1881. 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65,
  1882. 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,
  1883. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  1884. 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14,
  1885. 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65,
  1886. 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e,
  1887. 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73,
  1888. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x6d, 0x0a, 0x0e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f,
  1889. 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f,
  1890. 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72,
  1891. 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  1892. 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f,
  1893. 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01,
  1894. 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
  1895. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3a, 0x0a, 0x0a, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a,
  1896. 0x65, 0x63, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20,
  1897. 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x63,
  1898. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e,
  1899. 0x74, 0x22, 0x5f, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x52, 0x65,
  1900. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  1901. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  1902. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  1903. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12,
  1904. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61,
  1905. 0x74, 0x61, 0x22, 0x43, 0x0a, 0x0b, 0x44, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65,
  1906. 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18,
  1907. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  1908. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1909. 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x40, 0x0a, 0x07, 0x43, 0x61, 0x6c, 0x6c, 0x52,
  1910. 0x65, 0x71, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,
  1911. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
  1912. 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01,
  1913. 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x58, 0x0a, 0x06, 0x42, 0x69, 0x52,
  1914. 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
  1915. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
  1916. 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
  1917. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
  1918. 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64,
  1919. 0x61, 0x74, 0x61, 0x22, 0x59, 0x0a, 0x07, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1d,
  1920. 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
  1921. 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a,
  1922. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1923. 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61,
  1924. 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xb1,
  1925. 0x01, 0x0a, 0x11, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75,
  1926. 0x65, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75, 0x6e,
  1927. 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75,
  1928. 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74,
  1929. 0x18, 0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69,
  1930. 0x73, 0x74, 0x12, 0x26, 0x0a, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  1931. 0x0b, 0x32, 0x10, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x44, 0x61,
  1932. 0x74, 0x61, 0x73, 0x52, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f,
  1933. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  1934. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73,
  1935. 0x54, 0x61, 0x73, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x69, 0x73, 0x54, 0x61,
  1936. 0x73, 0x6b, 0x22, 0xbd, 0x01, 0x0a, 0x0f, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
  1937. 0x65, 0x44, 0x61, 0x74, 0x61, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
  1938. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f,
  1939. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  1940. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x6f,
  1941. 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  1942. 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x6e,
  1943. 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04,
  1944. 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x75, 0x6e, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65,
  1945. 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69,
  1946. 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  1947. 0x52, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75,
  1948. 0x6e, 0x74, 0x22, 0x43, 0x0a, 0x0d, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  1949. 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x63, 0x62, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28,
  1950. 0x09, 0x52, 0x04, 0x70, 0x63, 0x62, 0x68, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74,
  1951. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73,
  1952. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x6d, 0x0a, 0x0e, 0x43, 0x6c, 0x75, 0x65, 0x49,
  1953. 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72,
  1954. 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65,
  1955. 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f,
  1956. 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72,
  1957. 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20,
  1958. 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  1959. 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3c, 0x0a, 0x0a, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d,
  1960. 0x70, 0x6f, 0x72, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01,
  1961. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06,
  1962. 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65,
  1963. 0x73, 0x75, 0x6c, 0x74, 0x22, 0xa6, 0x03, 0x0a, 0x0a, 0x43, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x64,
  1964. 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01,
  1965. 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65,
  1966. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
  1967. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18,
  1968. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x1c, 0x0a,
  1969. 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x39, 0x39, 0x39, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  1970. 0x52, 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x39, 0x39, 0x39, 0x12, 0x14, 0x0a, 0x05, 0x6f,
  1971. 0x77, 0x6e, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x77, 0x6e, 0x65,
  1972. 0x72, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x70, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  1973. 0x52, 0x05, 0x65, 0x6d, 0x70, 0x4e, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61,
  1974. 0x6e, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e,
  1975. 0x79, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x73, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x6d, 0x61, 0x6b,
  1976. 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x69, 0x73, 0x50, 0x6f, 0x6c, 0x69,
  1977. 0x63, 0x79, 0x6d, 0x61, 0x6b, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x62, 0x65, 0x6c, 0x6f, 0x6e,
  1978. 0x67, 0x54, 0x6f, 0x49, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28,
  1979. 0x09, 0x52, 0x10, 0x62, 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x49, 0x6e, 0x64, 0x75, 0x73,
  1980. 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6a, 0x6f, 0x62, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  1981. 0x52, 0x03, 0x6a, 0x6f, 0x62, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  1982. 0x72, 0x4e, 0x65, 0x65, 0x64, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x75,
  1983. 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x65, 0x64, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x62,
  1984. 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62,
  1985. 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x77, 0x61, 0x6e, 0x74, 0x47,
  1986. 0x6f, 0x6f, 0x64, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x77, 0x61, 0x6e, 0x74,
  1987. 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  1988. 0x72, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x63,
  1989. 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x22, 0x3e, 0x0a,
  1990. 0x0c, 0x53, 0x71, 0x6c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a,
  1991. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x02, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a,
  1992. 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e,
  1993. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x2f, 0x0a,
  1994. 0x09, 0x4d, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x69,
  1995. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x62, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03,
  1996. 0x73, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x69, 0x64, 0x22, 0x31,
  1997. 0x0a, 0x05, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  1998. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x12, 0x0a,
  1999. 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70,
  2000. 0x65, 0x22, 0x59, 0x0a, 0x09, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12,
  2001. 0x0a, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x61,
  2002. 0x69, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20,
  2003. 0x03, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x1e, 0x0a, 0x0a,
  2004. 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  2005. 0x52, 0x0a, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x36, 0x0a, 0x0a,
  2006. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x65,
  2007. 0x77, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x65, 0x77, 0x49, 0x64,
  2008. 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
  2009. 0x74, 0x79, 0x70, 0x65, 0x22, 0x2e, 0x0a, 0x0a, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x52,
  2010. 0x65, 0x71, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x4e, 0x61, 0x6d,
  2011. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79,
  2012. 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x25, 0x0a, 0x0b, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x52,
  2013. 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20,
  2014. 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xe3, 0x01, 0x0a, 0x15,
  2015. 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68,
  2016. 0x6f, 0x77, 0x52, 0x65, 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
  2017. 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74,
  2018. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70,
  2019. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70,
  2020. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18,
  2021. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73,
  2022. 0x74, 0x12, 0x2a, 0x0a, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
  2023. 0x32, 0x14, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75,
  2024. 0x65, 0x53, 0x68, 0x6f, 0x77, 0x73, 0x52, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x12, 0x16, 0x0a,
  2025. 0x06, 0x49, 0x73, 0x54, 0x61, 0x73, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x49,
  2026. 0x73, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x2a, 0x0a, 0x10, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50,
  2027. 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52,
  2028. 0x10, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  2029. 0x44, 0x22, 0x61, 0x0a, 0x13, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43,
  2030. 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69,
  2031. 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f,
  2032. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x10, 0x64, 0x69, 0x73, 0x74,
  2033. 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01,
  2034. 0x28, 0x03, 0x52, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43,
  2035. 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x80, 0x02, 0x0a, 0x14, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62,
  2036. 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x73, 0x73, 0x12, 0x1e, 0x0a,
  2037. 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2038. 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a,
  2039. 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20,
  2040. 0x01, 0x28, 0x03, 0x52, 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x43, 0x6f, 0x75, 0x6e,
  2041. 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03,
  2042. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12,
  2043. 0x1a, 0x0a, 0x08, 0x6d, 0x69, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  2044. 0x03, 0x52, 0x08, 0x6d, 0x69, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x63,
  2045. 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x18, 0x05, 0x20, 0x01,
  2046. 0x28, 0x03, 0x52, 0x0d, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74,
  2047. 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x75,
  2048. 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69,
  2049. 0x6e, 0x67, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x46, 0x75, 0x6c, 0x6c, 0x53,
  2050. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x46, 0x75, 0x6c,
  2051. 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x7f, 0x0a, 0x16, 0x44, 0x69, 0x73, 0x74, 0x72,
  2052. 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73,
  2053. 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
  2054. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65,
  2055. 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  2056. 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x29, 0x0a,
  2057. 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x44, 0x69,
  2058. 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77,
  2059. 0x73, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xa9, 0x01, 0x0a, 0x0d, 0x45, 0x78, 0x70,
  2060. 0x6f, 0x72, 0x74, 0x42, 0x79, 0x44, 0x62, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
  2061. 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e,
  2062. 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2063. 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  2064. 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  2065. 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  2066. 0x05, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61,
  2067. 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61,
  2068. 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28,
  2069. 0x0b, 0x32, 0x0a, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x44, 0x61, 0x74, 0x61, 0x52, 0x05, 0x64,
  2070. 0x61, 0x74, 0x61, 0x73, 0x22, 0x3b, 0x0a, 0x09, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x44, 0x61, 0x74,
  2071. 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x68, 0x65, 0x65, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01,
  2072. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x68, 0x65, 0x65, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12,
  2073. 0x10, 0x0a, 0x03, 0x73, 0x71, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x71,
  2074. 0x6c, 0x22, 0xef, 0x01, 0x0a, 0x09, 0x55, 0x70, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12,
  2075. 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2076. 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2077. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  2078. 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
  2079. 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a,
  2080. 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  2081. 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65,
  2082. 0x6e, 0x74, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49,
  2083. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  2084. 0x52, 0x05, 0x73, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x18,
  2085. 0x07, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66,
  2086. 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66,
  2087. 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53,
  2088. 0x69, 0x7a, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53,
  2089. 0x69, 0x7a, 0x65, 0x32, 0xbf, 0x06, 0x0a, 0x09, 0x42, 0x69, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
  2090. 0x65, 0x12, 0x30, 0x0a, 0x0b, 0x6d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74,
  2091. 0x12, 0x0f, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65,
  2092. 0x71, 0x1a, 0x10, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52,
  2093. 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0a, 0x61, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  2094. 0x74, 0x12, 0x0e, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65,
  2095. 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65,
  2096. 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x09, 0x67, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12,
  2097. 0x0e, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x1a,
  2098. 0x0e, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12,
  2099. 0x29, 0x0a, 0x08, 0x64, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x12, 0x0c, 0x2e, 0x44, 0x72,
  2100. 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50,
  2101. 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x19, 0x0a, 0x04, 0x43, 0x61,
  2102. 0x6c, 0x6c, 0x12, 0x08, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x07, 0x2e, 0x42,
  2103. 0x69, 0x52, 0x65, 0x73, 0x70, 0x12, 0x35, 0x0a, 0x0e, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62,
  2104. 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x12, 0x12, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69,
  2105. 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64,
  2106. 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0a,
  2107. 0x63, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x0e, 0x2e, 0x43, 0x6c, 0x75,
  2108. 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x43, 0x6c, 0x75,
  2109. 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x07, 0x63,
  2110. 0x6c, 0x75, 0x65, 0x41, 0x64, 0x64, 0x12, 0x0b, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x64,
  2111. 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
  2112. 0x52, 0x65, 0x73, 0x70, 0x12, 0x2f, 0x0a, 0x0c, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f,
  2113. 0x72, 0x74, 0x54, 0x74, 0x12, 0x0e, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72,
  2114. 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72,
  2115. 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x46, 0x6f, 0x6c,
  2116. 0x6c, 0x6f, 0x77, 0x12, 0x08, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e,
  2117. 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x24,
  2118. 0x0a, 0x09, 0x73, 0x71, 0x6c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x12, 0x0d, 0x2e, 0x53, 0x71,
  2119. 0x6c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52,
  2120. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a, 0x06, 0x6d, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0a,
  2121. 0x2e, 0x4d, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52,
  2122. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x25, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x45,
  2123. 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x0a, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65,
  2124. 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x10, 0x61,
  2125. 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12,
  2126. 0x0a, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69,
  2127. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x24, 0x0a, 0x0b, 0x69, 0x6e, 0x66, 0x6f, 0x4f, 0x70, 0x65,
  2128. 0x72, 0x61, 0x74, 0x65, 0x12, 0x0b, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65,
  2129. 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2b, 0x0a, 0x0e, 0x67,
  2130. 0x65, 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0b, 0x2e,
  2131. 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x43, 0x6f, 0x6d,
  2132. 0x70, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x45, 0x0a, 0x12, 0x64, 0x69, 0x73, 0x74,
  2133. 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x12, 0x16,
  2134. 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53,
  2135. 0x68, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62,
  2136. 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70, 0x12,
  2137. 0x24, 0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x0e, 0x2e, 0x45, 0x78,
  2138. 0x70, 0x6f, 0x72, 0x74, 0x42, 0x79, 0x44, 0x62, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69,
  2139. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a, 0x06, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x65, 0x12,
  2140. 0x0a, 0x2e, 0x55, 0x70, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69,
  2141. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70,
  2142. 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2143. }
  2144. var (
  2145. file_biService_proto_rawDescOnce sync.Once
  2146. file_biService_proto_rawDescData = file_biService_proto_rawDesc
  2147. )
  2148. func file_biService_proto_rawDescGZIP() []byte {
  2149. file_biService_proto_rawDescOnce.Do(func() {
  2150. file_biService_proto_rawDescData = protoimpl.X.CompressGZIP(file_biService_proto_rawDescData)
  2151. })
  2152. return file_biService_proto_rawDescData
  2153. }
  2154. var file_biService_proto_msgTypes = make([]protoimpl.MessageInfo, 31)
  2155. var file_biService_proto_goTypes = []interface{}{
  2156. (*MyDataAssetReq)(nil), // 0: MyDataAssetReq
  2157. (*MyDataAssetResp)(nil), // 1: MyDataAssetResp
  2158. (*MyDataAsset)(nil), // 2: MyDataAsset
  2159. (*AddProjectReq)(nil), // 3: AddProjectReq
  2160. (*AddProjectResp)(nil), // 4: AddProjectResp
  2161. (*AddProject)(nil), // 5: AddProject
  2162. (*GetInfoIdResp)(nil), // 6: GetInfoIdResp
  2163. (*DrawClueReq)(nil), // 7: DrawClueReq
  2164. (*CallReq)(nil), // 8: CallReq
  2165. (*BiResp)(nil), // 9: BiResp
  2166. (*BiReply)(nil), // 10: BiReply
  2167. (*DistributeClueReq)(nil), // 11: DistributeClueReq
  2168. (*DistributeDatas)(nil), // 12: DistributeDatas
  2169. (*ClueImportReq)(nil), // 13: ClueImportReq
  2170. (*ClueImportResp)(nil), // 14: ClueImportResp
  2171. (*ClueImport)(nil), // 15: ClueImport
  2172. (*ClueAddReq)(nil), // 16: ClueAddReq
  2173. (*SqlManageReq)(nil), // 17: SqlManageReq
  2174. (*MyInfoReq)(nil), // 18: MyInfoReq
  2175. (*Param)(nil), // 19: Param
  2176. (*ExportReq)(nil), // 20: ExportReq
  2177. (*OperateReq)(nil), // 21: OperateReq
  2178. (*CompanyReq)(nil), // 22: CompanyReq
  2179. (*CompanyResp)(nil), // 23: CompanyResp
  2180. (*DistributeClueShowReq)(nil), // 24: DistributeClueShowReq
  2181. (*DistributeClueShows)(nil), // 25: DistributeClueShows
  2182. (*DistributeClueShowss)(nil), // 26: DistributeClueShowss
  2183. (*DistributeClueShowResp)(nil), // 27: DistributeClueShowResp
  2184. (*ExportByDbReq)(nil), // 28: ExportByDbReq
  2185. (*FilesData)(nil), // 29: FilesData
  2186. (*UpFileReq)(nil), // 30: UpFileReq
  2187. }
  2188. var file_biService_proto_depIdxs = []int32{
  2189. 2, // 0: MyDataAssetResp.data:type_name -> MyDataAsset
  2190. 5, // 1: AddProjectResp.data:type_name -> AddProject
  2191. 12, // 2: DistributeClueReq.datas:type_name -> DistributeDatas
  2192. 15, // 3: ClueImportResp.data:type_name -> ClueImport
  2193. 19, // 4: SqlManageReq.params:type_name -> Param
  2194. 25, // 5: DistributeClueShowReq.datas:type_name -> DistributeClueShows
  2195. 26, // 6: DistributeClueShowResp.data:type_name -> DistributeClueShowss
  2196. 29, // 7: ExportByDbReq.datas:type_name -> FilesData
  2197. 0, // 8: BiService.myDataAsset:input_type -> MyDataAssetReq
  2198. 3, // 9: BiService.addProject:input_type -> AddProjectReq
  2199. 3, // 10: BiService.getInfoId:input_type -> AddProjectReq
  2200. 7, // 11: BiService.drawClue:input_type -> DrawClueReq
  2201. 8, // 12: BiService.Call:input_type -> CallReq
  2202. 11, // 13: BiService.distributeClue:input_type -> DistributeClueReq
  2203. 13, // 14: BiService.clueImport:input_type -> ClueImportReq
  2204. 16, // 15: BiService.clueAdd:input_type -> ClueAddReq
  2205. 13, // 16: BiService.clueImportTt:input_type -> ClueImportReq
  2206. 8, // 17: BiService.autoFollow:input_type -> CallReq
  2207. 17, // 18: BiService.sqlManage:input_type -> SqlManageReq
  2208. 18, // 19: BiService.myInfo:input_type -> MyInfoReq
  2209. 20, // 20: BiService.allInfoExport:input_type -> ExportReq
  2210. 20, // 21: BiService.allProjectExport:input_type -> ExportReq
  2211. 21, // 22: BiService.infoOperate:input_type -> OperateReq
  2212. 22, // 23: BiService.getCompanyType:input_type -> CompanyReq
  2213. 24, // 24: BiService.distributeClueShow:input_type -> DistributeClueShowReq
  2214. 28, // 25: BiService.sendMail:input_type -> ExportByDbReq
  2215. 30, // 26: BiService.upFile:input_type -> UpFileReq
  2216. 1, // 27: BiService.myDataAsset:output_type -> MyDataAssetResp
  2217. 4, // 28: BiService.addProject:output_type -> AddProjectResp
  2218. 6, // 29: BiService.getInfoId:output_type -> GetInfoIdResp
  2219. 4, // 30: BiService.drawClue:output_type -> AddProjectResp
  2220. 9, // 31: BiService.Call:output_type -> BiResp
  2221. 4, // 32: BiService.distributeClue:output_type -> AddProjectResp
  2222. 14, // 33: BiService.clueImport:output_type -> ClueImportResp
  2223. 4, // 34: BiService.clueAdd:output_type -> AddProjectResp
  2224. 14, // 35: BiService.clueImportTt:output_type -> ClueImportResp
  2225. 14, // 36: BiService.autoFollow:output_type -> ClueImportResp
  2226. 10, // 37: BiService.sqlManage:output_type -> BiReply
  2227. 10, // 38: BiService.myInfo:output_type -> BiReply
  2228. 10, // 39: BiService.allInfoExport:output_type -> BiReply
  2229. 10, // 40: BiService.allProjectExport:output_type -> BiReply
  2230. 10, // 41: BiService.infoOperate:output_type -> BiReply
  2231. 23, // 42: BiService.getCompanyType:output_type -> CompanyResp
  2232. 27, // 43: BiService.distributeClueShow:output_type -> DistributeClueShowResp
  2233. 10, // 44: BiService.sendMail:output_type -> BiReply
  2234. 10, // 45: BiService.upFile:output_type -> BiReply
  2235. 27, // [27:46] is the sub-list for method output_type
  2236. 8, // [8:27] is the sub-list for method input_type
  2237. 8, // [8:8] is the sub-list for extension type_name
  2238. 8, // [8:8] is the sub-list for extension extendee
  2239. 0, // [0:8] is the sub-list for field type_name
  2240. }
  2241. func init() { file_biService_proto_init() }
  2242. func file_biService_proto_init() {
  2243. if File_biService_proto != nil {
  2244. return
  2245. }
  2246. if !protoimpl.UnsafeEnabled {
  2247. file_biService_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2248. switch v := v.(*MyDataAssetReq); i {
  2249. case 0:
  2250. return &v.state
  2251. case 1:
  2252. return &v.sizeCache
  2253. case 2:
  2254. return &v.unknownFields
  2255. default:
  2256. return nil
  2257. }
  2258. }
  2259. file_biService_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2260. switch v := v.(*MyDataAssetResp); i {
  2261. case 0:
  2262. return &v.state
  2263. case 1:
  2264. return &v.sizeCache
  2265. case 2:
  2266. return &v.unknownFields
  2267. default:
  2268. return nil
  2269. }
  2270. }
  2271. file_biService_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2272. switch v := v.(*MyDataAsset); i {
  2273. case 0:
  2274. return &v.state
  2275. case 1:
  2276. return &v.sizeCache
  2277. case 2:
  2278. return &v.unknownFields
  2279. default:
  2280. return nil
  2281. }
  2282. }
  2283. file_biService_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2284. switch v := v.(*AddProjectReq); i {
  2285. case 0:
  2286. return &v.state
  2287. case 1:
  2288. return &v.sizeCache
  2289. case 2:
  2290. return &v.unknownFields
  2291. default:
  2292. return nil
  2293. }
  2294. }
  2295. file_biService_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2296. switch v := v.(*AddProjectResp); i {
  2297. case 0:
  2298. return &v.state
  2299. case 1:
  2300. return &v.sizeCache
  2301. case 2:
  2302. return &v.unknownFields
  2303. default:
  2304. return nil
  2305. }
  2306. }
  2307. file_biService_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2308. switch v := v.(*AddProject); i {
  2309. case 0:
  2310. return &v.state
  2311. case 1:
  2312. return &v.sizeCache
  2313. case 2:
  2314. return &v.unknownFields
  2315. default:
  2316. return nil
  2317. }
  2318. }
  2319. file_biService_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2320. switch v := v.(*GetInfoIdResp); i {
  2321. case 0:
  2322. return &v.state
  2323. case 1:
  2324. return &v.sizeCache
  2325. case 2:
  2326. return &v.unknownFields
  2327. default:
  2328. return nil
  2329. }
  2330. }
  2331. file_biService_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2332. switch v := v.(*DrawClueReq); i {
  2333. case 0:
  2334. return &v.state
  2335. case 1:
  2336. return &v.sizeCache
  2337. case 2:
  2338. return &v.unknownFields
  2339. default:
  2340. return nil
  2341. }
  2342. }
  2343. file_biService_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2344. switch v := v.(*CallReq); i {
  2345. case 0:
  2346. return &v.state
  2347. case 1:
  2348. return &v.sizeCache
  2349. case 2:
  2350. return &v.unknownFields
  2351. default:
  2352. return nil
  2353. }
  2354. }
  2355. file_biService_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2356. switch v := v.(*BiResp); i {
  2357. case 0:
  2358. return &v.state
  2359. case 1:
  2360. return &v.sizeCache
  2361. case 2:
  2362. return &v.unknownFields
  2363. default:
  2364. return nil
  2365. }
  2366. }
  2367. file_biService_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2368. switch v := v.(*BiReply); i {
  2369. case 0:
  2370. return &v.state
  2371. case 1:
  2372. return &v.sizeCache
  2373. case 2:
  2374. return &v.unknownFields
  2375. default:
  2376. return nil
  2377. }
  2378. }
  2379. file_biService_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2380. switch v := v.(*DistributeClueReq); i {
  2381. case 0:
  2382. return &v.state
  2383. case 1:
  2384. return &v.sizeCache
  2385. case 2:
  2386. return &v.unknownFields
  2387. default:
  2388. return nil
  2389. }
  2390. }
  2391. file_biService_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2392. switch v := v.(*DistributeDatas); i {
  2393. case 0:
  2394. return &v.state
  2395. case 1:
  2396. return &v.sizeCache
  2397. case 2:
  2398. return &v.unknownFields
  2399. default:
  2400. return nil
  2401. }
  2402. }
  2403. file_biService_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2404. switch v := v.(*ClueImportReq); i {
  2405. case 0:
  2406. return &v.state
  2407. case 1:
  2408. return &v.sizeCache
  2409. case 2:
  2410. return &v.unknownFields
  2411. default:
  2412. return nil
  2413. }
  2414. }
  2415. file_biService_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2416. switch v := v.(*ClueImportResp); i {
  2417. case 0:
  2418. return &v.state
  2419. case 1:
  2420. return &v.sizeCache
  2421. case 2:
  2422. return &v.unknownFields
  2423. default:
  2424. return nil
  2425. }
  2426. }
  2427. file_biService_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2428. switch v := v.(*ClueImport); i {
  2429. case 0:
  2430. return &v.state
  2431. case 1:
  2432. return &v.sizeCache
  2433. case 2:
  2434. return &v.unknownFields
  2435. default:
  2436. return nil
  2437. }
  2438. }
  2439. file_biService_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2440. switch v := v.(*ClueAddReq); i {
  2441. case 0:
  2442. return &v.state
  2443. case 1:
  2444. return &v.sizeCache
  2445. case 2:
  2446. return &v.unknownFields
  2447. default:
  2448. return nil
  2449. }
  2450. }
  2451. file_biService_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2452. switch v := v.(*SqlManageReq); i {
  2453. case 0:
  2454. return &v.state
  2455. case 1:
  2456. return &v.sizeCache
  2457. case 2:
  2458. return &v.unknownFields
  2459. default:
  2460. return nil
  2461. }
  2462. }
  2463. file_biService_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2464. switch v := v.(*MyInfoReq); i {
  2465. case 0:
  2466. return &v.state
  2467. case 1:
  2468. return &v.sizeCache
  2469. case 2:
  2470. return &v.unknownFields
  2471. default:
  2472. return nil
  2473. }
  2474. }
  2475. file_biService_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2476. switch v := v.(*Param); i {
  2477. case 0:
  2478. return &v.state
  2479. case 1:
  2480. return &v.sizeCache
  2481. case 2:
  2482. return &v.unknownFields
  2483. default:
  2484. return nil
  2485. }
  2486. }
  2487. file_biService_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2488. switch v := v.(*ExportReq); i {
  2489. case 0:
  2490. return &v.state
  2491. case 1:
  2492. return &v.sizeCache
  2493. case 2:
  2494. return &v.unknownFields
  2495. default:
  2496. return nil
  2497. }
  2498. }
  2499. file_biService_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2500. switch v := v.(*OperateReq); i {
  2501. case 0:
  2502. return &v.state
  2503. case 1:
  2504. return &v.sizeCache
  2505. case 2:
  2506. return &v.unknownFields
  2507. default:
  2508. return nil
  2509. }
  2510. }
  2511. file_biService_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2512. switch v := v.(*CompanyReq); i {
  2513. case 0:
  2514. return &v.state
  2515. case 1:
  2516. return &v.sizeCache
  2517. case 2:
  2518. return &v.unknownFields
  2519. default:
  2520. return nil
  2521. }
  2522. }
  2523. file_biService_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2524. switch v := v.(*CompanyResp); i {
  2525. case 0:
  2526. return &v.state
  2527. case 1:
  2528. return &v.sizeCache
  2529. case 2:
  2530. return &v.unknownFields
  2531. default:
  2532. return nil
  2533. }
  2534. }
  2535. file_biService_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2536. switch v := v.(*DistributeClueShowReq); i {
  2537. case 0:
  2538. return &v.state
  2539. case 1:
  2540. return &v.sizeCache
  2541. case 2:
  2542. return &v.unknownFields
  2543. default:
  2544. return nil
  2545. }
  2546. }
  2547. file_biService_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2548. switch v := v.(*DistributeClueShows); i {
  2549. case 0:
  2550. return &v.state
  2551. case 1:
  2552. return &v.sizeCache
  2553. case 2:
  2554. return &v.unknownFields
  2555. default:
  2556. return nil
  2557. }
  2558. }
  2559. file_biService_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2560. switch v := v.(*DistributeClueShowss); i {
  2561. case 0:
  2562. return &v.state
  2563. case 1:
  2564. return &v.sizeCache
  2565. case 2:
  2566. return &v.unknownFields
  2567. default:
  2568. return nil
  2569. }
  2570. }
  2571. file_biService_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2572. switch v := v.(*DistributeClueShowResp); i {
  2573. case 0:
  2574. return &v.state
  2575. case 1:
  2576. return &v.sizeCache
  2577. case 2:
  2578. return &v.unknownFields
  2579. default:
  2580. return nil
  2581. }
  2582. }
  2583. file_biService_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  2584. switch v := v.(*ExportByDbReq); i {
  2585. case 0:
  2586. return &v.state
  2587. case 1:
  2588. return &v.sizeCache
  2589. case 2:
  2590. return &v.unknownFields
  2591. default:
  2592. return nil
  2593. }
  2594. }
  2595. file_biService_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  2596. switch v := v.(*FilesData); i {
  2597. case 0:
  2598. return &v.state
  2599. case 1:
  2600. return &v.sizeCache
  2601. case 2:
  2602. return &v.unknownFields
  2603. default:
  2604. return nil
  2605. }
  2606. }
  2607. file_biService_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  2608. switch v := v.(*UpFileReq); i {
  2609. case 0:
  2610. return &v.state
  2611. case 1:
  2612. return &v.sizeCache
  2613. case 2:
  2614. return &v.unknownFields
  2615. default:
  2616. return nil
  2617. }
  2618. }
  2619. }
  2620. type x struct{}
  2621. out := protoimpl.TypeBuilder{
  2622. File: protoimpl.DescBuilder{
  2623. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2624. RawDescriptor: file_biService_proto_rawDesc,
  2625. NumEnums: 0,
  2626. NumMessages: 31,
  2627. NumExtensions: 0,
  2628. NumServices: 1,
  2629. },
  2630. GoTypes: file_biService_proto_goTypes,
  2631. DependencyIndexes: file_biService_proto_depIdxs,
  2632. MessageInfos: file_biService_proto_msgTypes,
  2633. }.Build()
  2634. File_biService_proto = out.File
  2635. file_biService_proto_rawDesc = nil
  2636. file_biService_proto_goTypes = nil
  2637. file_biService_proto_depIdxs = nil
  2638. }