biService.pb.go 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.31.0
  4. // protoc v3.15.1
  5. // source: biService.proto
  6. package pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type MyDataAssetReq struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
  24. NewUserId int64 `protobuf:"varint,2,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
  25. EntUserId int64 `protobuf:"varint,3,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
  26. }
  27. func (x *MyDataAssetReq) Reset() {
  28. *x = MyDataAssetReq{}
  29. if protoimpl.UnsafeEnabled {
  30. mi := &file_biService_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. }
  35. func (x *MyDataAssetReq) String() string {
  36. return protoimpl.X.MessageStringOf(x)
  37. }
  38. func (*MyDataAssetReq) ProtoMessage() {}
  39. func (x *MyDataAssetReq) ProtoReflect() protoreflect.Message {
  40. mi := &file_biService_proto_msgTypes[0]
  41. if protoimpl.UnsafeEnabled && x != nil {
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. if ms.LoadMessageInfo() == nil {
  44. ms.StoreMessageInfo(mi)
  45. }
  46. return ms
  47. }
  48. return mi.MessageOf(x)
  49. }
  50. // Deprecated: Use MyDataAssetReq.ProtoReflect.Descriptor instead.
  51. func (*MyDataAssetReq) Descriptor() ([]byte, []int) {
  52. return file_biService_proto_rawDescGZIP(), []int{0}
  53. }
  54. func (x *MyDataAssetReq) GetUserId() string {
  55. if x != nil {
  56. return x.UserId
  57. }
  58. return ""
  59. }
  60. func (x *MyDataAssetReq) GetNewUserId() int64 {
  61. if x != nil {
  62. return x.NewUserId
  63. }
  64. return 0
  65. }
  66. func (x *MyDataAssetReq) GetEntUserId() int64 {
  67. if x != nil {
  68. return x.EntUserId
  69. }
  70. return 0
  71. }
  72. type MyDataAssetResp struct {
  73. state protoimpl.MessageState
  74. sizeCache protoimpl.SizeCache
  75. unknownFields protoimpl.UnknownFields
  76. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  77. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  78. Data *MyDataAsset `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  79. }
  80. func (x *MyDataAssetResp) Reset() {
  81. *x = MyDataAssetResp{}
  82. if protoimpl.UnsafeEnabled {
  83. mi := &file_biService_proto_msgTypes[1]
  84. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  85. ms.StoreMessageInfo(mi)
  86. }
  87. }
  88. func (x *MyDataAssetResp) String() string {
  89. return protoimpl.X.MessageStringOf(x)
  90. }
  91. func (*MyDataAssetResp) ProtoMessage() {}
  92. func (x *MyDataAssetResp) ProtoReflect() protoreflect.Message {
  93. mi := &file_biService_proto_msgTypes[1]
  94. if protoimpl.UnsafeEnabled && x != nil {
  95. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  96. if ms.LoadMessageInfo() == nil {
  97. ms.StoreMessageInfo(mi)
  98. }
  99. return ms
  100. }
  101. return mi.MessageOf(x)
  102. }
  103. // Deprecated: Use MyDataAssetResp.ProtoReflect.Descriptor instead.
  104. func (*MyDataAssetResp) Descriptor() ([]byte, []int) {
  105. return file_biService_proto_rawDescGZIP(), []int{1}
  106. }
  107. func (x *MyDataAssetResp) GetErrorCode() int64 {
  108. if x != nil {
  109. return x.ErrorCode
  110. }
  111. return 0
  112. }
  113. func (x *MyDataAssetResp) GetErrorMsg() string {
  114. if x != nil {
  115. return x.ErrorMsg
  116. }
  117. return ""
  118. }
  119. func (x *MyDataAssetResp) GetData() *MyDataAsset {
  120. if x != nil {
  121. return x.Data
  122. }
  123. return nil
  124. }
  125. type MyDataAsset struct {
  126. state protoimpl.MessageState
  127. sizeCache protoimpl.SizeCache
  128. unknownFields protoimpl.UnknownFields
  129. CollectInfoCount int64 `protobuf:"varint,1,opt,name=collect_info_count,json=collectInfoCount,proto3" json:"collect_info_count,omitempty"`
  130. FollowProjectCount int64 `protobuf:"varint,2,opt,name=follow_project_count,json=followProjectCount,proto3" json:"follow_project_count,omitempty"`
  131. CollectDocCount int64 `protobuf:"varint,3,opt,name=collect_doc_count,json=collectDocCount,proto3" json:"collect_doc_count,omitempty"`
  132. ClaimCustomerCount int64 `protobuf:"varint,4,opt,name=claim_customer_count,json=claimCustomerCount,proto3" json:"claim_customer_count,omitempty"`
  133. ClaimNzjCount int64 `protobuf:"varint,5,opt,name=claim_nzj_count,json=claimNzjCount,proto3" json:"claim_nzj_count,omitempty"`
  134. }
  135. func (x *MyDataAsset) Reset() {
  136. *x = MyDataAsset{}
  137. if protoimpl.UnsafeEnabled {
  138. mi := &file_biService_proto_msgTypes[2]
  139. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  140. ms.StoreMessageInfo(mi)
  141. }
  142. }
  143. func (x *MyDataAsset) String() string {
  144. return protoimpl.X.MessageStringOf(x)
  145. }
  146. func (*MyDataAsset) ProtoMessage() {}
  147. func (x *MyDataAsset) ProtoReflect() protoreflect.Message {
  148. mi := &file_biService_proto_msgTypes[2]
  149. if protoimpl.UnsafeEnabled && x != nil {
  150. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  151. if ms.LoadMessageInfo() == nil {
  152. ms.StoreMessageInfo(mi)
  153. }
  154. return ms
  155. }
  156. return mi.MessageOf(x)
  157. }
  158. // Deprecated: Use MyDataAsset.ProtoReflect.Descriptor instead.
  159. func (*MyDataAsset) Descriptor() ([]byte, []int) {
  160. return file_biService_proto_rawDescGZIP(), []int{2}
  161. }
  162. func (x *MyDataAsset) GetCollectInfoCount() int64 {
  163. if x != nil {
  164. return x.CollectInfoCount
  165. }
  166. return 0
  167. }
  168. func (x *MyDataAsset) GetFollowProjectCount() int64 {
  169. if x != nil {
  170. return x.FollowProjectCount
  171. }
  172. return 0
  173. }
  174. func (x *MyDataAsset) GetCollectDocCount() int64 {
  175. if x != nil {
  176. return x.CollectDocCount
  177. }
  178. return 0
  179. }
  180. func (x *MyDataAsset) GetClaimCustomerCount() int64 {
  181. if x != nil {
  182. return x.ClaimCustomerCount
  183. }
  184. return 0
  185. }
  186. func (x *MyDataAsset) GetClaimNzjCount() int64 {
  187. if x != nil {
  188. return x.ClaimNzjCount
  189. }
  190. return 0
  191. }
  192. type AddProjectReq struct {
  193. state protoimpl.MessageState
  194. sizeCache protoimpl.SizeCache
  195. unknownFields protoimpl.UnknownFields
  196. InfoId string `protobuf:"bytes,1,opt,name=info_id,json=infoId,proto3" json:"info_id,omitempty"` //信息id
  197. Source int64 `protobuf:"varint,2,opt,name=source,proto3" json:"source,omitempty"` //1-收藏,2-招标搜索,3-关注
  198. PositionId int64 `protobuf:"varint,3,opt,name=position_id,json=positionId,proto3" json:"position_id,omitempty"` //职位id
  199. PositionType int64 `protobuf:"varint,4,opt,name=position_type,json=positionType,proto3" json:"position_type,omitempty"` //职位类型
  200. AccountId int64 `protobuf:"varint,5,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"` //账户id
  201. CompanyName string `protobuf:"bytes,6,opt,name=company_name,json=companyName,proto3" json:"company_name,omitempty"`
  202. UserName string `protobuf:"bytes,7,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
  203. UserId int64 `protobuf:"varint,8,opt,name=userId,proto3" json:"userId,omitempty"`
  204. EntId int64 `protobuf:"varint,9,opt,name=entId,proto3" json:"entId,omitempty"`
  205. EntUserName string `protobuf:"bytes,10,opt,name=entUserName,proto3" json:"entUserName,omitempty"`
  206. }
  207. func (x *AddProjectReq) Reset() {
  208. *x = AddProjectReq{}
  209. if protoimpl.UnsafeEnabled {
  210. mi := &file_biService_proto_msgTypes[3]
  211. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  212. ms.StoreMessageInfo(mi)
  213. }
  214. }
  215. func (x *AddProjectReq) String() string {
  216. return protoimpl.X.MessageStringOf(x)
  217. }
  218. func (*AddProjectReq) ProtoMessage() {}
  219. func (x *AddProjectReq) ProtoReflect() protoreflect.Message {
  220. mi := &file_biService_proto_msgTypes[3]
  221. if protoimpl.UnsafeEnabled && x != nil {
  222. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  223. if ms.LoadMessageInfo() == nil {
  224. ms.StoreMessageInfo(mi)
  225. }
  226. return ms
  227. }
  228. return mi.MessageOf(x)
  229. }
  230. // Deprecated: Use AddProjectReq.ProtoReflect.Descriptor instead.
  231. func (*AddProjectReq) Descriptor() ([]byte, []int) {
  232. return file_biService_proto_rawDescGZIP(), []int{3}
  233. }
  234. func (x *AddProjectReq) GetInfoId() string {
  235. if x != nil {
  236. return x.InfoId
  237. }
  238. return ""
  239. }
  240. func (x *AddProjectReq) GetSource() int64 {
  241. if x != nil {
  242. return x.Source
  243. }
  244. return 0
  245. }
  246. func (x *AddProjectReq) GetPositionId() int64 {
  247. if x != nil {
  248. return x.PositionId
  249. }
  250. return 0
  251. }
  252. func (x *AddProjectReq) GetPositionType() int64 {
  253. if x != nil {
  254. return x.PositionType
  255. }
  256. return 0
  257. }
  258. func (x *AddProjectReq) GetAccountId() int64 {
  259. if x != nil {
  260. return x.AccountId
  261. }
  262. return 0
  263. }
  264. func (x *AddProjectReq) GetCompanyName() string {
  265. if x != nil {
  266. return x.CompanyName
  267. }
  268. return ""
  269. }
  270. func (x *AddProjectReq) GetUserName() string {
  271. if x != nil {
  272. return x.UserName
  273. }
  274. return ""
  275. }
  276. func (x *AddProjectReq) GetUserId() int64 {
  277. if x != nil {
  278. return x.UserId
  279. }
  280. return 0
  281. }
  282. func (x *AddProjectReq) GetEntId() int64 {
  283. if x != nil {
  284. return x.EntId
  285. }
  286. return 0
  287. }
  288. func (x *AddProjectReq) GetEntUserName() string {
  289. if x != nil {
  290. return x.EntUserName
  291. }
  292. return ""
  293. }
  294. type AddProjectResp struct {
  295. state protoimpl.MessageState
  296. sizeCache protoimpl.SizeCache
  297. unknownFields protoimpl.UnknownFields
  298. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  299. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  300. Data *AddProject `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  301. }
  302. func (x *AddProjectResp) Reset() {
  303. *x = AddProjectResp{}
  304. if protoimpl.UnsafeEnabled {
  305. mi := &file_biService_proto_msgTypes[4]
  306. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  307. ms.StoreMessageInfo(mi)
  308. }
  309. }
  310. func (x *AddProjectResp) String() string {
  311. return protoimpl.X.MessageStringOf(x)
  312. }
  313. func (*AddProjectResp) ProtoMessage() {}
  314. func (x *AddProjectResp) ProtoReflect() protoreflect.Message {
  315. mi := &file_biService_proto_msgTypes[4]
  316. if protoimpl.UnsafeEnabled && x != nil {
  317. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  318. if ms.LoadMessageInfo() == nil {
  319. ms.StoreMessageInfo(mi)
  320. }
  321. return ms
  322. }
  323. return mi.MessageOf(x)
  324. }
  325. // Deprecated: Use AddProjectResp.ProtoReflect.Descriptor instead.
  326. func (*AddProjectResp) Descriptor() ([]byte, []int) {
  327. return file_biService_proto_rawDescGZIP(), []int{4}
  328. }
  329. func (x *AddProjectResp) GetErrorCode() int64 {
  330. if x != nil {
  331. return x.ErrorCode
  332. }
  333. return 0
  334. }
  335. func (x *AddProjectResp) GetErrorMsg() string {
  336. if x != nil {
  337. return x.ErrorMsg
  338. }
  339. return ""
  340. }
  341. func (x *AddProjectResp) GetData() *AddProject {
  342. if x != nil {
  343. return x.Data
  344. }
  345. return nil
  346. }
  347. type AddProject struct {
  348. state protoimpl.MessageState
  349. sizeCache protoimpl.SizeCache
  350. unknownFields protoimpl.UnknownFields
  351. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  352. Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
  353. }
  354. func (x *AddProject) Reset() {
  355. *x = AddProject{}
  356. if protoimpl.UnsafeEnabled {
  357. mi := &file_biService_proto_msgTypes[5]
  358. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  359. ms.StoreMessageInfo(mi)
  360. }
  361. }
  362. func (x *AddProject) String() string {
  363. return protoimpl.X.MessageStringOf(x)
  364. }
  365. func (*AddProject) ProtoMessage() {}
  366. func (x *AddProject) ProtoReflect() protoreflect.Message {
  367. mi := &file_biService_proto_msgTypes[5]
  368. if protoimpl.UnsafeEnabled && x != nil {
  369. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  370. if ms.LoadMessageInfo() == nil {
  371. ms.StoreMessageInfo(mi)
  372. }
  373. return ms
  374. }
  375. return mi.MessageOf(x)
  376. }
  377. // Deprecated: Use AddProject.ProtoReflect.Descriptor instead.
  378. func (*AddProject) Descriptor() ([]byte, []int) {
  379. return file_biService_proto_rawDescGZIP(), []int{5}
  380. }
  381. func (x *AddProject) GetStatus() int64 {
  382. if x != nil {
  383. return x.Status
  384. }
  385. return 0
  386. }
  387. func (x *AddProject) GetCount() int64 {
  388. if x != nil {
  389. return x.Count
  390. }
  391. return 0
  392. }
  393. type GetInfoIdResp struct {
  394. state protoimpl.MessageState
  395. sizeCache protoimpl.SizeCache
  396. unknownFields protoimpl.UnknownFields
  397. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  398. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  399. Data []string `protobuf:"bytes,3,rep,name=data,proto3" json:"data,omitempty"`
  400. }
  401. func (x *GetInfoIdResp) Reset() {
  402. *x = GetInfoIdResp{}
  403. if protoimpl.UnsafeEnabled {
  404. mi := &file_biService_proto_msgTypes[6]
  405. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  406. ms.StoreMessageInfo(mi)
  407. }
  408. }
  409. func (x *GetInfoIdResp) String() string {
  410. return protoimpl.X.MessageStringOf(x)
  411. }
  412. func (*GetInfoIdResp) ProtoMessage() {}
  413. func (x *GetInfoIdResp) ProtoReflect() protoreflect.Message {
  414. mi := &file_biService_proto_msgTypes[6]
  415. if protoimpl.UnsafeEnabled && x != nil {
  416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  417. if ms.LoadMessageInfo() == nil {
  418. ms.StoreMessageInfo(mi)
  419. }
  420. return ms
  421. }
  422. return mi.MessageOf(x)
  423. }
  424. // Deprecated: Use GetInfoIdResp.ProtoReflect.Descriptor instead.
  425. func (*GetInfoIdResp) Descriptor() ([]byte, []int) {
  426. return file_biService_proto_rawDescGZIP(), []int{6}
  427. }
  428. func (x *GetInfoIdResp) GetErrorCode() int64 {
  429. if x != nil {
  430. return x.ErrorCode
  431. }
  432. return 0
  433. }
  434. func (x *GetInfoIdResp) GetErrorMsg() string {
  435. if x != nil {
  436. return x.ErrorMsg
  437. }
  438. return ""
  439. }
  440. func (x *GetInfoIdResp) GetData() []string {
  441. if x != nil {
  442. return x.Data
  443. }
  444. return nil
  445. }
  446. type DrawClueReq struct {
  447. state protoimpl.MessageState
  448. sizeCache protoimpl.SizeCache
  449. unknownFields protoimpl.UnknownFields
  450. PositionId int64 `protobuf:"varint,1,opt,name=positionId,proto3" json:"positionId,omitempty"`
  451. Count int64 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
  452. }
  453. func (x *DrawClueReq) Reset() {
  454. *x = DrawClueReq{}
  455. if protoimpl.UnsafeEnabled {
  456. mi := &file_biService_proto_msgTypes[7]
  457. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  458. ms.StoreMessageInfo(mi)
  459. }
  460. }
  461. func (x *DrawClueReq) String() string {
  462. return protoimpl.X.MessageStringOf(x)
  463. }
  464. func (*DrawClueReq) ProtoMessage() {}
  465. func (x *DrawClueReq) ProtoReflect() protoreflect.Message {
  466. mi := &file_biService_proto_msgTypes[7]
  467. if protoimpl.UnsafeEnabled && x != nil {
  468. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  469. if ms.LoadMessageInfo() == nil {
  470. ms.StoreMessageInfo(mi)
  471. }
  472. return ms
  473. }
  474. return mi.MessageOf(x)
  475. }
  476. // Deprecated: Use DrawClueReq.ProtoReflect.Descriptor instead.
  477. func (*DrawClueReq) Descriptor() ([]byte, []int) {
  478. return file_biService_proto_rawDescGZIP(), []int{7}
  479. }
  480. func (x *DrawClueReq) GetPositionId() int64 {
  481. if x != nil {
  482. return x.PositionId
  483. }
  484. return 0
  485. }
  486. func (x *DrawClueReq) GetCount() int64 {
  487. if x != nil {
  488. return x.Count
  489. }
  490. return 0
  491. }
  492. type CallReq struct {
  493. state protoimpl.MessageState
  494. sizeCache protoimpl.SizeCache
  495. unknownFields protoimpl.UnknownFields
  496. PositionId int64 `protobuf:"varint,1,opt,name=position_id,json=positionId,proto3" json:"position_id,omitempty"`
  497. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
  498. }
  499. func (x *CallReq) Reset() {
  500. *x = CallReq{}
  501. if protoimpl.UnsafeEnabled {
  502. mi := &file_biService_proto_msgTypes[8]
  503. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  504. ms.StoreMessageInfo(mi)
  505. }
  506. }
  507. func (x *CallReq) String() string {
  508. return protoimpl.X.MessageStringOf(x)
  509. }
  510. func (*CallReq) ProtoMessage() {}
  511. func (x *CallReq) ProtoReflect() protoreflect.Message {
  512. mi := &file_biService_proto_msgTypes[8]
  513. if protoimpl.UnsafeEnabled && x != nil {
  514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  515. if ms.LoadMessageInfo() == nil {
  516. ms.StoreMessageInfo(mi)
  517. }
  518. return ms
  519. }
  520. return mi.MessageOf(x)
  521. }
  522. // Deprecated: Use CallReq.ProtoReflect.Descriptor instead.
  523. func (*CallReq) Descriptor() ([]byte, []int) {
  524. return file_biService_proto_rawDescGZIP(), []int{8}
  525. }
  526. func (x *CallReq) GetPositionId() int64 {
  527. if x != nil {
  528. return x.PositionId
  529. }
  530. return 0
  531. }
  532. func (x *CallReq) GetPhone() string {
  533. if x != nil {
  534. return x.Phone
  535. }
  536. return ""
  537. }
  538. type 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. type AcceptanceReq struct {
  1838. state protoimpl.MessageState
  1839. sizeCache protoimpl.SizeCache
  1840. unknownFields protoimpl.UnknownFields
  1841. ProposeType int64 `protobuf:"varint,1,opt,name=ProposeType,proto3" json:"ProposeType,omitempty"`
  1842. ProposeTime string `protobuf:"bytes,2,opt,name=Propose_time,json=ProposeTime,proto3" json:"Propose_time,omitempty"`
  1843. Channel string `protobuf:"bytes,3,opt,name=Channel,proto3" json:"Channel,omitempty"`
  1844. AcceptanceType int64 `protobuf:"varint,4,opt,name=Acceptance_type,json=AcceptanceType,proto3" json:"Acceptance_type,omitempty"`
  1845. Status int64 `protobuf:"varint,5,opt,name=Status,proto3" json:"Status,omitempty"`
  1846. OverTime string `protobuf:"bytes,6,opt,name=Over_time,json=OverTime,proto3" json:"Over_time,omitempty"`
  1847. Remark string `protobuf:"bytes,7,opt,name=Remark,proto3" json:"Remark,omitempty"`
  1848. PositionId int64 `protobuf:"varint,8,opt,name=PositionId,proto3" json:"PositionId,omitempty"`
  1849. DeptId string `protobuf:"bytes,9,opt,name=DeptId,proto3" json:"DeptId,omitempty"`
  1850. EntUserName string `protobuf:"bytes,10,opt,name=EntUserName,proto3" json:"EntUserName,omitempty"`
  1851. ParamData string `protobuf:"bytes,11,opt,name=paramData,proto3" json:"paramData,omitempty"`
  1852. }
  1853. func (x *AcceptanceReq) Reset() {
  1854. *x = AcceptanceReq{}
  1855. if protoimpl.UnsafeEnabled {
  1856. mi := &file_biService_proto_msgTypes[31]
  1857. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1858. ms.StoreMessageInfo(mi)
  1859. }
  1860. }
  1861. func (x *AcceptanceReq) String() string {
  1862. return protoimpl.X.MessageStringOf(x)
  1863. }
  1864. func (*AcceptanceReq) ProtoMessage() {}
  1865. func (x *AcceptanceReq) ProtoReflect() protoreflect.Message {
  1866. mi := &file_biService_proto_msgTypes[31]
  1867. if protoimpl.UnsafeEnabled && x != nil {
  1868. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1869. if ms.LoadMessageInfo() == nil {
  1870. ms.StoreMessageInfo(mi)
  1871. }
  1872. return ms
  1873. }
  1874. return mi.MessageOf(x)
  1875. }
  1876. // Deprecated: Use AcceptanceReq.ProtoReflect.Descriptor instead.
  1877. func (*AcceptanceReq) Descriptor() ([]byte, []int) {
  1878. return file_biService_proto_rawDescGZIP(), []int{31}
  1879. }
  1880. func (x *AcceptanceReq) GetProposeType() int64 {
  1881. if x != nil {
  1882. return x.ProposeType
  1883. }
  1884. return 0
  1885. }
  1886. func (x *AcceptanceReq) GetProposeTime() string {
  1887. if x != nil {
  1888. return x.ProposeTime
  1889. }
  1890. return ""
  1891. }
  1892. func (x *AcceptanceReq) GetChannel() string {
  1893. if x != nil {
  1894. return x.Channel
  1895. }
  1896. return ""
  1897. }
  1898. func (x *AcceptanceReq) GetAcceptanceType() int64 {
  1899. if x != nil {
  1900. return x.AcceptanceType
  1901. }
  1902. return 0
  1903. }
  1904. func (x *AcceptanceReq) GetStatus() int64 {
  1905. if x != nil {
  1906. return x.Status
  1907. }
  1908. return 0
  1909. }
  1910. func (x *AcceptanceReq) GetOverTime() string {
  1911. if x != nil {
  1912. return x.OverTime
  1913. }
  1914. return ""
  1915. }
  1916. func (x *AcceptanceReq) GetRemark() string {
  1917. if x != nil {
  1918. return x.Remark
  1919. }
  1920. return ""
  1921. }
  1922. func (x *AcceptanceReq) GetPositionId() int64 {
  1923. if x != nil {
  1924. return x.PositionId
  1925. }
  1926. return 0
  1927. }
  1928. func (x *AcceptanceReq) GetDeptId() string {
  1929. if x != nil {
  1930. return x.DeptId
  1931. }
  1932. return ""
  1933. }
  1934. func (x *AcceptanceReq) GetEntUserName() string {
  1935. if x != nil {
  1936. return x.EntUserName
  1937. }
  1938. return ""
  1939. }
  1940. func (x *AcceptanceReq) GetParamData() string {
  1941. if x != nil {
  1942. return x.ParamData
  1943. }
  1944. return ""
  1945. }
  1946. type AcceptanceResp struct {
  1947. state protoimpl.MessageState
  1948. sizeCache protoimpl.SizeCache
  1949. unknownFields protoimpl.UnknownFields
  1950. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  1951. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  1952. Data *Acceptance `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  1953. }
  1954. func (x *AcceptanceResp) Reset() {
  1955. *x = AcceptanceResp{}
  1956. if protoimpl.UnsafeEnabled {
  1957. mi := &file_biService_proto_msgTypes[32]
  1958. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1959. ms.StoreMessageInfo(mi)
  1960. }
  1961. }
  1962. func (x *AcceptanceResp) String() string {
  1963. return protoimpl.X.MessageStringOf(x)
  1964. }
  1965. func (*AcceptanceResp) ProtoMessage() {}
  1966. func (x *AcceptanceResp) ProtoReflect() protoreflect.Message {
  1967. mi := &file_biService_proto_msgTypes[32]
  1968. if protoimpl.UnsafeEnabled && x != nil {
  1969. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1970. if ms.LoadMessageInfo() == nil {
  1971. ms.StoreMessageInfo(mi)
  1972. }
  1973. return ms
  1974. }
  1975. return mi.MessageOf(x)
  1976. }
  1977. // Deprecated: Use AcceptanceResp.ProtoReflect.Descriptor instead.
  1978. func (*AcceptanceResp) Descriptor() ([]byte, []int) {
  1979. return file_biService_proto_rawDescGZIP(), []int{32}
  1980. }
  1981. func (x *AcceptanceResp) GetErrorCode() int64 {
  1982. if x != nil {
  1983. return x.ErrorCode
  1984. }
  1985. return 0
  1986. }
  1987. func (x *AcceptanceResp) GetErrorMsg() string {
  1988. if x != nil {
  1989. return x.ErrorMsg
  1990. }
  1991. return ""
  1992. }
  1993. func (x *AcceptanceResp) GetData() *Acceptance {
  1994. if x != nil {
  1995. return x.Data
  1996. }
  1997. return nil
  1998. }
  1999. type Acceptance struct {
  2000. state protoimpl.MessageState
  2001. sizeCache protoimpl.SizeCache
  2002. unknownFields protoimpl.UnknownFields
  2003. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  2004. }
  2005. func (x *Acceptance) Reset() {
  2006. *x = Acceptance{}
  2007. if protoimpl.UnsafeEnabled {
  2008. mi := &file_biService_proto_msgTypes[33]
  2009. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2010. ms.StoreMessageInfo(mi)
  2011. }
  2012. }
  2013. func (x *Acceptance) String() string {
  2014. return protoimpl.X.MessageStringOf(x)
  2015. }
  2016. func (*Acceptance) ProtoMessage() {}
  2017. func (x *Acceptance) ProtoReflect() protoreflect.Message {
  2018. mi := &file_biService_proto_msgTypes[33]
  2019. if protoimpl.UnsafeEnabled && x != nil {
  2020. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2021. if ms.LoadMessageInfo() == nil {
  2022. ms.StoreMessageInfo(mi)
  2023. }
  2024. return ms
  2025. }
  2026. return mi.MessageOf(x)
  2027. }
  2028. // Deprecated: Use Acceptance.ProtoReflect.Descriptor instead.
  2029. func (*Acceptance) Descriptor() ([]byte, []int) {
  2030. return file_biService_proto_rawDescGZIP(), []int{33}
  2031. }
  2032. func (x *Acceptance) GetId() int64 {
  2033. if x != nil {
  2034. return x.Id
  2035. }
  2036. return 0
  2037. }
  2038. type SendMailReq struct {
  2039. state protoimpl.MessageState
  2040. sizeCache protoimpl.SizeCache
  2041. unknownFields protoimpl.UnknownFields
  2042. Title string `protobuf:"bytes,1,opt,name=title,proto3" json:"title,omitempty"`
  2043. Content string `protobuf:"bytes,2,opt,name=content,proto3" json:"content,omitempty"`
  2044. Mails string `protobuf:"bytes,3,opt,name=mails,proto3" json:"mails,omitempty"`
  2045. }
  2046. func (x *SendMailReq) Reset() {
  2047. *x = SendMailReq{}
  2048. if protoimpl.UnsafeEnabled {
  2049. mi := &file_biService_proto_msgTypes[34]
  2050. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2051. ms.StoreMessageInfo(mi)
  2052. }
  2053. }
  2054. func (x *SendMailReq) String() string {
  2055. return protoimpl.X.MessageStringOf(x)
  2056. }
  2057. func (*SendMailReq) ProtoMessage() {}
  2058. func (x *SendMailReq) ProtoReflect() protoreflect.Message {
  2059. mi := &file_biService_proto_msgTypes[34]
  2060. if protoimpl.UnsafeEnabled && x != nil {
  2061. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2062. if ms.LoadMessageInfo() == nil {
  2063. ms.StoreMessageInfo(mi)
  2064. }
  2065. return ms
  2066. }
  2067. return mi.MessageOf(x)
  2068. }
  2069. // Deprecated: Use SendMailReq.ProtoReflect.Descriptor instead.
  2070. func (*SendMailReq) Descriptor() ([]byte, []int) {
  2071. return file_biService_proto_rawDescGZIP(), []int{34}
  2072. }
  2073. func (x *SendMailReq) GetTitle() string {
  2074. if x != nil {
  2075. return x.Title
  2076. }
  2077. return ""
  2078. }
  2079. func (x *SendMailReq) GetContent() string {
  2080. if x != nil {
  2081. return x.Content
  2082. }
  2083. return ""
  2084. }
  2085. func (x *SendMailReq) GetMails() string {
  2086. if x != nil {
  2087. return x.Mails
  2088. }
  2089. return ""
  2090. }
  2091. var File_biService_proto protoreflect.FileDescriptor
  2092. var file_biService_proto_rawDesc = []byte{
  2093. 0x0a, 0x0f, 0x62, 0x69, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2094. 0x6f, 0x22, 0x64, 0x0a, 0x0e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74,
  2095. 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20,
  2096. 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x6e,
  2097. 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  2098. 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74,
  2099. 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x6e,
  2100. 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x6f, 0x0a, 0x0f, 0x4d, 0x79, 0x44, 0x61, 0x74,
  2101. 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72,
  2102. 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  2103. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72,
  2104. 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72,
  2105. 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03,
  2106. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73,
  2107. 0x65, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xf3, 0x01, 0x0a, 0x0b, 0x4d, 0x79, 0x44,
  2108. 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x2c, 0x0a, 0x12, 0x63, 0x6f, 0x6c, 0x6c,
  2109. 0x65, 0x63, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01,
  2110. 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x6e, 0x66,
  2111. 0x6f, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77,
  2112. 0x5f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02,
  2113. 0x20, 0x01, 0x28, 0x03, 0x52, 0x12, 0x66, 0x6f, 0x6c, 0x6c, 0x6f, 0x77, 0x50, 0x72, 0x6f, 0x6a,
  2114. 0x65, 0x63, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x11, 0x63, 0x6f, 0x6c, 0x6c,
  2115. 0x65, 0x63, 0x74, 0x5f, 0x64, 0x6f, 0x63, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20,
  2116. 0x01, 0x28, 0x03, 0x52, 0x0f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x44, 0x6f, 0x63, 0x43,
  2117. 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x30, 0x0a, 0x14, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x5f, 0x63, 0x75,
  2118. 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01,
  2119. 0x28, 0x03, 0x52, 0x12, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  2120. 0x72, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x5f,
  2121. 0x6e, 0x7a, 0x6a, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52,
  2122. 0x0d, 0x63, 0x6c, 0x61, 0x69, 0x6d, 0x4e, 0x7a, 0x6a, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xb5,
  2123. 0x02, 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71,
  2124. 0x12, 0x17, 0x0a, 0x07, 0x69, 0x6e, 0x66, 0x6f, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2125. 0x09, 0x52, 0x06, 0x69, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75,
  2126. 0x72, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63,
  2127. 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64,
  2128. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
  2129. 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74,
  2130. 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x70, 0x6f, 0x73, 0x69, 0x74,
  2131. 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x61, 0x63, 0x63, 0x6f, 0x75,
  2132. 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x61, 0x63, 0x63,
  2133. 0x6f, 0x75, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e,
  2134. 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f,
  2135. 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65,
  2136. 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73,
  2137. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
  2138. 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14,
  2139. 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65,
  2140. 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e,
  2141. 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x65, 0x6e, 0x74, 0x55, 0x73,
  2142. 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x6d, 0x0a, 0x0e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f,
  2143. 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f,
  2144. 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72,
  2145. 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  2146. 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f,
  2147. 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01,
  2148. 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
  2149. 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3a, 0x0a, 0x0a, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a,
  2150. 0x65, 0x63, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20,
  2151. 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x63,
  2152. 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e,
  2153. 0x74, 0x22, 0x5f, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x52, 0x65,
  2154. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  2155. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  2156. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  2157. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12,
  2158. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61,
  2159. 0x74, 0x61, 0x22, 0x43, 0x0a, 0x0b, 0x44, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65,
  2160. 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18,
  2161. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  2162. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  2163. 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x40, 0x0a, 0x07, 0x43, 0x61, 0x6c, 0x6c, 0x52,
  2164. 0x65, 0x71, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,
  2165. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
  2166. 0x6e, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01,
  2167. 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x58, 0x0a, 0x06, 0x42, 0x69, 0x52,
  2168. 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
  2169. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
  2170. 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18,
  2171. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12,
  2172. 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64,
  2173. 0x61, 0x74, 0x61, 0x22, 0x59, 0x0a, 0x07, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1d,
  2174. 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01,
  2175. 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a,
  2176. 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2177. 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61,
  2178. 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xb1,
  2179. 0x01, 0x0a, 0x11, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75,
  2180. 0x65, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75, 0x6e,
  2181. 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75,
  2182. 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74,
  2183. 0x18, 0x02, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69,
  2184. 0x73, 0x74, 0x12, 0x26, 0x0a, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
  2185. 0x0b, 0x32, 0x10, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x44, 0x61,
  2186. 0x74, 0x61, 0x73, 0x52, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f,
  2187. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  2188. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73,
  2189. 0x54, 0x61, 0x73, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x69, 0x73, 0x54, 0x61,
  2190. 0x73, 0x6b, 0x22, 0xbd, 0x01, 0x0a, 0x0f, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
  2191. 0x65, 0x44, 0x61, 0x74, 0x61, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
  2192. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f,
  2193. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  2194. 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x6f,
  2195. 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
  2196. 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x6e,
  2197. 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04,
  2198. 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x75, 0x6e, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65,
  2199. 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69,
  2200. 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03,
  2201. 0x52, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75,
  2202. 0x6e, 0x74, 0x22, 0x43, 0x0a, 0x0d, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  2203. 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x63, 0x62, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28,
  2204. 0x09, 0x52, 0x04, 0x70, 0x63, 0x62, 0x68, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74,
  2205. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73,
  2206. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x6d, 0x0a, 0x0e, 0x43, 0x6c, 0x75, 0x65, 0x49,
  2207. 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72,
  2208. 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65,
  2209. 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f,
  2210. 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72,
  2211. 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20,
  2212. 0x01, 0x28, 0x0b, 0x32, 0x0b, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  2213. 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x3c, 0x0a, 0x0a, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d,
  2214. 0x70, 0x6f, 0x72, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01,
  2215. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a, 0x06,
  2216. 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65,
  2217. 0x73, 0x75, 0x6c, 0x74, 0x22, 0xa6, 0x03, 0x0a, 0x0a, 0x43, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x64,
  2218. 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x01, 0x20, 0x01,
  2219. 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65,
  2220. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65,
  2221. 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18,
  2222. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x1c, 0x0a,
  2223. 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x39, 0x39, 0x39, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  2224. 0x52, 0x09, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x39, 0x39, 0x39, 0x12, 0x14, 0x0a, 0x05, 0x6f,
  2225. 0x77, 0x6e, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x77, 0x6e, 0x65,
  2226. 0x72, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x70, 0x4e, 0x6f, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  2227. 0x52, 0x05, 0x65, 0x6d, 0x70, 0x4e, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61,
  2228. 0x6e, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e,
  2229. 0x79, 0x12, 0x24, 0x0a, 0x0d, 0x69, 0x73, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x6d, 0x61, 0x6b,
  2230. 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x69, 0x73, 0x50, 0x6f, 0x6c, 0x69,
  2231. 0x63, 0x79, 0x6d, 0x61, 0x6b, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x62, 0x65, 0x6c, 0x6f, 0x6e,
  2232. 0x67, 0x54, 0x6f, 0x49, 0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x18, 0x09, 0x20, 0x01, 0x28,
  2233. 0x09, 0x52, 0x10, 0x62, 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x49, 0x6e, 0x64, 0x75, 0x73,
  2234. 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6a, 0x6f, 0x62, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
  2235. 0x52, 0x03, 0x6a, 0x6f, 0x62, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  2236. 0x72, 0x4e, 0x65, 0x65, 0x64, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x75,
  2237. 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4e, 0x65, 0x65, 0x64, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x62,
  2238. 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62,
  2239. 0x65, 0x6c, 0x6f, 0x6e, 0x67, 0x54, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x77, 0x61, 0x6e, 0x74, 0x47,
  2240. 0x6f, 0x6f, 0x64, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x77, 0x61, 0x6e, 0x74,
  2241. 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
  2242. 0x72, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x63,
  2243. 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x22, 0x3e, 0x0a,
  2244. 0x0c, 0x53, 0x71, 0x6c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a,
  2245. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x02, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a,
  2246. 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x06, 0x2e,
  2247. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x52, 0x06, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x73, 0x22, 0x2f, 0x0a,
  2248. 0x09, 0x4d, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x69,
  2249. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x62, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03,
  2250. 0x73, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x69, 0x64, 0x22, 0x31,
  2251. 0x0a, 0x05, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2252. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x12, 0x0a,
  2253. 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70,
  2254. 0x65, 0x22, 0x59, 0x0a, 0x09, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12,
  2255. 0x0a, 0x04, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x61,
  2256. 0x69, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x02, 0x20,
  2257. 0x03, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x1e, 0x0a, 0x0a,
  2258. 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  2259. 0x52, 0x0a, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x36, 0x0a, 0x0a,
  2260. 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x65,
  2261. 0x77, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x65, 0x77, 0x49, 0x64,
  2262. 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04,
  2263. 0x74, 0x79, 0x70, 0x65, 0x22, 0x2e, 0x0a, 0x0a, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x52,
  2264. 0x65, 0x71, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x4e, 0x61, 0x6d,
  2265. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79,
  2266. 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x25, 0x0a, 0x0b, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x52,
  2267. 0x65, 0x73, 0x70, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20,
  2268. 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xe3, 0x01, 0x0a, 0x15,
  2269. 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68,
  2270. 0x6f, 0x77, 0x52, 0x65, 0x71, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f,
  2271. 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74,
  2272. 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70,
  2273. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70,
  2274. 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x18,
  2275. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x64, 0x4c, 0x69, 0x73,
  2276. 0x74, 0x12, 0x2a, 0x0a, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
  2277. 0x32, 0x14, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75,
  2278. 0x65, 0x53, 0x68, 0x6f, 0x77, 0x73, 0x52, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x12, 0x16, 0x0a,
  2279. 0x06, 0x49, 0x73, 0x54, 0x61, 0x73, 0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x49,
  2280. 0x73, 0x54, 0x61, 0x73, 0x6b, 0x12, 0x2a, 0x0a, 0x10, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50,
  2281. 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52,
  2282. 0x10, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49,
  2283. 0x44, 0x22, 0x61, 0x0a, 0x13, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43,
  2284. 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x6f, 0x73, 0x69,
  2285. 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x70, 0x6f,
  2286. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x10, 0x64, 0x69, 0x73, 0x74,
  2287. 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01,
  2288. 0x28, 0x03, 0x52, 0x10, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43,
  2289. 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x80, 0x02, 0x0a, 0x14, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62,
  2290. 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x73, 0x73, 0x12, 0x1e, 0x0a,
  2291. 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  2292. 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x22, 0x0a,
  2293. 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20,
  2294. 0x01, 0x28, 0x03, 0x52, 0x0c, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x43, 0x6f, 0x75, 0x6e,
  2295. 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03,
  2296. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x6c, 0x75, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12,
  2297. 0x1a, 0x0a, 0x08, 0x6d, 0x69, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28,
  2298. 0x03, 0x52, 0x08, 0x6d, 0x69, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x63,
  2299. 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x73, 0x18, 0x05, 0x20, 0x01,
  2300. 0x28, 0x03, 0x52, 0x0d, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74,
  2301. 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x75,
  2302. 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69,
  2303. 0x6e, 0x67, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x46, 0x75, 0x6c, 0x6c, 0x53,
  2304. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a, 0x46, 0x75, 0x6c,
  2305. 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x7f, 0x0a, 0x16, 0x44, 0x69, 0x73, 0x74, 0x72,
  2306. 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73,
  2307. 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
  2308. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65,
  2309. 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
  2310. 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x29, 0x0a,
  2311. 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x44, 0x69,
  2312. 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77,
  2313. 0x73, 0x73, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xa9, 0x01, 0x0a, 0x0d, 0x45, 0x78, 0x70,
  2314. 0x6f, 0x72, 0x74, 0x42, 0x79, 0x44, 0x62, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f,
  2315. 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e,
  2316. 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2317. 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
  2318. 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
  2319. 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
  2320. 0x05, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61,
  2321. 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x4e, 0x61,
  2322. 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x05, 0x64, 0x61, 0x74, 0x61, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28,
  2323. 0x0b, 0x32, 0x0a, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x44, 0x61, 0x74, 0x61, 0x52, 0x05, 0x64,
  2324. 0x61, 0x74, 0x61, 0x73, 0x22, 0x3b, 0x0a, 0x09, 0x46, 0x69, 0x6c, 0x65, 0x73, 0x44, 0x61, 0x74,
  2325. 0x61, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x68, 0x65, 0x65, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x01,
  2326. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x68, 0x65, 0x65, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12,
  2327. 0x10, 0x0a, 0x03, 0x73, 0x71, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x73, 0x71,
  2328. 0x6c, 0x22, 0xef, 0x01, 0x0a, 0x09, 0x55, 0x70, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12,
  2329. 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
  2330. 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2331. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a,
  2332. 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
  2333. 0x03, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1c, 0x0a,
  2334. 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  2335. 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65,
  2336. 0x6e, 0x74, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49,
  2337. 0x64, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
  2338. 0x52, 0x05, 0x73, 0x74, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x18,
  2339. 0x07, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66,
  2340. 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66,
  2341. 0x69, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53,
  2342. 0x69, 0x7a, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53,
  2343. 0x69, 0x7a, 0x65, 0x22, 0xdc, 0x02, 0x0a, 0x0d, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e,
  2344. 0x63, 0x65, 0x52, 0x65, 0x71, 0x12, 0x20, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x65,
  2345. 0x54, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x50, 0x72, 0x6f, 0x70,
  2346. 0x6f, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x50, 0x72, 0x6f, 0x70, 0x6f,
  2347. 0x73, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x50,
  2348. 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x43, 0x68,
  2349. 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x43, 0x68, 0x61,
  2350. 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e,
  2351. 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x41,
  2352. 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a,
  2353. 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x53,
  2354. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x4f, 0x76, 0x65, 0x72, 0x5f, 0x74, 0x69,
  2355. 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x4f, 0x76, 0x65, 0x72, 0x54, 0x69,
  2356. 0x6d, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x07, 0x20, 0x01,
  2357. 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x1e, 0x0a, 0x0a, 0x50, 0x6f,
  2358. 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
  2359. 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x44, 0x65,
  2360. 0x70, 0x74, 0x49, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x44, 0x65, 0x70, 0x74,
  2361. 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d,
  2362. 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x45, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
  2363. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x44, 0x61, 0x74,
  2364. 0x61, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x44, 0x61,
  2365. 0x74, 0x61, 0x22, 0x6d, 0x0a, 0x0e, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65,
  2366. 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f,
  2367. 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43,
  2368. 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67,
  2369. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67,
  2370. 0x12, 0x1f, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0b,
  2371. 0x2e, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x04, 0x64, 0x61, 0x74,
  2372. 0x61, 0x22, 0x1c, 0x0a, 0x0a, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x12,
  2373. 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x22,
  2374. 0x53, 0x0a, 0x0b, 0x53, 0x65, 0x6e, 0x64, 0x4d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x12, 0x14,
  2375. 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74,
  2376. 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18,
  2377. 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x14,
  2378. 0x0a, 0x05, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6d,
  2379. 0x61, 0x69, 0x6c, 0x73, 0x32, 0x9b, 0x07, 0x0a, 0x09, 0x42, 0x69, 0x53, 0x65, 0x72, 0x76, 0x69,
  2380. 0x63, 0x65, 0x12, 0x30, 0x0a, 0x0b, 0x6d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65,
  2381. 0x74, 0x12, 0x0f, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52,
  2382. 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x4d, 0x79, 0x44, 0x61, 0x74, 0x61, 0x41, 0x73, 0x73, 0x65, 0x74,
  2383. 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a, 0x0a, 0x61, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65,
  2384. 0x63, 0x74, 0x12, 0x0e, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
  2385. 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
  2386. 0x65, 0x73, 0x70, 0x12, 0x2b, 0x0a, 0x09, 0x67, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64,
  2387. 0x12, 0x0e, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71,
  2388. 0x1a, 0x0e, 0x2e, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x49, 0x64, 0x52, 0x65, 0x73, 0x70,
  2389. 0x12, 0x29, 0x0a, 0x08, 0x64, 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x12, 0x0c, 0x2e, 0x44,
  2390. 0x72, 0x61, 0x77, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64,
  2391. 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x19, 0x0a, 0x04, 0x43,
  2392. 0x61, 0x6c, 0x6c, 0x12, 0x08, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x07, 0x2e,
  2393. 0x42, 0x69, 0x52, 0x65, 0x73, 0x70, 0x12, 0x35, 0x0a, 0x0e, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69,
  2394. 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x12, 0x12, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72,
  2395. 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41,
  2396. 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2d, 0x0a,
  2397. 0x0a, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x0e, 0x2e, 0x43, 0x6c,
  2398. 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x43, 0x6c,
  2399. 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x07,
  2400. 0x63, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x64, 0x12, 0x0b, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x41, 0x64,
  2401. 0x64, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
  2402. 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x2f, 0x0a, 0x0c, 0x63, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70,
  2403. 0x6f, 0x72, 0x74, 0x54, 0x74, 0x12, 0x0e, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f,
  2404. 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f,
  2405. 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x6f, 0x46, 0x6f,
  2406. 0x6c, 0x6c, 0x6f, 0x77, 0x12, 0x08, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x0f,
  2407. 0x2e, 0x43, 0x6c, 0x75, 0x65, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12,
  2408. 0x24, 0x0a, 0x09, 0x73, 0x71, 0x6c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x12, 0x0d, 0x2e, 0x53,
  2409. 0x71, 0x6c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69,
  2410. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a, 0x06, 0x6d, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12,
  2411. 0x0a, 0x2e, 0x4d, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69,
  2412. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x25, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
  2413. 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x0a, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52,
  2414. 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x10,
  2415. 0x61, 0x6c, 0x6c, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74,
  2416. 0x12, 0x0a, 0x2e, 0x45, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42,
  2417. 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x24, 0x0a, 0x0b, 0x69, 0x6e, 0x66, 0x6f, 0x4f, 0x70,
  2418. 0x65, 0x72, 0x61, 0x74, 0x65, 0x12, 0x0b, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x65, 0x52,
  2419. 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x2b, 0x0a, 0x0e,
  2420. 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0b,
  2421. 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x43, 0x6f,
  2422. 0x6d, 0x70, 0x61, 0x6e, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x45, 0x0a, 0x12, 0x64, 0x69, 0x73,
  2423. 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x12,
  2424. 0x16, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65,
  2425. 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x72, 0x69,
  2426. 0x62, 0x75, 0x74, 0x65, 0x43, 0x6c, 0x75, 0x65, 0x53, 0x68, 0x6f, 0x77, 0x52, 0x65, 0x73, 0x70,
  2427. 0x12, 0x24, 0x0a, 0x08, 0x73, 0x65, 0x6e, 0x64, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x0e, 0x2e, 0x45,
  2428. 0x78, 0x70, 0x6f, 0x72, 0x74, 0x42, 0x79, 0x44, 0x62, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42,
  2429. 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a, 0x06, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x65,
  2430. 0x12, 0x0a, 0x2e, 0x55, 0x70, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42,
  2431. 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x28, 0x0a, 0x0e, 0x73, 0x65, 0x6e, 0x64, 0x43, 0x6f,
  2432. 0x6d, 0x6d, 0x6f, 0x6e, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x0c, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4d,
  2433. 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x08, 0x2e, 0x42, 0x69, 0x52, 0x65, 0x70, 0x6c, 0x79,
  2434. 0x12, 0x30, 0x0a, 0x0d, 0x61, 0x64, 0x64, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63,
  2435. 0x65, 0x12, 0x0e, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65,
  2436. 0x71, 0x1a, 0x0f, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x70, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65,
  2437. 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
  2438. 0x6f, 0x33,
  2439. }
  2440. var (
  2441. file_biService_proto_rawDescOnce sync.Once
  2442. file_biService_proto_rawDescData = file_biService_proto_rawDesc
  2443. )
  2444. func file_biService_proto_rawDescGZIP() []byte {
  2445. file_biService_proto_rawDescOnce.Do(func() {
  2446. file_biService_proto_rawDescData = protoimpl.X.CompressGZIP(file_biService_proto_rawDescData)
  2447. })
  2448. return file_biService_proto_rawDescData
  2449. }
  2450. var file_biService_proto_msgTypes = make([]protoimpl.MessageInfo, 35)
  2451. var file_biService_proto_goTypes = []interface{}{
  2452. (*MyDataAssetReq)(nil), // 0: MyDataAssetReq
  2453. (*MyDataAssetResp)(nil), // 1: MyDataAssetResp
  2454. (*MyDataAsset)(nil), // 2: MyDataAsset
  2455. (*AddProjectReq)(nil), // 3: AddProjectReq
  2456. (*AddProjectResp)(nil), // 4: AddProjectResp
  2457. (*AddProject)(nil), // 5: AddProject
  2458. (*GetInfoIdResp)(nil), // 6: GetInfoIdResp
  2459. (*DrawClueReq)(nil), // 7: DrawClueReq
  2460. (*CallReq)(nil), // 8: CallReq
  2461. (*BiResp)(nil), // 9: BiResp
  2462. (*BiReply)(nil), // 10: BiReply
  2463. (*DistributeClueReq)(nil), // 11: DistributeClueReq
  2464. (*DistributeDatas)(nil), // 12: DistributeDatas
  2465. (*ClueImportReq)(nil), // 13: ClueImportReq
  2466. (*ClueImportResp)(nil), // 14: ClueImportResp
  2467. (*ClueImport)(nil), // 15: ClueImport
  2468. (*ClueAddReq)(nil), // 16: ClueAddReq
  2469. (*SqlManageReq)(nil), // 17: SqlManageReq
  2470. (*MyInfoReq)(nil), // 18: MyInfoReq
  2471. (*Param)(nil), // 19: Param
  2472. (*ExportReq)(nil), // 20: ExportReq
  2473. (*OperateReq)(nil), // 21: OperateReq
  2474. (*CompanyReq)(nil), // 22: CompanyReq
  2475. (*CompanyResp)(nil), // 23: CompanyResp
  2476. (*DistributeClueShowReq)(nil), // 24: DistributeClueShowReq
  2477. (*DistributeClueShows)(nil), // 25: DistributeClueShows
  2478. (*DistributeClueShowss)(nil), // 26: DistributeClueShowss
  2479. (*DistributeClueShowResp)(nil), // 27: DistributeClueShowResp
  2480. (*ExportByDbReq)(nil), // 28: ExportByDbReq
  2481. (*FilesData)(nil), // 29: FilesData
  2482. (*UpFileReq)(nil), // 30: UpFileReq
  2483. (*AcceptanceReq)(nil), // 31: AcceptanceReq
  2484. (*AcceptanceResp)(nil), // 32: AcceptanceResp
  2485. (*Acceptance)(nil), // 33: Acceptance
  2486. (*SendMailReq)(nil), // 34: SendMailReq
  2487. }
  2488. var file_biService_proto_depIdxs = []int32{
  2489. 2, // 0: MyDataAssetResp.data:type_name -> MyDataAsset
  2490. 5, // 1: AddProjectResp.data:type_name -> AddProject
  2491. 12, // 2: DistributeClueReq.datas:type_name -> DistributeDatas
  2492. 15, // 3: ClueImportResp.data:type_name -> ClueImport
  2493. 19, // 4: SqlManageReq.params:type_name -> Param
  2494. 25, // 5: DistributeClueShowReq.datas:type_name -> DistributeClueShows
  2495. 26, // 6: DistributeClueShowResp.data:type_name -> DistributeClueShowss
  2496. 29, // 7: ExportByDbReq.datas:type_name -> FilesData
  2497. 33, // 8: AcceptanceResp.data:type_name -> Acceptance
  2498. 0, // 9: BiService.myDataAsset:input_type -> MyDataAssetReq
  2499. 3, // 10: BiService.addProject:input_type -> AddProjectReq
  2500. 3, // 11: BiService.getInfoId:input_type -> AddProjectReq
  2501. 7, // 12: BiService.drawClue:input_type -> DrawClueReq
  2502. 8, // 13: BiService.Call:input_type -> CallReq
  2503. 11, // 14: BiService.distributeClue:input_type -> DistributeClueReq
  2504. 13, // 15: BiService.clueImport:input_type -> ClueImportReq
  2505. 16, // 16: BiService.clueAdd:input_type -> ClueAddReq
  2506. 13, // 17: BiService.clueImportTt:input_type -> ClueImportReq
  2507. 8, // 18: BiService.autoFollow:input_type -> CallReq
  2508. 17, // 19: BiService.sqlManage:input_type -> SqlManageReq
  2509. 18, // 20: BiService.myInfo:input_type -> MyInfoReq
  2510. 20, // 21: BiService.allInfoExport:input_type -> ExportReq
  2511. 20, // 22: BiService.allProjectExport:input_type -> ExportReq
  2512. 21, // 23: BiService.infoOperate:input_type -> OperateReq
  2513. 22, // 24: BiService.getCompanyType:input_type -> CompanyReq
  2514. 24, // 25: BiService.distributeClueShow:input_type -> DistributeClueShowReq
  2515. 28, // 26: BiService.sendMail:input_type -> ExportByDbReq
  2516. 30, // 27: BiService.upFile:input_type -> UpFileReq
  2517. 34, // 28: BiService.sendCommonMail:input_type -> SendMailReq
  2518. 31, // 29: BiService.addAcceptance:input_type -> AcceptanceReq
  2519. 1, // 30: BiService.myDataAsset:output_type -> MyDataAssetResp
  2520. 4, // 31: BiService.addProject:output_type -> AddProjectResp
  2521. 6, // 32: BiService.getInfoId:output_type -> GetInfoIdResp
  2522. 4, // 33: BiService.drawClue:output_type -> AddProjectResp
  2523. 9, // 34: BiService.Call:output_type -> BiResp
  2524. 4, // 35: BiService.distributeClue:output_type -> AddProjectResp
  2525. 14, // 36: BiService.clueImport:output_type -> ClueImportResp
  2526. 4, // 37: BiService.clueAdd:output_type -> AddProjectResp
  2527. 14, // 38: BiService.clueImportTt:output_type -> ClueImportResp
  2528. 14, // 39: BiService.autoFollow:output_type -> ClueImportResp
  2529. 10, // 40: BiService.sqlManage:output_type -> BiReply
  2530. 10, // 41: BiService.myInfo:output_type -> BiReply
  2531. 10, // 42: BiService.allInfoExport:output_type -> BiReply
  2532. 10, // 43: BiService.allProjectExport:output_type -> BiReply
  2533. 10, // 44: BiService.infoOperate:output_type -> BiReply
  2534. 23, // 45: BiService.getCompanyType:output_type -> CompanyResp
  2535. 27, // 46: BiService.distributeClueShow:output_type -> DistributeClueShowResp
  2536. 10, // 47: BiService.sendMail:output_type -> BiReply
  2537. 10, // 48: BiService.upFile:output_type -> BiReply
  2538. 10, // 49: BiService.sendCommonMail:output_type -> BiReply
  2539. 32, // 50: BiService.addAcceptance:output_type -> AcceptanceResp
  2540. 30, // [30:51] is the sub-list for method output_type
  2541. 9, // [9:30] is the sub-list for method input_type
  2542. 9, // [9:9] is the sub-list for extension type_name
  2543. 9, // [9:9] is the sub-list for extension extendee
  2544. 0, // [0:9] is the sub-list for field type_name
  2545. }
  2546. func init() { file_biService_proto_init() }
  2547. func file_biService_proto_init() {
  2548. if File_biService_proto != nil {
  2549. return
  2550. }
  2551. if !protoimpl.UnsafeEnabled {
  2552. file_biService_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2553. switch v := v.(*MyDataAssetReq); i {
  2554. case 0:
  2555. return &v.state
  2556. case 1:
  2557. return &v.sizeCache
  2558. case 2:
  2559. return &v.unknownFields
  2560. default:
  2561. return nil
  2562. }
  2563. }
  2564. file_biService_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2565. switch v := v.(*MyDataAssetResp); i {
  2566. case 0:
  2567. return &v.state
  2568. case 1:
  2569. return &v.sizeCache
  2570. case 2:
  2571. return &v.unknownFields
  2572. default:
  2573. return nil
  2574. }
  2575. }
  2576. file_biService_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2577. switch v := v.(*MyDataAsset); i {
  2578. case 0:
  2579. return &v.state
  2580. case 1:
  2581. return &v.sizeCache
  2582. case 2:
  2583. return &v.unknownFields
  2584. default:
  2585. return nil
  2586. }
  2587. }
  2588. file_biService_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2589. switch v := v.(*AddProjectReq); i {
  2590. case 0:
  2591. return &v.state
  2592. case 1:
  2593. return &v.sizeCache
  2594. case 2:
  2595. return &v.unknownFields
  2596. default:
  2597. return nil
  2598. }
  2599. }
  2600. file_biService_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2601. switch v := v.(*AddProjectResp); i {
  2602. case 0:
  2603. return &v.state
  2604. case 1:
  2605. return &v.sizeCache
  2606. case 2:
  2607. return &v.unknownFields
  2608. default:
  2609. return nil
  2610. }
  2611. }
  2612. file_biService_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2613. switch v := v.(*AddProject); i {
  2614. case 0:
  2615. return &v.state
  2616. case 1:
  2617. return &v.sizeCache
  2618. case 2:
  2619. return &v.unknownFields
  2620. default:
  2621. return nil
  2622. }
  2623. }
  2624. file_biService_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2625. switch v := v.(*GetInfoIdResp); i {
  2626. case 0:
  2627. return &v.state
  2628. case 1:
  2629. return &v.sizeCache
  2630. case 2:
  2631. return &v.unknownFields
  2632. default:
  2633. return nil
  2634. }
  2635. }
  2636. file_biService_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2637. switch v := v.(*DrawClueReq); i {
  2638. case 0:
  2639. return &v.state
  2640. case 1:
  2641. return &v.sizeCache
  2642. case 2:
  2643. return &v.unknownFields
  2644. default:
  2645. return nil
  2646. }
  2647. }
  2648. file_biService_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2649. switch v := v.(*CallReq); i {
  2650. case 0:
  2651. return &v.state
  2652. case 1:
  2653. return &v.sizeCache
  2654. case 2:
  2655. return &v.unknownFields
  2656. default:
  2657. return nil
  2658. }
  2659. }
  2660. file_biService_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2661. switch v := v.(*BiResp); i {
  2662. case 0:
  2663. return &v.state
  2664. case 1:
  2665. return &v.sizeCache
  2666. case 2:
  2667. return &v.unknownFields
  2668. default:
  2669. return nil
  2670. }
  2671. }
  2672. file_biService_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2673. switch v := v.(*BiReply); i {
  2674. case 0:
  2675. return &v.state
  2676. case 1:
  2677. return &v.sizeCache
  2678. case 2:
  2679. return &v.unknownFields
  2680. default:
  2681. return nil
  2682. }
  2683. }
  2684. file_biService_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2685. switch v := v.(*DistributeClueReq); i {
  2686. case 0:
  2687. return &v.state
  2688. case 1:
  2689. return &v.sizeCache
  2690. case 2:
  2691. return &v.unknownFields
  2692. default:
  2693. return nil
  2694. }
  2695. }
  2696. file_biService_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2697. switch v := v.(*DistributeDatas); i {
  2698. case 0:
  2699. return &v.state
  2700. case 1:
  2701. return &v.sizeCache
  2702. case 2:
  2703. return &v.unknownFields
  2704. default:
  2705. return nil
  2706. }
  2707. }
  2708. file_biService_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2709. switch v := v.(*ClueImportReq); i {
  2710. case 0:
  2711. return &v.state
  2712. case 1:
  2713. return &v.sizeCache
  2714. case 2:
  2715. return &v.unknownFields
  2716. default:
  2717. return nil
  2718. }
  2719. }
  2720. file_biService_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2721. switch v := v.(*ClueImportResp); i {
  2722. case 0:
  2723. return &v.state
  2724. case 1:
  2725. return &v.sizeCache
  2726. case 2:
  2727. return &v.unknownFields
  2728. default:
  2729. return nil
  2730. }
  2731. }
  2732. file_biService_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2733. switch v := v.(*ClueImport); i {
  2734. case 0:
  2735. return &v.state
  2736. case 1:
  2737. return &v.sizeCache
  2738. case 2:
  2739. return &v.unknownFields
  2740. default:
  2741. return nil
  2742. }
  2743. }
  2744. file_biService_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2745. switch v := v.(*ClueAddReq); i {
  2746. case 0:
  2747. return &v.state
  2748. case 1:
  2749. return &v.sizeCache
  2750. case 2:
  2751. return &v.unknownFields
  2752. default:
  2753. return nil
  2754. }
  2755. }
  2756. file_biService_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2757. switch v := v.(*SqlManageReq); i {
  2758. case 0:
  2759. return &v.state
  2760. case 1:
  2761. return &v.sizeCache
  2762. case 2:
  2763. return &v.unknownFields
  2764. default:
  2765. return nil
  2766. }
  2767. }
  2768. file_biService_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2769. switch v := v.(*MyInfoReq); i {
  2770. case 0:
  2771. return &v.state
  2772. case 1:
  2773. return &v.sizeCache
  2774. case 2:
  2775. return &v.unknownFields
  2776. default:
  2777. return nil
  2778. }
  2779. }
  2780. file_biService_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2781. switch v := v.(*Param); i {
  2782. case 0:
  2783. return &v.state
  2784. case 1:
  2785. return &v.sizeCache
  2786. case 2:
  2787. return &v.unknownFields
  2788. default:
  2789. return nil
  2790. }
  2791. }
  2792. file_biService_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2793. switch v := v.(*ExportReq); i {
  2794. case 0:
  2795. return &v.state
  2796. case 1:
  2797. return &v.sizeCache
  2798. case 2:
  2799. return &v.unknownFields
  2800. default:
  2801. return nil
  2802. }
  2803. }
  2804. file_biService_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2805. switch v := v.(*OperateReq); i {
  2806. case 0:
  2807. return &v.state
  2808. case 1:
  2809. return &v.sizeCache
  2810. case 2:
  2811. return &v.unknownFields
  2812. default:
  2813. return nil
  2814. }
  2815. }
  2816. file_biService_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2817. switch v := v.(*CompanyReq); i {
  2818. case 0:
  2819. return &v.state
  2820. case 1:
  2821. return &v.sizeCache
  2822. case 2:
  2823. return &v.unknownFields
  2824. default:
  2825. return nil
  2826. }
  2827. }
  2828. file_biService_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2829. switch v := v.(*CompanyResp); i {
  2830. case 0:
  2831. return &v.state
  2832. case 1:
  2833. return &v.sizeCache
  2834. case 2:
  2835. return &v.unknownFields
  2836. default:
  2837. return nil
  2838. }
  2839. }
  2840. file_biService_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2841. switch v := v.(*DistributeClueShowReq); i {
  2842. case 0:
  2843. return &v.state
  2844. case 1:
  2845. return &v.sizeCache
  2846. case 2:
  2847. return &v.unknownFields
  2848. default:
  2849. return nil
  2850. }
  2851. }
  2852. file_biService_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2853. switch v := v.(*DistributeClueShows); i {
  2854. case 0:
  2855. return &v.state
  2856. case 1:
  2857. return &v.sizeCache
  2858. case 2:
  2859. return &v.unknownFields
  2860. default:
  2861. return nil
  2862. }
  2863. }
  2864. file_biService_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2865. switch v := v.(*DistributeClueShowss); i {
  2866. case 0:
  2867. return &v.state
  2868. case 1:
  2869. return &v.sizeCache
  2870. case 2:
  2871. return &v.unknownFields
  2872. default:
  2873. return nil
  2874. }
  2875. }
  2876. file_biService_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2877. switch v := v.(*DistributeClueShowResp); i {
  2878. case 0:
  2879. return &v.state
  2880. case 1:
  2881. return &v.sizeCache
  2882. case 2:
  2883. return &v.unknownFields
  2884. default:
  2885. return nil
  2886. }
  2887. }
  2888. file_biService_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  2889. switch v := v.(*ExportByDbReq); i {
  2890. case 0:
  2891. return &v.state
  2892. case 1:
  2893. return &v.sizeCache
  2894. case 2:
  2895. return &v.unknownFields
  2896. default:
  2897. return nil
  2898. }
  2899. }
  2900. file_biService_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  2901. switch v := v.(*FilesData); i {
  2902. case 0:
  2903. return &v.state
  2904. case 1:
  2905. return &v.sizeCache
  2906. case 2:
  2907. return &v.unknownFields
  2908. default:
  2909. return nil
  2910. }
  2911. }
  2912. file_biService_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  2913. switch v := v.(*UpFileReq); i {
  2914. case 0:
  2915. return &v.state
  2916. case 1:
  2917. return &v.sizeCache
  2918. case 2:
  2919. return &v.unknownFields
  2920. default:
  2921. return nil
  2922. }
  2923. }
  2924. file_biService_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  2925. switch v := v.(*AcceptanceReq); i {
  2926. case 0:
  2927. return &v.state
  2928. case 1:
  2929. return &v.sizeCache
  2930. case 2:
  2931. return &v.unknownFields
  2932. default:
  2933. return nil
  2934. }
  2935. }
  2936. file_biService_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  2937. switch v := v.(*AcceptanceResp); i {
  2938. case 0:
  2939. return &v.state
  2940. case 1:
  2941. return &v.sizeCache
  2942. case 2:
  2943. return &v.unknownFields
  2944. default:
  2945. return nil
  2946. }
  2947. }
  2948. file_biService_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  2949. switch v := v.(*Acceptance); i {
  2950. case 0:
  2951. return &v.state
  2952. case 1:
  2953. return &v.sizeCache
  2954. case 2:
  2955. return &v.unknownFields
  2956. default:
  2957. return nil
  2958. }
  2959. }
  2960. file_biService_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  2961. switch v := v.(*SendMailReq); i {
  2962. case 0:
  2963. return &v.state
  2964. case 1:
  2965. return &v.sizeCache
  2966. case 2:
  2967. return &v.unknownFields
  2968. default:
  2969. return nil
  2970. }
  2971. }
  2972. }
  2973. type x struct{}
  2974. out := protoimpl.TypeBuilder{
  2975. File: protoimpl.DescBuilder{
  2976. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2977. RawDescriptor: file_biService_proto_rawDesc,
  2978. NumEnums: 0,
  2979. NumMessages: 35,
  2980. NumExtensions: 0,
  2981. NumServices: 1,
  2982. },
  2983. GoTypes: file_biService_proto_goTypes,
  2984. DependencyIndexes: file_biService_proto_depIdxs,
  2985. MessageInfos: file_biService_proto_msgTypes,
  2986. }.Build()
  2987. File_biService_proto = out.File
  2988. file_biService_proto_rawDesc = nil
  2989. file_biService_proto_goTypes = nil
  2990. file_biService_proto_depIdxs = nil
  2991. }