partner.pb.go 107 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.30.0-devel
  4. // protoc v4.22.3
  5. // source: partner.proto
  6. package partner
  7. import (
  8. common "git.ikuban.com/server/pw-protobuf/api/common"
  9. _ "google.golang.org/genproto/googleapis/api/annotations"
  10. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  11. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  12. emptypb "google.golang.org/protobuf/types/known/emptypb"
  13. reflect "reflect"
  14. sync "sync"
  15. )
  16. const (
  17. // Verify that this generated code is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  19. // Verify that runtime/protoimpl is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  21. )
  22. type OnlinePersonReply struct {
  23. state protoimpl.MessageState
  24. sizeCache protoimpl.SizeCache
  25. unknownFields protoimpl.UnknownFields
  26. UserManNum int64 `protobuf:"varint,1,opt,name=userManNum,proto3" json:"userManNum"` // 男用户在线数
  27. UserWomanNum int64 `protobuf:"varint,2,opt,name=userWomanNum,proto3" json:"userWomanNum"` // 女用户在线数
  28. UserOtherNum int64 `protobuf:"varint,3,opt,name=userOtherNum,proto3" json:"userOtherNum"` // 未填写性别的用户在线数
  29. }
  30. func (x *OnlinePersonReply) Reset() {
  31. *x = OnlinePersonReply{}
  32. if protoimpl.UnsafeEnabled {
  33. mi := &file_partner_proto_msgTypes[0]
  34. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  35. ms.StoreMessageInfo(mi)
  36. }
  37. }
  38. func (x *OnlinePersonReply) String() string {
  39. return protoimpl.X.MessageStringOf(x)
  40. }
  41. func (*OnlinePersonReply) ProtoMessage() {}
  42. func (x *OnlinePersonReply) ProtoReflect() protoreflect.Message {
  43. mi := &file_partner_proto_msgTypes[0]
  44. if protoimpl.UnsafeEnabled && x != nil {
  45. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  46. if ms.LoadMessageInfo() == nil {
  47. ms.StoreMessageInfo(mi)
  48. }
  49. return ms
  50. }
  51. return mi.MessageOf(x)
  52. }
  53. // Deprecated: Use OnlinePersonReply.ProtoReflect.Descriptor instead.
  54. func (*OnlinePersonReply) Descriptor() ([]byte, []int) {
  55. return file_partner_proto_rawDescGZIP(), []int{0}
  56. }
  57. func (x *OnlinePersonReply) GetUserManNum() int64 {
  58. if x != nil {
  59. return x.UserManNum
  60. }
  61. return 0
  62. }
  63. func (x *OnlinePersonReply) GetUserWomanNum() int64 {
  64. if x != nil {
  65. return x.UserWomanNum
  66. }
  67. return 0
  68. }
  69. func (x *OnlinePersonReply) GetUserOtherNum() int64 {
  70. if x != nil {
  71. return x.UserOtherNum
  72. }
  73. return 0
  74. }
  75. type SendOverOneMinuteUnreadMessageMessageRequest struct {
  76. state protoimpl.MessageState
  77. sizeCache protoimpl.SizeCache
  78. unknownFields protoimpl.UnknownFields
  79. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"`
  80. UnreadNum int64 `protobuf:"varint,2,opt,name=unreadNum,proto3" json:"unreadNum"`
  81. NameList []string `protobuf:"bytes,3,rep,name=nameList,proto3" json:"nameList"`
  82. }
  83. func (x *SendOverOneMinuteUnreadMessageMessageRequest) Reset() {
  84. *x = SendOverOneMinuteUnreadMessageMessageRequest{}
  85. if protoimpl.UnsafeEnabled {
  86. mi := &file_partner_proto_msgTypes[1]
  87. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  88. ms.StoreMessageInfo(mi)
  89. }
  90. }
  91. func (x *SendOverOneMinuteUnreadMessageMessageRequest) String() string {
  92. return protoimpl.X.MessageStringOf(x)
  93. }
  94. func (*SendOverOneMinuteUnreadMessageMessageRequest) ProtoMessage() {}
  95. func (x *SendOverOneMinuteUnreadMessageMessageRequest) ProtoReflect() protoreflect.Message {
  96. mi := &file_partner_proto_msgTypes[1]
  97. if protoimpl.UnsafeEnabled && x != nil {
  98. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  99. if ms.LoadMessageInfo() == nil {
  100. ms.StoreMessageInfo(mi)
  101. }
  102. return ms
  103. }
  104. return mi.MessageOf(x)
  105. }
  106. // Deprecated: Use SendOverOneMinuteUnreadMessageMessageRequest.ProtoReflect.Descriptor instead.
  107. func (*SendOverOneMinuteUnreadMessageMessageRequest) Descriptor() ([]byte, []int) {
  108. return file_partner_proto_rawDescGZIP(), []int{1}
  109. }
  110. func (x *SendOverOneMinuteUnreadMessageMessageRequest) GetPersonID() string {
  111. if x != nil {
  112. return x.PersonID
  113. }
  114. return ""
  115. }
  116. func (x *SendOverOneMinuteUnreadMessageMessageRequest) GetUnreadNum() int64 {
  117. if x != nil {
  118. return x.UnreadNum
  119. }
  120. return 0
  121. }
  122. func (x *SendOverOneMinuteUnreadMessageMessageRequest) GetNameList() []string {
  123. if x != nil {
  124. return x.NameList
  125. }
  126. return make([]string, 0)
  127. }
  128. type GetRecommendPartnerDBRequest struct {
  129. state protoimpl.MessageState
  130. sizeCache protoimpl.SizeCache
  131. unknownFields protoimpl.UnknownFields
  132. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type"` // 类型
  133. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
  134. IdentifyIds []string `protobuf:"bytes,3,rep,name=identifyIds,proto3" json:"identifyIds"` // 匹配过的identifyID
  135. }
  136. func (x *GetRecommendPartnerDBRequest) Reset() {
  137. *x = GetRecommendPartnerDBRequest{}
  138. if protoimpl.UnsafeEnabled {
  139. mi := &file_partner_proto_msgTypes[2]
  140. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  141. ms.StoreMessageInfo(mi)
  142. }
  143. }
  144. func (x *GetRecommendPartnerDBRequest) String() string {
  145. return protoimpl.X.MessageStringOf(x)
  146. }
  147. func (*GetRecommendPartnerDBRequest) ProtoMessage() {}
  148. func (x *GetRecommendPartnerDBRequest) ProtoReflect() protoreflect.Message {
  149. mi := &file_partner_proto_msgTypes[2]
  150. if protoimpl.UnsafeEnabled && x != nil {
  151. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  152. if ms.LoadMessageInfo() == nil {
  153. ms.StoreMessageInfo(mi)
  154. }
  155. return ms
  156. }
  157. return mi.MessageOf(x)
  158. }
  159. // Deprecated: Use GetRecommendPartnerDBRequest.ProtoReflect.Descriptor instead.
  160. func (*GetRecommendPartnerDBRequest) Descriptor() ([]byte, []int) {
  161. return file_partner_proto_rawDescGZIP(), []int{2}
  162. }
  163. func (x *GetRecommendPartnerDBRequest) GetType() string {
  164. if x != nil {
  165. return x.Type
  166. }
  167. return ""
  168. }
  169. func (x *GetRecommendPartnerDBRequest) GetSex() int64 {
  170. if x != nil {
  171. return x.Sex
  172. }
  173. return 0
  174. }
  175. func (x *GetRecommendPartnerDBRequest) GetIdentifyIds() []string {
  176. if x != nil {
  177. return x.IdentifyIds
  178. }
  179. return make([]string, 0)
  180. }
  181. type FindExamineRecordListRequest struct {
  182. state protoimpl.MessageState
  183. sizeCache protoimpl.SizeCache
  184. unknownFields protoimpl.UnknownFields
  185. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  186. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  187. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"` // 审核状态
  188. Pid int64 `protobuf:"varint,4,opt,name=pid,proto3" json:"pid"` // 陪伴员的ID(number)
  189. }
  190. func (x *FindExamineRecordListRequest) Reset() {
  191. *x = FindExamineRecordListRequest{}
  192. if protoimpl.UnsafeEnabled {
  193. mi := &file_partner_proto_msgTypes[3]
  194. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  195. ms.StoreMessageInfo(mi)
  196. }
  197. }
  198. func (x *FindExamineRecordListRequest) String() string {
  199. return protoimpl.X.MessageStringOf(x)
  200. }
  201. func (*FindExamineRecordListRequest) ProtoMessage() {}
  202. func (x *FindExamineRecordListRequest) ProtoReflect() protoreflect.Message {
  203. mi := &file_partner_proto_msgTypes[3]
  204. if protoimpl.UnsafeEnabled && x != nil {
  205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  206. if ms.LoadMessageInfo() == nil {
  207. ms.StoreMessageInfo(mi)
  208. }
  209. return ms
  210. }
  211. return mi.MessageOf(x)
  212. }
  213. // Deprecated: Use FindExamineRecordListRequest.ProtoReflect.Descriptor instead.
  214. func (*FindExamineRecordListRequest) Descriptor() ([]byte, []int) {
  215. return file_partner_proto_rawDescGZIP(), []int{3}
  216. }
  217. func (x *FindExamineRecordListRequest) GetNextId() int64 {
  218. if x != nil {
  219. return x.NextId
  220. }
  221. return 0
  222. }
  223. func (x *FindExamineRecordListRequest) GetOffset() int64 {
  224. if x != nil {
  225. return x.Offset
  226. }
  227. return 0
  228. }
  229. func (x *FindExamineRecordListRequest) GetStatus() string {
  230. if x != nil {
  231. return x.Status
  232. }
  233. return ""
  234. }
  235. func (x *FindExamineRecordListRequest) GetPid() int64 {
  236. if x != nil {
  237. return x.Pid
  238. }
  239. return 0
  240. }
  241. type FindExamineRecordListReply struct {
  242. state protoimpl.MessageState
  243. sizeCache protoimpl.SizeCache
  244. unknownFields protoimpl.UnknownFields
  245. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  246. List []*ExamineRecordInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  247. }
  248. func (x *FindExamineRecordListReply) Reset() {
  249. *x = FindExamineRecordListReply{}
  250. if protoimpl.UnsafeEnabled {
  251. mi := &file_partner_proto_msgTypes[4]
  252. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  253. ms.StoreMessageInfo(mi)
  254. }
  255. }
  256. func (x *FindExamineRecordListReply) String() string {
  257. return protoimpl.X.MessageStringOf(x)
  258. }
  259. func (*FindExamineRecordListReply) ProtoMessage() {}
  260. func (x *FindExamineRecordListReply) ProtoReflect() protoreflect.Message {
  261. mi := &file_partner_proto_msgTypes[4]
  262. if protoimpl.UnsafeEnabled && x != nil {
  263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  264. if ms.LoadMessageInfo() == nil {
  265. ms.StoreMessageInfo(mi)
  266. }
  267. return ms
  268. }
  269. return mi.MessageOf(x)
  270. }
  271. // Deprecated: Use FindExamineRecordListReply.ProtoReflect.Descriptor instead.
  272. func (*FindExamineRecordListReply) Descriptor() ([]byte, []int) {
  273. return file_partner_proto_rawDescGZIP(), []int{4}
  274. }
  275. func (x *FindExamineRecordListReply) GetNextId() int64 {
  276. if x != nil {
  277. return x.NextId
  278. }
  279. return 0
  280. }
  281. func (x *FindExamineRecordListReply) GetList() []*ExamineRecordInfo {
  282. if x != nil {
  283. return x.List
  284. }
  285. return make([]*ExamineRecordInfo, 0)
  286. }
  287. type ExamineRecordInfo struct {
  288. state protoimpl.MessageState
  289. sizeCache protoimpl.SizeCache
  290. unknownFields protoimpl.UnknownFields
  291. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID(string)
  292. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  293. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  294. IntroduceVoice string `protobuf:"bytes,4,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
  295. Signature string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  296. Pictures []string `protobuf:"bytes,6,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
  297. Sex int64 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex"` // 性别
  298. Pid int64 `protobuf:"varint,8,opt,name=pid,proto3" json:"pid"` // 接待员ID(number)
  299. ExamineStatus string `protobuf:"bytes,9,opt,name=examineStatus,proto3" json:"examineStatus"` //审核状态
  300. Id int64 `protobuf:"varint,10,opt,name=id,proto3" json:"id"` //id
  301. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  302. Constellation string `protobuf:"bytes,12,opt,name=constellation,proto3" json:"constellation"` // 星座
  303. CreateTime int64 `protobuf:"varint,13,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  304. }
  305. func (x *ExamineRecordInfo) Reset() {
  306. *x = ExamineRecordInfo{}
  307. if protoimpl.UnsafeEnabled {
  308. mi := &file_partner_proto_msgTypes[5]
  309. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  310. ms.StoreMessageInfo(mi)
  311. }
  312. }
  313. func (x *ExamineRecordInfo) String() string {
  314. return protoimpl.X.MessageStringOf(x)
  315. }
  316. func (*ExamineRecordInfo) ProtoMessage() {}
  317. func (x *ExamineRecordInfo) ProtoReflect() protoreflect.Message {
  318. mi := &file_partner_proto_msgTypes[5]
  319. if protoimpl.UnsafeEnabled && x != nil {
  320. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  321. if ms.LoadMessageInfo() == nil {
  322. ms.StoreMessageInfo(mi)
  323. }
  324. return ms
  325. }
  326. return mi.MessageOf(x)
  327. }
  328. // Deprecated: Use ExamineRecordInfo.ProtoReflect.Descriptor instead.
  329. func (*ExamineRecordInfo) Descriptor() ([]byte, []int) {
  330. return file_partner_proto_rawDescGZIP(), []int{5}
  331. }
  332. func (x *ExamineRecordInfo) GetPartnerId() string {
  333. if x != nil {
  334. return x.PartnerId
  335. }
  336. return ""
  337. }
  338. func (x *ExamineRecordInfo) GetNickname() string {
  339. if x != nil {
  340. return x.Nickname
  341. }
  342. return ""
  343. }
  344. func (x *ExamineRecordInfo) GetAvatarUrl() string {
  345. if x != nil {
  346. return x.AvatarUrl
  347. }
  348. return ""
  349. }
  350. func (x *ExamineRecordInfo) GetIntroduceVoice() string {
  351. if x != nil {
  352. return x.IntroduceVoice
  353. }
  354. return ""
  355. }
  356. func (x *ExamineRecordInfo) GetSignature() string {
  357. if x != nil {
  358. return x.Signature
  359. }
  360. return ""
  361. }
  362. func (x *ExamineRecordInfo) GetPictures() []string {
  363. if x != nil {
  364. return x.Pictures
  365. }
  366. return make([]string, 0)
  367. }
  368. func (x *ExamineRecordInfo) GetSex() int64 {
  369. if x != nil {
  370. return x.Sex
  371. }
  372. return 0
  373. }
  374. func (x *ExamineRecordInfo) GetPid() int64 {
  375. if x != nil {
  376. return x.Pid
  377. }
  378. return 0
  379. }
  380. func (x *ExamineRecordInfo) GetExamineStatus() string {
  381. if x != nil {
  382. return x.ExamineStatus
  383. }
  384. return ""
  385. }
  386. func (x *ExamineRecordInfo) GetId() int64 {
  387. if x != nil {
  388. return x.Id
  389. }
  390. return 0
  391. }
  392. func (x *ExamineRecordInfo) GetAge() int64 {
  393. if x != nil {
  394. return x.Age
  395. }
  396. return 0
  397. }
  398. func (x *ExamineRecordInfo) GetConstellation() string {
  399. if x != nil {
  400. return x.Constellation
  401. }
  402. return ""
  403. }
  404. func (x *ExamineRecordInfo) GetCreateTime() int64 {
  405. if x != nil {
  406. return x.CreateTime
  407. }
  408. return 0
  409. }
  410. type FindExamineListReply struct {
  411. state protoimpl.MessageState
  412. sizeCache protoimpl.SizeCache
  413. unknownFields protoimpl.UnknownFields
  414. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  415. List []*ExamineInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  416. }
  417. func (x *FindExamineListReply) Reset() {
  418. *x = FindExamineListReply{}
  419. if protoimpl.UnsafeEnabled {
  420. mi := &file_partner_proto_msgTypes[6]
  421. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  422. ms.StoreMessageInfo(mi)
  423. }
  424. }
  425. func (x *FindExamineListReply) String() string {
  426. return protoimpl.X.MessageStringOf(x)
  427. }
  428. func (*FindExamineListReply) ProtoMessage() {}
  429. func (x *FindExamineListReply) ProtoReflect() protoreflect.Message {
  430. mi := &file_partner_proto_msgTypes[6]
  431. if protoimpl.UnsafeEnabled && x != nil {
  432. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  433. if ms.LoadMessageInfo() == nil {
  434. ms.StoreMessageInfo(mi)
  435. }
  436. return ms
  437. }
  438. return mi.MessageOf(x)
  439. }
  440. // Deprecated: Use FindExamineListReply.ProtoReflect.Descriptor instead.
  441. func (*FindExamineListReply) Descriptor() ([]byte, []int) {
  442. return file_partner_proto_rawDescGZIP(), []int{6}
  443. }
  444. func (x *FindExamineListReply) GetNextId() string {
  445. if x != nil {
  446. return x.NextId
  447. }
  448. return ""
  449. }
  450. func (x *FindExamineListReply) GetList() []*ExamineInfo {
  451. if x != nil {
  452. return x.List
  453. }
  454. return make([]*ExamineInfo, 0)
  455. }
  456. type ExamineInfo struct {
  457. state protoimpl.MessageState
  458. sizeCache protoimpl.SizeCache
  459. unknownFields protoimpl.UnknownFields
  460. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID(string)
  461. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  462. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  463. IntroduceVoice string `protobuf:"bytes,4,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
  464. Signature string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  465. Pictures []string `protobuf:"bytes,6,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
  466. Sex int64 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex"` // 性别
  467. Pid int64 `protobuf:"varint,8,opt,name=pid,proto3" json:"pid"` // 接待员ID(number)
  468. Age int64 `protobuf:"varint,9,opt,name=age,proto3" json:"age"` // 年龄
  469. Constellation string `protobuf:"bytes,10,opt,name=constellation,proto3" json:"constellation"` // 星座
  470. WxNickname string `protobuf:"bytes,11,opt,name=wxNickname,proto3" json:"wxNickname"` // 昵称
  471. WxAvatarUrl string `protobuf:"bytes,12,opt,name=wxAvatarUrl,proto3" json:"wxAvatarUrl"` // 头像
  472. }
  473. func (x *ExamineInfo) Reset() {
  474. *x = ExamineInfo{}
  475. if protoimpl.UnsafeEnabled {
  476. mi := &file_partner_proto_msgTypes[7]
  477. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  478. ms.StoreMessageInfo(mi)
  479. }
  480. }
  481. func (x *ExamineInfo) String() string {
  482. return protoimpl.X.MessageStringOf(x)
  483. }
  484. func (*ExamineInfo) ProtoMessage() {}
  485. func (x *ExamineInfo) ProtoReflect() protoreflect.Message {
  486. mi := &file_partner_proto_msgTypes[7]
  487. if protoimpl.UnsafeEnabled && x != nil {
  488. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  489. if ms.LoadMessageInfo() == nil {
  490. ms.StoreMessageInfo(mi)
  491. }
  492. return ms
  493. }
  494. return mi.MessageOf(x)
  495. }
  496. // Deprecated: Use ExamineInfo.ProtoReflect.Descriptor instead.
  497. func (*ExamineInfo) Descriptor() ([]byte, []int) {
  498. return file_partner_proto_rawDescGZIP(), []int{7}
  499. }
  500. func (x *ExamineInfo) GetPartnerId() string {
  501. if x != nil {
  502. return x.PartnerId
  503. }
  504. return ""
  505. }
  506. func (x *ExamineInfo) GetNickname() string {
  507. if x != nil {
  508. return x.Nickname
  509. }
  510. return ""
  511. }
  512. func (x *ExamineInfo) GetAvatarUrl() string {
  513. if x != nil {
  514. return x.AvatarUrl
  515. }
  516. return ""
  517. }
  518. func (x *ExamineInfo) GetIntroduceVoice() string {
  519. if x != nil {
  520. return x.IntroduceVoice
  521. }
  522. return ""
  523. }
  524. func (x *ExamineInfo) GetSignature() string {
  525. if x != nil {
  526. return x.Signature
  527. }
  528. return ""
  529. }
  530. func (x *ExamineInfo) GetPictures() []string {
  531. if x != nil {
  532. return x.Pictures
  533. }
  534. return make([]string, 0)
  535. }
  536. func (x *ExamineInfo) GetSex() int64 {
  537. if x != nil {
  538. return x.Sex
  539. }
  540. return 0
  541. }
  542. func (x *ExamineInfo) GetPid() int64 {
  543. if x != nil {
  544. return x.Pid
  545. }
  546. return 0
  547. }
  548. func (x *ExamineInfo) GetAge() int64 {
  549. if x != nil {
  550. return x.Age
  551. }
  552. return 0
  553. }
  554. func (x *ExamineInfo) GetConstellation() string {
  555. if x != nil {
  556. return x.Constellation
  557. }
  558. return ""
  559. }
  560. func (x *ExamineInfo) GetWxNickname() string {
  561. if x != nil {
  562. return x.WxNickname
  563. }
  564. return ""
  565. }
  566. func (x *ExamineInfo) GetWxAvatarUrl() string {
  567. if x != nil {
  568. return x.WxAvatarUrl
  569. }
  570. return ""
  571. }
  572. type ExaminePartnerRequest struct {
  573. state protoimpl.MessageState
  574. sizeCache protoimpl.SizeCache
  575. unknownFields protoimpl.UnknownFields
  576. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
  577. IsPass bool `protobuf:"varint,2,opt,name=isPass,proto3" json:"isPass"` // 是否审核通过
  578. }
  579. func (x *ExaminePartnerRequest) Reset() {
  580. *x = ExaminePartnerRequest{}
  581. if protoimpl.UnsafeEnabled {
  582. mi := &file_partner_proto_msgTypes[8]
  583. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  584. ms.StoreMessageInfo(mi)
  585. }
  586. }
  587. func (x *ExaminePartnerRequest) String() string {
  588. return protoimpl.X.MessageStringOf(x)
  589. }
  590. func (*ExaminePartnerRequest) ProtoMessage() {}
  591. func (x *ExaminePartnerRequest) ProtoReflect() protoreflect.Message {
  592. mi := &file_partner_proto_msgTypes[8]
  593. if protoimpl.UnsafeEnabled && x != nil {
  594. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  595. if ms.LoadMessageInfo() == nil {
  596. ms.StoreMessageInfo(mi)
  597. }
  598. return ms
  599. }
  600. return mi.MessageOf(x)
  601. }
  602. // Deprecated: Use ExaminePartnerRequest.ProtoReflect.Descriptor instead.
  603. func (*ExaminePartnerRequest) Descriptor() ([]byte, []int) {
  604. return file_partner_proto_rawDescGZIP(), []int{8}
  605. }
  606. func (x *ExaminePartnerRequest) GetPartnerId() string {
  607. if x != nil {
  608. return x.PartnerId
  609. }
  610. return ""
  611. }
  612. func (x *ExaminePartnerRequest) GetIsPass() bool {
  613. if x != nil {
  614. return x.IsPass
  615. }
  616. return false
  617. }
  618. type PartnerGetRoomBalanceAndTodayBalanceReply struct {
  619. state protoimpl.MessageState
  620. sizeCache protoimpl.SizeCache
  621. unknownFields protoimpl.UnknownFields
  622. TodayProfit int64 `protobuf:"varint,1,opt,name=todayProfit,proto3" json:"todayProfit"` // 今日收益
  623. RoomProfit int64 `protobuf:"varint,2,opt,name=roomProfit,proto3" json:"roomProfit"` // 房间收益
  624. }
  625. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) Reset() {
  626. *x = PartnerGetRoomBalanceAndTodayBalanceReply{}
  627. if protoimpl.UnsafeEnabled {
  628. mi := &file_partner_proto_msgTypes[9]
  629. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  630. ms.StoreMessageInfo(mi)
  631. }
  632. }
  633. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) String() string {
  634. return protoimpl.X.MessageStringOf(x)
  635. }
  636. func (*PartnerGetRoomBalanceAndTodayBalanceReply) ProtoMessage() {}
  637. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) ProtoReflect() protoreflect.Message {
  638. mi := &file_partner_proto_msgTypes[9]
  639. if protoimpl.UnsafeEnabled && x != nil {
  640. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  641. if ms.LoadMessageInfo() == nil {
  642. ms.StoreMessageInfo(mi)
  643. }
  644. return ms
  645. }
  646. return mi.MessageOf(x)
  647. }
  648. // Deprecated: Use PartnerGetRoomBalanceAndTodayBalanceReply.ProtoReflect.Descriptor instead.
  649. func (*PartnerGetRoomBalanceAndTodayBalanceReply) Descriptor() ([]byte, []int) {
  650. return file_partner_proto_rawDescGZIP(), []int{9}
  651. }
  652. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) GetTodayProfit() int64 {
  653. if x != nil {
  654. return x.TodayProfit
  655. }
  656. return 0
  657. }
  658. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) GetRoomProfit() int64 {
  659. if x != nil {
  660. return x.RoomProfit
  661. }
  662. return 0
  663. }
  664. type PartnerCollectIDsRequest struct {
  665. state protoimpl.MessageState
  666. sizeCache protoimpl.SizeCache
  667. unknownFields protoimpl.UnknownFields
  668. ChatRecordIds []int64 `protobuf:"varint,1,rep,packed,name=chatRecordIds,proto3" json:"chatRecordIds"` // 记录ID
  669. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  670. }
  671. func (x *PartnerCollectIDsRequest) Reset() {
  672. *x = PartnerCollectIDsRequest{}
  673. if protoimpl.UnsafeEnabled {
  674. mi := &file_partner_proto_msgTypes[10]
  675. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  676. ms.StoreMessageInfo(mi)
  677. }
  678. }
  679. func (x *PartnerCollectIDsRequest) String() string {
  680. return protoimpl.X.MessageStringOf(x)
  681. }
  682. func (*PartnerCollectIDsRequest) ProtoMessage() {}
  683. func (x *PartnerCollectIDsRequest) ProtoReflect() protoreflect.Message {
  684. mi := &file_partner_proto_msgTypes[10]
  685. if protoimpl.UnsafeEnabled && x != nil {
  686. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  687. if ms.LoadMessageInfo() == nil {
  688. ms.StoreMessageInfo(mi)
  689. }
  690. return ms
  691. }
  692. return mi.MessageOf(x)
  693. }
  694. // Deprecated: Use PartnerCollectIDsRequest.ProtoReflect.Descriptor instead.
  695. func (*PartnerCollectIDsRequest) Descriptor() ([]byte, []int) {
  696. return file_partner_proto_rawDescGZIP(), []int{10}
  697. }
  698. func (x *PartnerCollectIDsRequest) GetChatRecordIds() []int64 {
  699. if x != nil {
  700. return x.ChatRecordIds
  701. }
  702. return make([]int64, 0)
  703. }
  704. func (x *PartnerCollectIDsRequest) GetRoomId() int64 {
  705. if x != nil {
  706. return x.RoomId
  707. }
  708. return 0
  709. }
  710. type PartnerCollectRequest struct {
  711. state protoimpl.MessageState
  712. sizeCache protoimpl.SizeCache
  713. unknownFields protoimpl.UnknownFields
  714. ChatRecordId int64 `protobuf:"varint,1,opt,name=chatRecordId,proto3" json:"chatRecordId"` // 记录ID
  715. }
  716. func (x *PartnerCollectRequest) Reset() {
  717. *x = PartnerCollectRequest{}
  718. if protoimpl.UnsafeEnabled {
  719. mi := &file_partner_proto_msgTypes[11]
  720. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  721. ms.StoreMessageInfo(mi)
  722. }
  723. }
  724. func (x *PartnerCollectRequest) String() string {
  725. return protoimpl.X.MessageStringOf(x)
  726. }
  727. func (*PartnerCollectRequest) ProtoMessage() {}
  728. func (x *PartnerCollectRequest) ProtoReflect() protoreflect.Message {
  729. mi := &file_partner_proto_msgTypes[11]
  730. if protoimpl.UnsafeEnabled && x != nil {
  731. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  732. if ms.LoadMessageInfo() == nil {
  733. ms.StoreMessageInfo(mi)
  734. }
  735. return ms
  736. }
  737. return mi.MessageOf(x)
  738. }
  739. // Deprecated: Use PartnerCollectRequest.ProtoReflect.Descriptor instead.
  740. func (*PartnerCollectRequest) Descriptor() ([]byte, []int) {
  741. return file_partner_proto_rawDescGZIP(), []int{11}
  742. }
  743. func (x *PartnerCollectRequest) GetChatRecordId() int64 {
  744. if x != nil {
  745. return x.ChatRecordId
  746. }
  747. return 0
  748. }
  749. type CreateScripRequest struct {
  750. state protoimpl.MessageState
  751. sizeCache protoimpl.SizeCache
  752. unknownFields protoimpl.UnknownFields
  753. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  754. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  755. }
  756. func (x *CreateScripRequest) Reset() {
  757. *x = CreateScripRequest{}
  758. if protoimpl.UnsafeEnabled {
  759. mi := &file_partner_proto_msgTypes[12]
  760. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  761. ms.StoreMessageInfo(mi)
  762. }
  763. }
  764. func (x *CreateScripRequest) String() string {
  765. return protoimpl.X.MessageStringOf(x)
  766. }
  767. func (*CreateScripRequest) ProtoMessage() {}
  768. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  769. mi := &file_partner_proto_msgTypes[12]
  770. if protoimpl.UnsafeEnabled && x != nil {
  771. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  772. if ms.LoadMessageInfo() == nil {
  773. ms.StoreMessageInfo(mi)
  774. }
  775. return ms
  776. }
  777. return mi.MessageOf(x)
  778. }
  779. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  780. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  781. return file_partner_proto_rawDescGZIP(), []int{12}
  782. }
  783. func (x *CreateScripRequest) GetText() string {
  784. if x != nil {
  785. return x.Text
  786. }
  787. return ""
  788. }
  789. func (x *CreateScripRequest) GetPictureUrl() string {
  790. if x != nil {
  791. return x.PictureUrl
  792. }
  793. return ""
  794. }
  795. type ReplyScripRequest struct {
  796. state protoimpl.MessageState
  797. sizeCache protoimpl.SizeCache
  798. unknownFields protoimpl.UnknownFields
  799. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  800. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  801. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  802. }
  803. func (x *ReplyScripRequest) Reset() {
  804. *x = ReplyScripRequest{}
  805. if protoimpl.UnsafeEnabled {
  806. mi := &file_partner_proto_msgTypes[13]
  807. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  808. ms.StoreMessageInfo(mi)
  809. }
  810. }
  811. func (x *ReplyScripRequest) String() string {
  812. return protoimpl.X.MessageStringOf(x)
  813. }
  814. func (*ReplyScripRequest) ProtoMessage() {}
  815. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  816. mi := &file_partner_proto_msgTypes[13]
  817. if protoimpl.UnsafeEnabled && x != nil {
  818. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  819. if ms.LoadMessageInfo() == nil {
  820. ms.StoreMessageInfo(mi)
  821. }
  822. return ms
  823. }
  824. return mi.MessageOf(x)
  825. }
  826. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  827. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  828. return file_partner_proto_rawDescGZIP(), []int{13}
  829. }
  830. func (x *ReplyScripRequest) GetScripId() int64 {
  831. if x != nil {
  832. return x.ScripId
  833. }
  834. return 0
  835. }
  836. func (x *ReplyScripRequest) GetMessage() *common.Message {
  837. if x != nil && x.Message != nil {
  838. return x.Message
  839. }
  840. return &common.Message{}
  841. }
  842. func (x *ReplyScripRequest) GetMsgType() string {
  843. if x != nil {
  844. return x.MsgType
  845. }
  846. return ""
  847. }
  848. type PartnerWithdrawRecordListReply struct {
  849. state protoimpl.MessageState
  850. sizeCache protoimpl.SizeCache
  851. unknownFields protoimpl.UnknownFields
  852. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  853. List []*WithdrawInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  854. }
  855. func (x *PartnerWithdrawRecordListReply) Reset() {
  856. *x = PartnerWithdrawRecordListReply{}
  857. if protoimpl.UnsafeEnabled {
  858. mi := &file_partner_proto_msgTypes[14]
  859. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  860. ms.StoreMessageInfo(mi)
  861. }
  862. }
  863. func (x *PartnerWithdrawRecordListReply) String() string {
  864. return protoimpl.X.MessageStringOf(x)
  865. }
  866. func (*PartnerWithdrawRecordListReply) ProtoMessage() {}
  867. func (x *PartnerWithdrawRecordListReply) ProtoReflect() protoreflect.Message {
  868. mi := &file_partner_proto_msgTypes[14]
  869. if protoimpl.UnsafeEnabled && x != nil {
  870. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  871. if ms.LoadMessageInfo() == nil {
  872. ms.StoreMessageInfo(mi)
  873. }
  874. return ms
  875. }
  876. return mi.MessageOf(x)
  877. }
  878. // Deprecated: Use PartnerWithdrawRecordListReply.ProtoReflect.Descriptor instead.
  879. func (*PartnerWithdrawRecordListReply) Descriptor() ([]byte, []int) {
  880. return file_partner_proto_rawDescGZIP(), []int{14}
  881. }
  882. func (x *PartnerWithdrawRecordListReply) GetNextId() int64 {
  883. if x != nil {
  884. return x.NextId
  885. }
  886. return 0
  887. }
  888. func (x *PartnerWithdrawRecordListReply) GetList() []*WithdrawInfo {
  889. if x != nil {
  890. return x.List
  891. }
  892. return make([]*WithdrawInfo, 0)
  893. }
  894. type WithdrawInfo struct {
  895. state protoimpl.MessageState
  896. sizeCache protoimpl.SizeCache
  897. unknownFields protoimpl.UnknownFields
  898. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 记录ID
  899. Money int64 `protobuf:"varint,2,opt,name=money,proto3" json:"money"` // 提现多少钱
  900. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 提现需要多少积分
  901. Status string `protobuf:"bytes,4,opt,name=status,proto3" json:"status"` // 状态
  902. Result string `protobuf:"bytes,5,opt,name=result,proto3" json:"result"` // 结果
  903. CreateTime int64 `protobuf:"varint,6,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  904. SuccessTime int64 `protobuf:"varint,7,opt,name=successTime,proto3" json:"successTime"` // 成功时间
  905. }
  906. func (x *WithdrawInfo) Reset() {
  907. *x = WithdrawInfo{}
  908. if protoimpl.UnsafeEnabled {
  909. mi := &file_partner_proto_msgTypes[15]
  910. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  911. ms.StoreMessageInfo(mi)
  912. }
  913. }
  914. func (x *WithdrawInfo) String() string {
  915. return protoimpl.X.MessageStringOf(x)
  916. }
  917. func (*WithdrawInfo) ProtoMessage() {}
  918. func (x *WithdrawInfo) ProtoReflect() protoreflect.Message {
  919. mi := &file_partner_proto_msgTypes[15]
  920. if protoimpl.UnsafeEnabled && x != nil {
  921. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  922. if ms.LoadMessageInfo() == nil {
  923. ms.StoreMessageInfo(mi)
  924. }
  925. return ms
  926. }
  927. return mi.MessageOf(x)
  928. }
  929. // Deprecated: Use WithdrawInfo.ProtoReflect.Descriptor instead.
  930. func (*WithdrawInfo) Descriptor() ([]byte, []int) {
  931. return file_partner_proto_rawDescGZIP(), []int{15}
  932. }
  933. func (x *WithdrawInfo) GetId() int64 {
  934. if x != nil {
  935. return x.Id
  936. }
  937. return 0
  938. }
  939. func (x *WithdrawInfo) GetMoney() int64 {
  940. if x != nil {
  941. return x.Money
  942. }
  943. return 0
  944. }
  945. func (x *WithdrawInfo) GetCredit() int64 {
  946. if x != nil {
  947. return x.Credit
  948. }
  949. return 0
  950. }
  951. func (x *WithdrawInfo) GetStatus() string {
  952. if x != nil {
  953. return x.Status
  954. }
  955. return ""
  956. }
  957. func (x *WithdrawInfo) GetResult() string {
  958. if x != nil {
  959. return x.Result
  960. }
  961. return ""
  962. }
  963. func (x *WithdrawInfo) GetCreateTime() int64 {
  964. if x != nil {
  965. return x.CreateTime
  966. }
  967. return 0
  968. }
  969. func (x *WithdrawInfo) GetSuccessTime() int64 {
  970. if x != nil {
  971. return x.SuccessTime
  972. }
  973. return 0
  974. }
  975. type PartnerWithdrawTemplateListReply struct {
  976. state protoimpl.MessageState
  977. sizeCache protoimpl.SizeCache
  978. unknownFields protoimpl.UnknownFields
  979. List []*PartnerWithdrawTemplateInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  980. }
  981. func (x *PartnerWithdrawTemplateListReply) Reset() {
  982. *x = PartnerWithdrawTemplateListReply{}
  983. if protoimpl.UnsafeEnabled {
  984. mi := &file_partner_proto_msgTypes[16]
  985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  986. ms.StoreMessageInfo(mi)
  987. }
  988. }
  989. func (x *PartnerWithdrawTemplateListReply) String() string {
  990. return protoimpl.X.MessageStringOf(x)
  991. }
  992. func (*PartnerWithdrawTemplateListReply) ProtoMessage() {}
  993. func (x *PartnerWithdrawTemplateListReply) ProtoReflect() protoreflect.Message {
  994. mi := &file_partner_proto_msgTypes[16]
  995. if protoimpl.UnsafeEnabled && x != nil {
  996. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  997. if ms.LoadMessageInfo() == nil {
  998. ms.StoreMessageInfo(mi)
  999. }
  1000. return ms
  1001. }
  1002. return mi.MessageOf(x)
  1003. }
  1004. // Deprecated: Use PartnerWithdrawTemplateListReply.ProtoReflect.Descriptor instead.
  1005. func (*PartnerWithdrawTemplateListReply) Descriptor() ([]byte, []int) {
  1006. return file_partner_proto_rawDescGZIP(), []int{16}
  1007. }
  1008. func (x *PartnerWithdrawTemplateListReply) GetList() []*PartnerWithdrawTemplateInfo {
  1009. if x != nil {
  1010. return x.List
  1011. }
  1012. return make([]*PartnerWithdrawTemplateInfo, 0)
  1013. }
  1014. type PartnerWithdrawTemplateInfo struct {
  1015. state protoimpl.MessageState
  1016. sizeCache protoimpl.SizeCache
  1017. unknownFields protoimpl.UnknownFields
  1018. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1019. Money int64 `protobuf:"varint,2,opt,name=money,proto3" json:"money"` // 提现多少钱
  1020. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 提现需要多少积分
  1021. Title string `protobuf:"bytes,4,opt,name=title,proto3" json:"title"` // 提现的标题
  1022. }
  1023. func (x *PartnerWithdrawTemplateInfo) Reset() {
  1024. *x = PartnerWithdrawTemplateInfo{}
  1025. if protoimpl.UnsafeEnabled {
  1026. mi := &file_partner_proto_msgTypes[17]
  1027. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1028. ms.StoreMessageInfo(mi)
  1029. }
  1030. }
  1031. func (x *PartnerWithdrawTemplateInfo) String() string {
  1032. return protoimpl.X.MessageStringOf(x)
  1033. }
  1034. func (*PartnerWithdrawTemplateInfo) ProtoMessage() {}
  1035. func (x *PartnerWithdrawTemplateInfo) ProtoReflect() protoreflect.Message {
  1036. mi := &file_partner_proto_msgTypes[17]
  1037. if protoimpl.UnsafeEnabled && x != nil {
  1038. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1039. if ms.LoadMessageInfo() == nil {
  1040. ms.StoreMessageInfo(mi)
  1041. }
  1042. return ms
  1043. }
  1044. return mi.MessageOf(x)
  1045. }
  1046. // Deprecated: Use PartnerWithdrawTemplateInfo.ProtoReflect.Descriptor instead.
  1047. func (*PartnerWithdrawTemplateInfo) Descriptor() ([]byte, []int) {
  1048. return file_partner_proto_rawDescGZIP(), []int{17}
  1049. }
  1050. func (x *PartnerWithdrawTemplateInfo) GetId() int64 {
  1051. if x != nil {
  1052. return x.Id
  1053. }
  1054. return 0
  1055. }
  1056. func (x *PartnerWithdrawTemplateInfo) GetMoney() int64 {
  1057. if x != nil {
  1058. return x.Money
  1059. }
  1060. return 0
  1061. }
  1062. func (x *PartnerWithdrawTemplateInfo) GetCredit() int64 {
  1063. if x != nil {
  1064. return x.Credit
  1065. }
  1066. return 0
  1067. }
  1068. func (x *PartnerWithdrawTemplateInfo) GetTitle() string {
  1069. if x != nil {
  1070. return x.Title
  1071. }
  1072. return ""
  1073. }
  1074. type PartnerUpdateWorkingStatusRequest struct {
  1075. state protoimpl.MessageState
  1076. sizeCache protoimpl.SizeCache
  1077. unknownFields protoimpl.UnknownFields
  1078. WorkingStatus string `protobuf:"bytes,1,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  1079. }
  1080. func (x *PartnerUpdateWorkingStatusRequest) Reset() {
  1081. *x = PartnerUpdateWorkingStatusRequest{}
  1082. if protoimpl.UnsafeEnabled {
  1083. mi := &file_partner_proto_msgTypes[18]
  1084. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1085. ms.StoreMessageInfo(mi)
  1086. }
  1087. }
  1088. func (x *PartnerUpdateWorkingStatusRequest) String() string {
  1089. return protoimpl.X.MessageStringOf(x)
  1090. }
  1091. func (*PartnerUpdateWorkingStatusRequest) ProtoMessage() {}
  1092. func (x *PartnerUpdateWorkingStatusRequest) ProtoReflect() protoreflect.Message {
  1093. mi := &file_partner_proto_msgTypes[18]
  1094. if protoimpl.UnsafeEnabled && x != nil {
  1095. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1096. if ms.LoadMessageInfo() == nil {
  1097. ms.StoreMessageInfo(mi)
  1098. }
  1099. return ms
  1100. }
  1101. return mi.MessageOf(x)
  1102. }
  1103. // Deprecated: Use PartnerUpdateWorkingStatusRequest.ProtoReflect.Descriptor instead.
  1104. func (*PartnerUpdateWorkingStatusRequest) Descriptor() ([]byte, []int) {
  1105. return file_partner_proto_rawDescGZIP(), []int{18}
  1106. }
  1107. func (x *PartnerUpdateWorkingStatusRequest) GetWorkingStatus() string {
  1108. if x != nil {
  1109. return x.WorkingStatus
  1110. }
  1111. return ""
  1112. }
  1113. type PartnerGetAwardRequest struct {
  1114. state protoimpl.MessageState
  1115. sizeCache protoimpl.SizeCache
  1116. unknownFields protoimpl.UnknownFields
  1117. AwardType string `protobuf:"bytes,1,opt,name=awardType,proto3" json:"awardType"` // 奖励类型
  1118. PersonID string `protobuf:"bytes,2,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1119. PersonType string `protobuf:"bytes,3,opt,name=personType,proto3" json:"personType"` // 类型
  1120. }
  1121. func (x *PartnerGetAwardRequest) Reset() {
  1122. *x = PartnerGetAwardRequest{}
  1123. if protoimpl.UnsafeEnabled {
  1124. mi := &file_partner_proto_msgTypes[19]
  1125. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1126. ms.StoreMessageInfo(mi)
  1127. }
  1128. }
  1129. func (x *PartnerGetAwardRequest) String() string {
  1130. return protoimpl.X.MessageStringOf(x)
  1131. }
  1132. func (*PartnerGetAwardRequest) ProtoMessage() {}
  1133. func (x *PartnerGetAwardRequest) ProtoReflect() protoreflect.Message {
  1134. mi := &file_partner_proto_msgTypes[19]
  1135. if protoimpl.UnsafeEnabled && x != nil {
  1136. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1137. if ms.LoadMessageInfo() == nil {
  1138. ms.StoreMessageInfo(mi)
  1139. }
  1140. return ms
  1141. }
  1142. return mi.MessageOf(x)
  1143. }
  1144. // Deprecated: Use PartnerGetAwardRequest.ProtoReflect.Descriptor instead.
  1145. func (*PartnerGetAwardRequest) Descriptor() ([]byte, []int) {
  1146. return file_partner_proto_rawDescGZIP(), []int{19}
  1147. }
  1148. func (x *PartnerGetAwardRequest) GetAwardType() string {
  1149. if x != nil {
  1150. return x.AwardType
  1151. }
  1152. return ""
  1153. }
  1154. func (x *PartnerGetAwardRequest) GetPersonID() string {
  1155. if x != nil {
  1156. return x.PersonID
  1157. }
  1158. return ""
  1159. }
  1160. func (x *PartnerGetAwardRequest) GetPersonType() string {
  1161. if x != nil {
  1162. return x.PersonType
  1163. }
  1164. return ""
  1165. }
  1166. type LevelTable struct {
  1167. state protoimpl.MessageState
  1168. sizeCache protoimpl.SizeCache
  1169. unknownFields protoimpl.UnknownFields
  1170. List []*LevelInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1171. }
  1172. func (x *LevelTable) Reset() {
  1173. *x = LevelTable{}
  1174. if protoimpl.UnsafeEnabled {
  1175. mi := &file_partner_proto_msgTypes[20]
  1176. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1177. ms.StoreMessageInfo(mi)
  1178. }
  1179. }
  1180. func (x *LevelTable) String() string {
  1181. return protoimpl.X.MessageStringOf(x)
  1182. }
  1183. func (*LevelTable) ProtoMessage() {}
  1184. func (x *LevelTable) ProtoReflect() protoreflect.Message {
  1185. mi := &file_partner_proto_msgTypes[20]
  1186. if protoimpl.UnsafeEnabled && x != nil {
  1187. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1188. if ms.LoadMessageInfo() == nil {
  1189. ms.StoreMessageInfo(mi)
  1190. }
  1191. return ms
  1192. }
  1193. return mi.MessageOf(x)
  1194. }
  1195. // Deprecated: Use LevelTable.ProtoReflect.Descriptor instead.
  1196. func (*LevelTable) Descriptor() ([]byte, []int) {
  1197. return file_partner_proto_rawDescGZIP(), []int{20}
  1198. }
  1199. func (x *LevelTable) GetList() []*LevelInfo {
  1200. if x != nil {
  1201. return x.List
  1202. }
  1203. return make([]*LevelInfo, 0)
  1204. }
  1205. type LevelInfo struct {
  1206. state protoimpl.MessageState
  1207. sizeCache protoimpl.SizeCache
  1208. unknownFields protoimpl.UnknownFields
  1209. Level int64 `protobuf:"varint,1,opt,name=level,proto3" json:"level"` // 等级
  1210. ChatBenefit int64 `protobuf:"varint,2,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  1211. CallBenefit int64 `protobuf:"varint,3,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  1212. Condition string `protobuf:"bytes,4,opt,name=condition,proto3" json:"condition"` // 达成条件
  1213. }
  1214. func (x *LevelInfo) Reset() {
  1215. *x = LevelInfo{}
  1216. if protoimpl.UnsafeEnabled {
  1217. mi := &file_partner_proto_msgTypes[21]
  1218. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1219. ms.StoreMessageInfo(mi)
  1220. }
  1221. }
  1222. func (x *LevelInfo) String() string {
  1223. return protoimpl.X.MessageStringOf(x)
  1224. }
  1225. func (*LevelInfo) ProtoMessage() {}
  1226. func (x *LevelInfo) ProtoReflect() protoreflect.Message {
  1227. mi := &file_partner_proto_msgTypes[21]
  1228. if protoimpl.UnsafeEnabled && x != nil {
  1229. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1230. if ms.LoadMessageInfo() == nil {
  1231. ms.StoreMessageInfo(mi)
  1232. }
  1233. return ms
  1234. }
  1235. return mi.MessageOf(x)
  1236. }
  1237. // Deprecated: Use LevelInfo.ProtoReflect.Descriptor instead.
  1238. func (*LevelInfo) Descriptor() ([]byte, []int) {
  1239. return file_partner_proto_rawDescGZIP(), []int{21}
  1240. }
  1241. func (x *LevelInfo) GetLevel() int64 {
  1242. if x != nil {
  1243. return x.Level
  1244. }
  1245. return 0
  1246. }
  1247. func (x *LevelInfo) GetChatBenefit() int64 {
  1248. if x != nil {
  1249. return x.ChatBenefit
  1250. }
  1251. return 0
  1252. }
  1253. func (x *LevelInfo) GetCallBenefit() int64 {
  1254. if x != nil {
  1255. return x.CallBenefit
  1256. }
  1257. return 0
  1258. }
  1259. func (x *LevelInfo) GetCondition() string {
  1260. if x != nil {
  1261. return x.Condition
  1262. }
  1263. return ""
  1264. }
  1265. type AddPartnerBalanceRequest struct {
  1266. state protoimpl.MessageState
  1267. sizeCache protoimpl.SizeCache
  1268. unknownFields protoimpl.UnknownFields
  1269. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
  1270. Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance"`
  1271. }
  1272. func (x *AddPartnerBalanceRequest) Reset() {
  1273. *x = AddPartnerBalanceRequest{}
  1274. if protoimpl.UnsafeEnabled {
  1275. mi := &file_partner_proto_msgTypes[22]
  1276. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1277. ms.StoreMessageInfo(mi)
  1278. }
  1279. }
  1280. func (x *AddPartnerBalanceRequest) String() string {
  1281. return protoimpl.X.MessageStringOf(x)
  1282. }
  1283. func (*AddPartnerBalanceRequest) ProtoMessage() {}
  1284. func (x *AddPartnerBalanceRequest) ProtoReflect() protoreflect.Message {
  1285. mi := &file_partner_proto_msgTypes[22]
  1286. if protoimpl.UnsafeEnabled && x != nil {
  1287. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1288. if ms.LoadMessageInfo() == nil {
  1289. ms.StoreMessageInfo(mi)
  1290. }
  1291. return ms
  1292. }
  1293. return mi.MessageOf(x)
  1294. }
  1295. // Deprecated: Use AddPartnerBalanceRequest.ProtoReflect.Descriptor instead.
  1296. func (*AddPartnerBalanceRequest) Descriptor() ([]byte, []int) {
  1297. return file_partner_proto_rawDescGZIP(), []int{22}
  1298. }
  1299. func (x *AddPartnerBalanceRequest) GetPartnerId() string {
  1300. if x != nil {
  1301. return x.PartnerId
  1302. }
  1303. return ""
  1304. }
  1305. func (x *AddPartnerBalanceRequest) GetBalance() int64 {
  1306. if x != nil {
  1307. return x.Balance
  1308. }
  1309. return 0
  1310. }
  1311. type PartnerInfo struct {
  1312. state protoimpl.MessageState
  1313. sizeCache protoimpl.SizeCache
  1314. unknownFields protoimpl.UnknownFields
  1315. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1316. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1317. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1318. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  1319. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  1320. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  1321. Level int64 `protobuf:"varint,7,opt,name=level,proto3" json:"level"` // 等级
  1322. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  1323. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  1324. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  1325. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  1326. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  1327. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  1328. PartnerId int64 `protobuf:"varint,14,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
  1329. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  1330. WorkingStatus string `protobuf:"bytes,16,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  1331. RegisterStatus string `protobuf:"bytes,17,opt,name=registerStatus,proto3" json:"registerStatus"` // 审核状态
  1332. }
  1333. func (x *PartnerInfo) Reset() {
  1334. *x = PartnerInfo{}
  1335. if protoimpl.UnsafeEnabled {
  1336. mi := &file_partner_proto_msgTypes[23]
  1337. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1338. ms.StoreMessageInfo(mi)
  1339. }
  1340. }
  1341. func (x *PartnerInfo) String() string {
  1342. return protoimpl.X.MessageStringOf(x)
  1343. }
  1344. func (*PartnerInfo) ProtoMessage() {}
  1345. func (x *PartnerInfo) ProtoReflect() protoreflect.Message {
  1346. mi := &file_partner_proto_msgTypes[23]
  1347. if protoimpl.UnsafeEnabled && x != nil {
  1348. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1349. if ms.LoadMessageInfo() == nil {
  1350. ms.StoreMessageInfo(mi)
  1351. }
  1352. return ms
  1353. }
  1354. return mi.MessageOf(x)
  1355. }
  1356. // Deprecated: Use PartnerInfo.ProtoReflect.Descriptor instead.
  1357. func (*PartnerInfo) Descriptor() ([]byte, []int) {
  1358. return file_partner_proto_rawDescGZIP(), []int{23}
  1359. }
  1360. func (x *PartnerInfo) GetId() string {
  1361. if x != nil {
  1362. return x.Id
  1363. }
  1364. return ""
  1365. }
  1366. func (x *PartnerInfo) GetNickname() string {
  1367. if x != nil {
  1368. return x.Nickname
  1369. }
  1370. return ""
  1371. }
  1372. func (x *PartnerInfo) GetAvatarUrl() string {
  1373. if x != nil {
  1374. return x.AvatarUrl
  1375. }
  1376. return ""
  1377. }
  1378. func (x *PartnerInfo) GetAge() int64 {
  1379. if x != nil {
  1380. return x.Age
  1381. }
  1382. return 0
  1383. }
  1384. func (x *PartnerInfo) GetSex() int64 {
  1385. if x != nil {
  1386. return x.Sex
  1387. }
  1388. return 0
  1389. }
  1390. func (x *PartnerInfo) GetConstellation() string {
  1391. if x != nil {
  1392. return x.Constellation
  1393. }
  1394. return ""
  1395. }
  1396. func (x *PartnerInfo) GetLevel() int64 {
  1397. if x != nil {
  1398. return x.Level
  1399. }
  1400. return 0
  1401. }
  1402. func (x *PartnerInfo) GetTagList() []int64 {
  1403. if x != nil {
  1404. return x.TagList
  1405. }
  1406. return make([]int64, 0)
  1407. }
  1408. func (x *PartnerInfo) GetSignature() string {
  1409. if x != nil {
  1410. return x.Signature
  1411. }
  1412. return ""
  1413. }
  1414. func (x *PartnerInfo) GetIntroduceVoice() string {
  1415. if x != nil {
  1416. return x.IntroduceVoice
  1417. }
  1418. return ""
  1419. }
  1420. func (x *PartnerInfo) GetProvince() string {
  1421. if x != nil {
  1422. return x.Province
  1423. }
  1424. return ""
  1425. }
  1426. func (x *PartnerInfo) GetCity() string {
  1427. if x != nil {
  1428. return x.City
  1429. }
  1430. return ""
  1431. }
  1432. func (x *PartnerInfo) GetArea() string {
  1433. if x != nil {
  1434. return x.Area
  1435. }
  1436. return ""
  1437. }
  1438. func (x *PartnerInfo) GetPartnerId() int64 {
  1439. if x != nil {
  1440. return x.PartnerId
  1441. }
  1442. return 0
  1443. }
  1444. func (x *PartnerInfo) GetIsBlack() bool {
  1445. if x != nil {
  1446. return x.IsBlack
  1447. }
  1448. return false
  1449. }
  1450. func (x *PartnerInfo) GetWorkingStatus() string {
  1451. if x != nil {
  1452. return x.WorkingStatus
  1453. }
  1454. return ""
  1455. }
  1456. func (x *PartnerInfo) GetRegisterStatus() string {
  1457. if x != nil {
  1458. return x.RegisterStatus
  1459. }
  1460. return ""
  1461. }
  1462. type PartnerMessage struct {
  1463. state protoimpl.MessageState
  1464. sizeCache protoimpl.SizeCache
  1465. unknownFields protoimpl.UnknownFields
  1466. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1467. LookNum int64 `protobuf:"varint,2,opt,name=lookNum,proto3" json:"lookNum"` // 看过我的数量
  1468. LookUnreadNum int64 `protobuf:"varint,3,opt,name=lookUnreadNum,proto3" json:"lookUnreadNum"` // 未读的看过我的数量
  1469. TodayReceptionNum int64 `protobuf:"varint,4,opt,name=todayReceptionNum,proto3" json:"todayReceptionNum"` // 今日接待人数
  1470. ReversionRate string `protobuf:"bytes,5,opt,name=reversionRate,proto3" json:"reversionRate"` // 五分钟的回复率
  1471. LikedNum int64 `protobuf:"varint,6,opt,name=likedNum,proto3" json:"likedNum"` // 喜欢我
  1472. LikedUnreadNum int64 `protobuf:"varint,7,opt,name=likedUnreadNum,proto3" json:"likedUnreadNum"` // 喜欢我的未读数
  1473. AvatarUrlList []string `protobuf:"bytes,8,rep,name=avatarUrlList,proto3" json:"avatarUrlList"` // 头像列表
  1474. LikeNum int64 `protobuf:"varint,9,opt,name=likeNum,proto3" json:"likeNum"` // 我喜欢
  1475. }
  1476. func (x *PartnerMessage) Reset() {
  1477. *x = PartnerMessage{}
  1478. if protoimpl.UnsafeEnabled {
  1479. mi := &file_partner_proto_msgTypes[24]
  1480. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1481. ms.StoreMessageInfo(mi)
  1482. }
  1483. }
  1484. func (x *PartnerMessage) String() string {
  1485. return protoimpl.X.MessageStringOf(x)
  1486. }
  1487. func (*PartnerMessage) ProtoMessage() {}
  1488. func (x *PartnerMessage) ProtoReflect() protoreflect.Message {
  1489. mi := &file_partner_proto_msgTypes[24]
  1490. if protoimpl.UnsafeEnabled && x != nil {
  1491. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1492. if ms.LoadMessageInfo() == nil {
  1493. ms.StoreMessageInfo(mi)
  1494. }
  1495. return ms
  1496. }
  1497. return mi.MessageOf(x)
  1498. }
  1499. // Deprecated: Use PartnerMessage.ProtoReflect.Descriptor instead.
  1500. func (*PartnerMessage) Descriptor() ([]byte, []int) {
  1501. return file_partner_proto_rawDescGZIP(), []int{24}
  1502. }
  1503. func (x *PartnerMessage) GetId() string {
  1504. if x != nil {
  1505. return x.Id
  1506. }
  1507. return ""
  1508. }
  1509. func (x *PartnerMessage) GetLookNum() int64 {
  1510. if x != nil {
  1511. return x.LookNum
  1512. }
  1513. return 0
  1514. }
  1515. func (x *PartnerMessage) GetLookUnreadNum() int64 {
  1516. if x != nil {
  1517. return x.LookUnreadNum
  1518. }
  1519. return 0
  1520. }
  1521. func (x *PartnerMessage) GetTodayReceptionNum() int64 {
  1522. if x != nil {
  1523. return x.TodayReceptionNum
  1524. }
  1525. return 0
  1526. }
  1527. func (x *PartnerMessage) GetReversionRate() string {
  1528. if x != nil {
  1529. return x.ReversionRate
  1530. }
  1531. return ""
  1532. }
  1533. func (x *PartnerMessage) GetLikedNum() int64 {
  1534. if x != nil {
  1535. return x.LikedNum
  1536. }
  1537. return 0
  1538. }
  1539. func (x *PartnerMessage) GetLikedUnreadNum() int64 {
  1540. if x != nil {
  1541. return x.LikedUnreadNum
  1542. }
  1543. return 0
  1544. }
  1545. func (x *PartnerMessage) GetAvatarUrlList() []string {
  1546. if x != nil {
  1547. return x.AvatarUrlList
  1548. }
  1549. return make([]string, 0)
  1550. }
  1551. func (x *PartnerMessage) GetLikeNum() int64 {
  1552. if x != nil {
  1553. return x.LikeNum
  1554. }
  1555. return 0
  1556. }
  1557. type PartnerBalance struct {
  1558. state protoimpl.MessageState
  1559. sizeCache protoimpl.SizeCache
  1560. unknownFields protoimpl.UnknownFields
  1561. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1562. Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance"` // 可提现余额
  1563. TodayProfit int64 `protobuf:"varint,3,opt,name=todayProfit,proto3" json:"todayProfit"` // 今日收益
  1564. Level int64 `protobuf:"varint,4,opt,name=level,proto3" json:"level"` // 等级
  1565. ChatBenefit int64 `protobuf:"varint,5,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  1566. CallBenefit int64 `protobuf:"varint,6,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  1567. UpLevelCondition string `protobuf:"bytes,7,opt,name=upLevelCondition,proto3" json:"upLevelCondition"` // 升级条件
  1568. UpLevelBenefit int64 `protobuf:"varint,8,opt,name=upLevelBenefit,proto3" json:"upLevelBenefit"` // 升级需要的收益
  1569. CumulativeIncome int64 `protobuf:"varint,9,opt,name=cumulativeIncome,proto3" json:"cumulativeIncome"` // 累计收益
  1570. }
  1571. func (x *PartnerBalance) Reset() {
  1572. *x = PartnerBalance{}
  1573. if protoimpl.UnsafeEnabled {
  1574. mi := &file_partner_proto_msgTypes[25]
  1575. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1576. ms.StoreMessageInfo(mi)
  1577. }
  1578. }
  1579. func (x *PartnerBalance) String() string {
  1580. return protoimpl.X.MessageStringOf(x)
  1581. }
  1582. func (*PartnerBalance) ProtoMessage() {}
  1583. func (x *PartnerBalance) ProtoReflect() protoreflect.Message {
  1584. mi := &file_partner_proto_msgTypes[25]
  1585. if protoimpl.UnsafeEnabled && x != nil {
  1586. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1587. if ms.LoadMessageInfo() == nil {
  1588. ms.StoreMessageInfo(mi)
  1589. }
  1590. return ms
  1591. }
  1592. return mi.MessageOf(x)
  1593. }
  1594. // Deprecated: Use PartnerBalance.ProtoReflect.Descriptor instead.
  1595. func (*PartnerBalance) Descriptor() ([]byte, []int) {
  1596. return file_partner_proto_rawDescGZIP(), []int{25}
  1597. }
  1598. func (x *PartnerBalance) GetId() string {
  1599. if x != nil {
  1600. return x.Id
  1601. }
  1602. return ""
  1603. }
  1604. func (x *PartnerBalance) GetBalance() int64 {
  1605. if x != nil {
  1606. return x.Balance
  1607. }
  1608. return 0
  1609. }
  1610. func (x *PartnerBalance) GetTodayProfit() int64 {
  1611. if x != nil {
  1612. return x.TodayProfit
  1613. }
  1614. return 0
  1615. }
  1616. func (x *PartnerBalance) GetLevel() int64 {
  1617. if x != nil {
  1618. return x.Level
  1619. }
  1620. return 0
  1621. }
  1622. func (x *PartnerBalance) GetChatBenefit() int64 {
  1623. if x != nil {
  1624. return x.ChatBenefit
  1625. }
  1626. return 0
  1627. }
  1628. func (x *PartnerBalance) GetCallBenefit() int64 {
  1629. if x != nil {
  1630. return x.CallBenefit
  1631. }
  1632. return 0
  1633. }
  1634. func (x *PartnerBalance) GetUpLevelCondition() string {
  1635. if x != nil {
  1636. return x.UpLevelCondition
  1637. }
  1638. return ""
  1639. }
  1640. func (x *PartnerBalance) GetUpLevelBenefit() int64 {
  1641. if x != nil {
  1642. return x.UpLevelBenefit
  1643. }
  1644. return 0
  1645. }
  1646. func (x *PartnerBalance) GetCumulativeIncome() int64 {
  1647. if x != nil {
  1648. return x.CumulativeIncome
  1649. }
  1650. return 0
  1651. }
  1652. type PartnerDBBalance struct {
  1653. state protoimpl.MessageState
  1654. sizeCache protoimpl.SizeCache
  1655. unknownFields protoimpl.UnknownFields
  1656. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1657. Level int64 `protobuf:"varint,2,opt,name=level,proto3" json:"level"` // 等级
  1658. ChatBenefit int64 `protobuf:"varint,3,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  1659. CallBenefit int64 `protobuf:"varint,4,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  1660. }
  1661. func (x *PartnerDBBalance) Reset() {
  1662. *x = PartnerDBBalance{}
  1663. if protoimpl.UnsafeEnabled {
  1664. mi := &file_partner_proto_msgTypes[26]
  1665. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1666. ms.StoreMessageInfo(mi)
  1667. }
  1668. }
  1669. func (x *PartnerDBBalance) String() string {
  1670. return protoimpl.X.MessageStringOf(x)
  1671. }
  1672. func (*PartnerDBBalance) ProtoMessage() {}
  1673. func (x *PartnerDBBalance) ProtoReflect() protoreflect.Message {
  1674. mi := &file_partner_proto_msgTypes[26]
  1675. if protoimpl.UnsafeEnabled && x != nil {
  1676. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1677. if ms.LoadMessageInfo() == nil {
  1678. ms.StoreMessageInfo(mi)
  1679. }
  1680. return ms
  1681. }
  1682. return mi.MessageOf(x)
  1683. }
  1684. // Deprecated: Use PartnerDBBalance.ProtoReflect.Descriptor instead.
  1685. func (*PartnerDBBalance) Descriptor() ([]byte, []int) {
  1686. return file_partner_proto_rawDescGZIP(), []int{26}
  1687. }
  1688. func (x *PartnerDBBalance) GetId() string {
  1689. if x != nil {
  1690. return x.Id
  1691. }
  1692. return ""
  1693. }
  1694. func (x *PartnerDBBalance) GetLevel() int64 {
  1695. if x != nil {
  1696. return x.Level
  1697. }
  1698. return 0
  1699. }
  1700. func (x *PartnerDBBalance) GetChatBenefit() int64 {
  1701. if x != nil {
  1702. return x.ChatBenefit
  1703. }
  1704. return 0
  1705. }
  1706. func (x *PartnerDBBalance) GetCallBenefit() int64 {
  1707. if x != nil {
  1708. return x.CallBenefit
  1709. }
  1710. return 0
  1711. }
  1712. type PartnerApplyWithdrawRequest struct {
  1713. state protoimpl.MessageState
  1714. sizeCache protoimpl.SizeCache
  1715. unknownFields protoimpl.UnknownFields
  1716. TemplateId int64 `protobuf:"varint,1,opt,name=templateId,proto3" json:"templateId"` // 提现模板id
  1717. }
  1718. func (x *PartnerApplyWithdrawRequest) Reset() {
  1719. *x = PartnerApplyWithdrawRequest{}
  1720. if protoimpl.UnsafeEnabled {
  1721. mi := &file_partner_proto_msgTypes[27]
  1722. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1723. ms.StoreMessageInfo(mi)
  1724. }
  1725. }
  1726. func (x *PartnerApplyWithdrawRequest) String() string {
  1727. return protoimpl.X.MessageStringOf(x)
  1728. }
  1729. func (*PartnerApplyWithdrawRequest) ProtoMessage() {}
  1730. func (x *PartnerApplyWithdrawRequest) ProtoReflect() protoreflect.Message {
  1731. mi := &file_partner_proto_msgTypes[27]
  1732. if protoimpl.UnsafeEnabled && x != nil {
  1733. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1734. if ms.LoadMessageInfo() == nil {
  1735. ms.StoreMessageInfo(mi)
  1736. }
  1737. return ms
  1738. }
  1739. return mi.MessageOf(x)
  1740. }
  1741. // Deprecated: Use PartnerApplyWithdrawRequest.ProtoReflect.Descriptor instead.
  1742. func (*PartnerApplyWithdrawRequest) Descriptor() ([]byte, []int) {
  1743. return file_partner_proto_rawDescGZIP(), []int{27}
  1744. }
  1745. func (x *PartnerApplyWithdrawRequest) GetTemplateId() int64 {
  1746. if x != nil {
  1747. return x.TemplateId
  1748. }
  1749. return 0
  1750. }
  1751. var File_partner_proto protoreflect.FileDescriptor
  1752. var file_partner_proto_rawDesc = []byte{
  1753. 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  1754. 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f,
  1755. 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
  1756. 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67,
  1757. 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74,
  1758. 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d,
  1759. 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1760. 0x22, 0x7b, 0x0a, 0x11, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  1761. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x6e,
  1762. 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d,
  1763. 0x61, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x22, 0x0a, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x57, 0x6f, 0x6d,
  1764. 0x61, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x75, 0x73, 0x65,
  1765. 0x72, 0x57, 0x6f, 0x6d, 0x61, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x22, 0x0a, 0x0c, 0x75, 0x73, 0x65,
  1766. 0x72, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  1767. 0x0c, 0x75, 0x73, 0x65, 0x72, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x22, 0x84, 0x01,
  1768. 0x0a, 0x2c, 0x53, 0x65, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x4d, 0x69, 0x6e,
  1769. 0x75, 0x74, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  1770. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
  1771. 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1772. 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e,
  1773. 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75,
  1774. 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x61, 0x6d, 0x65,
  1775. 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x61, 0x6d, 0x65,
  1776. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x66, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d,
  1777. 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71,
  1778. 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
  1779. 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
  1780. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x64,
  1781. 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52,
  1782. 0x0b, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x73, 0x22, 0x78, 0x0a, 0x1c,
  1783. 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72,
  1784. 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
  1785. 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65,
  1786. 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02,
  1787. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06,
  1788. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74,
  1789. 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
  1790. 0x03, 0x52, 0x03, 0x70, 0x69, 0x64, 0x22, 0x68, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78,
  1791. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
  1792. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01,
  1793. 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x32, 0x0a, 0x04,
  1794. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x70, 0x69,
  1795. 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
  1796. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  1797. 0x22, 0xff, 0x02, 0x0a, 0x11, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f,
  1798. 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1799. 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1800. 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  1801. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
  1802. 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20,
  1803. 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x26,
  1804. 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65,
  1805. 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63,
  1806. 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74,
  1807. 0x75, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61,
  1808. 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73,
  1809. 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73,
  1810. 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
  1811. 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52,
  1812. 0x03, 0x70, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x53,
  1813. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x78, 0x61,
  1814. 0x6d, 0x69, 0x6e, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  1815. 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67,
  1816. 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d,
  1817. 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0c, 0x20,
  1818. 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69,
  1819. 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
  1820. 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69,
  1821. 0x6d, 0x65, 0x22, 0x5c, 0x0a, 0x14, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  1822. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65,
  1823. 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74,
  1824. 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b,
  1825. 0x32, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x45,
  1826. 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
  1827. 0x22, 0xe5, 0x02, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  1828. 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20,
  1829. 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a,
  1830. 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1831. 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76,
  1832. 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
  1833. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72,
  1834. 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
  1835. 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65,
  1836. 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x05, 0x20,
  1837. 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a,
  1838. 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09,
  1839. 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
  1840. 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03,
  1841. 0x70, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x70, 0x69, 0x64, 0x12, 0x10,
  1842. 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65,
  1843. 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  1844. 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c,
  1845. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x77, 0x78, 0x4e, 0x69, 0x63, 0x6b,
  1846. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x77, 0x78, 0x4e, 0x69,
  1847. 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x77, 0x78, 0x41, 0x76, 0x61, 0x74,
  1848. 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x78, 0x41,
  1849. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x22, 0x4d, 0x0a, 0x15, 0x45, 0x78, 0x61, 0x6d,
  1850. 0x69, 0x6e, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  1851. 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01,
  1852. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12,
  1853. 0x16, 0x0a, 0x06, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
  1854. 0x06, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x22, 0x6d, 0x0a, 0x29, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1855. 0x65, 0x72, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
  1856. 0x41, 0x6e, 0x64, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52,
  1857. 0x65, 0x70, 0x6c, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f,
  1858. 0x66, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79,
  1859. 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x72, 0x6f, 0x6f, 0x6d, 0x50, 0x72,
  1860. 0x6f, 0x66, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x72, 0x6f, 0x6f, 0x6d,
  1861. 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x22, 0x58, 0x0a, 0x18, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1862. 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x44, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
  1863. 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  1864. 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0d, 0x63, 0x68, 0x61, 0x74, 0x52,
  1865. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d,
  1866. 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
  1867. 0x22, 0x3b, 0x0a, 0x15, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65,
  1868. 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x68, 0x61,
  1869. 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1870. 0x0c, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x22, 0x48, 0x0a,
  1871. 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
  1872. 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
  1873. 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75,
  1874. 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63,
  1875. 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x76, 0x0a, 0x11, 0x52, 0x65, 0x70, 0x6c, 0x79,
  1876. 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07,
  1877. 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73,
  1878. 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1879. 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  1880. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65,
  1881. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65,
  1882. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x22,
  1883. 0x67, 0x0a, 0x1e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72,
  1884. 0x61, 0x77, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
  1885. 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
  1886. 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  1887. 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61,
  1888. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x49, 0x6e,
  1889. 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xbe, 0x01, 0x0a, 0x0c, 0x57, 0x69, 0x74,
  1890. 0x68, 0x64, 0x72, 0x61, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  1891. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e,
  1892. 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12,
  1893. 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
  1894. 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
  1895. 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
  1896. 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  1897. 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
  1898. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65,
  1899. 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x75, 0x63, 0x63, 0x65,
  1900. 0x73, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x73, 0x75,
  1901. 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x60, 0x0a, 0x20, 0x50, 0x61, 0x72,
  1902. 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70,
  1903. 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x3c, 0x0a,
  1904. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x61, 0x70,
  1905. 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1906. 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
  1907. 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x71, 0x0a, 0x1b, 0x50,
  1908. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65,
  1909. 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  1910. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f,
  1911. 0x6e, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79,
  1912. 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  1913. 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c,
  1914. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x49,
  1915. 0x0a, 0x21, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57,
  1916. 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
  1917. 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74,
  1918. 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b,
  1919. 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x72, 0x0a, 0x16, 0x50, 0x61, 0x72,
  1920. 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
  1921. 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65,
  1922. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70,
  1923. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x02, 0x20,
  1924. 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a,
  1925. 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
  1926. 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x38, 0x0a,
  1927. 0x0a, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2a, 0x0a, 0x04, 0x6c,
  1928. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  1929. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x49, 0x6e, 0x66,
  1930. 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x83, 0x01, 0x0a, 0x09, 0x4c, 0x65, 0x76, 0x65,
  1931. 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01,
  1932. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63,
  1933. 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  1934. 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a,
  1935. 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01,
  1936. 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12,
  1937. 0x1c, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
  1938. 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x52, 0x0a,
  1939. 0x18, 0x41, 0x64, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e,
  1940. 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72,
  1941. 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61,
  1942. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e,
  1943. 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63,
  1944. 0x65, 0x22, 0xe1, 0x03, 0x0a, 0x0b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66,
  1945. 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
  1946. 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
  1947. 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a,
  1948. 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  1949. 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61,
  1950. 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a,
  1951. 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12,
  1952. 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  1953. 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c,
  1954. 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x07,
  1955. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x74,
  1956. 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61,
  1957. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
  1958. 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74,
  1959. 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65,
  1960. 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74,
  1961. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70,
  1962. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
  1963. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18,
  1964. 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61,
  1965. 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12,
  1966. 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01,
  1967. 0x28, 0x03, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a,
  1968. 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
  1969. 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69,
  1970. 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
  1971. 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a,
  1972. 0x0e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  1973. 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x53,
  1974. 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xb8, 0x02, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1975. 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
  1976. 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x6f, 0x6b,
  1977. 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e,
  1978. 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
  1979. 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55,
  1980. 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x74, 0x6f, 0x64, 0x61,
  1981. 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x04, 0x20,
  1982. 0x01, 0x28, 0x03, 0x52, 0x11, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74,
  1983. 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73,
  1984. 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72,
  1985. 0x65, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  1986. 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
  1987. 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x6c, 0x69, 0x6b, 0x65,
  1988. 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03,
  1989. 0x52, 0x0e, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d,
  1990. 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4c, 0x69, 0x73,
  1991. 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
  1992. 0x72, 0x6c, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x69, 0x6b, 0x65, 0x4e, 0x75,
  1993. 0x6d, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c, 0x69, 0x6b, 0x65, 0x4e, 0x75, 0x6d,
  1994. 0x22, 0xb6, 0x02, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61,
  1995. 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1996. 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x02,
  1997. 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x20, 0x0a,
  1998. 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01,
  1999. 0x28, 0x03, 0x52, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12,
  2000. 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
  2001. 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e,
  2002. 0x65, 0x66, 0x69, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74,
  2003. 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42,
  2004. 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61,
  2005. 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x70, 0x4c,
  2006. 0x65, 0x76, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20,
  2007. 0x01, 0x28, 0x09, 0x52, 0x10, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x64,
  2008. 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c,
  2009. 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x75,
  2010. 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x2a, 0x0a,
  2011. 0x10, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x63, 0x6f, 0x6d,
  2012. 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74,
  2013. 0x69, 0x76, 0x65, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x22, 0x7c, 0x0a, 0x10, 0x50, 0x61, 0x72,
  2014. 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a,
  2015. 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a,
  2016. 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65,
  2017. 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66,
  2018. 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65,
  2019. 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e,
  2020. 0x65, 0x66, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61, 0x6c, 0x6c,
  2021. 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x22, 0x3d, 0x0a, 0x1b, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2022. 0x65, 0x72, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x52,
  2023. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61,
  2024. 0x74, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70,
  2025. 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x32, 0xe1, 0x0d, 0x0a, 0x07, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2026. 0x65, 0x72, 0x12, 0x81, 0x01, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69,
  2027. 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2028. 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71,
  2029. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e,
  2030. 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69,
  2031. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x3a,
  2032. 0x01, 0x2a, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2033. 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  2034. 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x76, 0x0a, 0x0e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  2035. 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70,
  2036. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x50, 0x61,
  2037. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2038. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2039. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x3a, 0x01, 0x2a, 0x22,
  2040. 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x72, 0x65,
  2041. 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x12, 0x66,
  2042. 0x0a, 0x0c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x1f,
  2043. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
  2044. 0x67, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2045. 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67,
  2046. 0x69, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x3a,
  2047. 0x01, 0x2a, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2048. 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0xa1, 0x01, 0x0a, 0x15, 0x46, 0x69, 0x6e, 0x64, 0x45,
  2049. 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74,
  2050. 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x46,
  2051. 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
  2052. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70,
  2053. 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78,
  2054. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2055. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x34, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2e, 0x3a, 0x01, 0x2a, 0x22,
  2056. 0x29, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x72, 0x65,
  2057. 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x2f, 0x72,
  2058. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x6d, 0x0a, 0x0c, 0x4f, 0x6e,
  2059. 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2060. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2061. 0x74, 0x79, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2062. 0x2e, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70,
  2063. 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x3a, 0x01, 0x2a, 0x22, 0x1a, 0x2f,
  2064. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x6f, 0x6e, 0x6c, 0x69,
  2065. 0x6e, 0x65, 0x2f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x86, 0x01, 0x0a, 0x13, 0x4d, 0x61,
  2066. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73,
  2067. 0x74, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  2068. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69,
  2069. 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2070. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69,
  2071. 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2072. 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x3a, 0x01, 0x2a, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69,
  2073. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6c, 0x69,
  2074. 0x73, 0x74, 0x12, 0x8d, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69,
  2075. 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74,
  2076. 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  2077. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63,
  2078. 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f,
  2079. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74,
  2080. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2081. 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x3a, 0x01, 0x2a, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69,
  2082. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x6c, 0x69,
  2083. 0x73, 0x74, 0x12, 0x82, 0x01, 0x0a, 0x14, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69,
  2084. 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x27, 0x2e, 0x61, 0x70,
  2085. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2086. 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
  2087. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2088. 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  2089. 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x3a, 0x01, 0x2a, 0x22, 0x17,
  2090. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72,
  2091. 0x69, 0x70, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x86, 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61,
  2092. 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x54, 0x65,
  2093. 0x78, 0x74, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2094. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72,
  2095. 0x69, 0x70, 0x54, 0x65, 0x78, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  2096. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2097. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x3a, 0x01, 0x2a,
  2098. 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75,
  2099. 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x74, 0x65, 0x78, 0x74,
  2100. 0x12, 0x8f, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  2101. 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x2c,
  2102. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
  2103. 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x50, 0x69,
  2104. 0x63, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
  2105. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2106. 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x3a, 0x01, 0x2a, 0x22,
  2107. 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x70,
  2108. 0x64, 0x61, 0x74, 0x65, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75,
  2109. 0x72, 0x65, 0x12, 0x67, 0x0a, 0x12, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65, 0x6c,
  2110. 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2111. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
  2112. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2113. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x3a, 0x01, 0x2a,
  2114. 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x64,
  2115. 0x65, 0x6c, 0x65, 0x74, 0x65, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x12, 0x8e, 0x01, 0x0a, 0x15,
  2116. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72,
  2117. 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2118. 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65,
  2119. 0x70, 0x6f, 0x72, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2120. 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e,
  2121. 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x4c, 0x69,
  2122. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x3a,
  2123. 0x01, 0x2a, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2124. 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x12, 0xab, 0x01, 0x0a,
  2125. 0x1c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f,
  2126. 0x72, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2f, 0x2e,
  2127. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2128. 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x44, 0x65, 0x74, 0x61,
  2129. 0x69, 0x6c, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d,
  2130. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
  2131. 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x44, 0x65, 0x74,
  2132. 0x61, 0x69, 0x6c, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2b, 0x82,
  2133. 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x3a, 0x01, 0x2a, 0x22, 0x20, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d,
  2134. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x64, 0x65,
  2135. 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x46, 0x0a, 0x0b, 0x61, 0x70,
  2136. 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x50, 0x01, 0x5a, 0x35, 0x67, 0x69, 0x74,
  2137. 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76,
  2138. 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61,
  2139. 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3b, 0x70, 0x61, 0x72, 0x74, 0x6e,
  2140. 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2141. }
  2142. var (
  2143. file_partner_proto_rawDescOnce sync.Once
  2144. file_partner_proto_rawDescData = file_partner_proto_rawDesc
  2145. )
  2146. func file_partner_proto_rawDescGZIP() []byte {
  2147. file_partner_proto_rawDescOnce.Do(func() {
  2148. file_partner_proto_rawDescData = protoimpl.X.CompressGZIP(file_partner_proto_rawDescData)
  2149. })
  2150. return file_partner_proto_rawDescData
  2151. }
  2152. var file_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 28)
  2153. var file_partner_proto_goTypes = []interface{}{
  2154. (*OnlinePersonReply)(nil), // 0: api.partner.OnlinePersonReply
  2155. (*SendOverOneMinuteUnreadMessageMessageRequest)(nil), // 1: api.partner.SendOverOneMinuteUnreadMessageMessageRequest
  2156. (*GetRecommendPartnerDBRequest)(nil), // 2: api.partner.GetRecommendPartnerDBRequest
  2157. (*FindExamineRecordListRequest)(nil), // 3: api.partner.FindExamineRecordListRequest
  2158. (*FindExamineRecordListReply)(nil), // 4: api.partner.FindExamineRecordListReply
  2159. (*ExamineRecordInfo)(nil), // 5: api.partner.ExamineRecordInfo
  2160. (*FindExamineListReply)(nil), // 6: api.partner.FindExamineListReply
  2161. (*ExamineInfo)(nil), // 7: api.partner.ExamineInfo
  2162. (*ExaminePartnerRequest)(nil), // 8: api.partner.ExaminePartnerRequest
  2163. (*PartnerGetRoomBalanceAndTodayBalanceReply)(nil), // 9: api.partner.PartnerGetRoomBalanceAndTodayBalanceReply
  2164. (*PartnerCollectIDsRequest)(nil), // 10: api.partner.PartnerCollectIDsRequest
  2165. (*PartnerCollectRequest)(nil), // 11: api.partner.PartnerCollectRequest
  2166. (*CreateScripRequest)(nil), // 12: api.partner.CreateScripRequest
  2167. (*ReplyScripRequest)(nil), // 13: api.partner.ReplyScripRequest
  2168. (*PartnerWithdrawRecordListReply)(nil), // 14: api.partner.PartnerWithdrawRecordListReply
  2169. (*WithdrawInfo)(nil), // 15: api.partner.WithdrawInfo
  2170. (*PartnerWithdrawTemplateListReply)(nil), // 16: api.partner.PartnerWithdrawTemplateListReply
  2171. (*PartnerWithdrawTemplateInfo)(nil), // 17: api.partner.PartnerWithdrawTemplateInfo
  2172. (*PartnerUpdateWorkingStatusRequest)(nil), // 18: api.partner.PartnerUpdateWorkingStatusRequest
  2173. (*PartnerGetAwardRequest)(nil), // 19: api.partner.PartnerGetAwardRequest
  2174. (*LevelTable)(nil), // 20: api.partner.LevelTable
  2175. (*LevelInfo)(nil), // 21: api.partner.LevelInfo
  2176. (*AddPartnerBalanceRequest)(nil), // 22: api.partner.AddPartnerBalanceRequest
  2177. (*PartnerInfo)(nil), // 23: api.partner.PartnerInfo
  2178. (*PartnerMessage)(nil), // 24: api.partner.PartnerMessage
  2179. (*PartnerBalance)(nil), // 25: api.partner.PartnerBalance
  2180. (*PartnerDBBalance)(nil), // 26: api.partner.PartnerDBBalance
  2181. (*PartnerApplyWithdrawRequest)(nil), // 27: api.partner.PartnerApplyWithdrawRequest
  2182. (*common.Message)(nil), // 28: api.common.Message
  2183. (*common.ListPage2Request)(nil), // 29: api.common.ListPage2Request
  2184. (*common.ManagerLoginRequest)(nil), // 30: api.common.ManagerLoginRequest
  2185. (*emptypb.Empty)(nil), // 31: google.protobuf.Empty
  2186. (*common.ManagerFindRoomListRequest)(nil), // 32: api.common.ManagerFindRoomListRequest
  2187. (*common.ManagerFindChatRecordListRequest)(nil), // 33: api.common.ManagerFindChatRecordListRequest
  2188. (*common.ManagerFindScripListRequest)(nil), // 34: api.common.ManagerFindScripListRequest
  2189. (*common.ManagerUpdateScripTextRequest)(nil), // 35: api.common.ManagerUpdateScripTextRequest
  2190. (*common.ManagerUpdateScripPictureRequest)(nil), // 36: api.common.ManagerUpdateScripPictureRequest
  2191. (*common.IDParam)(nil), // 37: api.common.IDParam
  2192. (*common.ManagerFindReportListRequest)(nil), // 38: api.common.ManagerFindReportListRequest
  2193. (*common.ManagerFindReportDetailsListRequest)(nil), // 39: api.common.ManagerFindReportDetailsListRequest
  2194. (*common.LoginToken)(nil), // 40: api.common.LoginToken
  2195. (*common.ManagerFindRoomListReply)(nil), // 41: api.common.ManagerFindRoomListReply
  2196. (*common.ChatRecordListReply)(nil), // 42: api.common.ChatRecordListReply
  2197. (*common.ManagerScripReply)(nil), // 43: api.common.ManagerScripReply
  2198. (*common.ManagerFindReportListReply)(nil), // 44: api.common.ManagerFindReportListReply
  2199. (*common.ManagerFindReportDetailsListReply)(nil), // 45: api.common.ManagerFindReportDetailsListReply
  2200. }
  2201. var file_partner_proto_depIdxs = []int32{
  2202. 5, // 0: api.partner.FindExamineRecordListReply.list:type_name -> api.partner.ExamineRecordInfo
  2203. 7, // 1: api.partner.FindExamineListReply.list:type_name -> api.partner.ExamineInfo
  2204. 28, // 2: api.partner.ReplyScripRequest.message:type_name -> api.common.Message
  2205. 15, // 3: api.partner.PartnerWithdrawRecordListReply.list:type_name -> api.partner.WithdrawInfo
  2206. 17, // 4: api.partner.PartnerWithdrawTemplateListReply.list:type_name -> api.partner.PartnerWithdrawTemplateInfo
  2207. 21, // 5: api.partner.LevelTable.list:type_name -> api.partner.LevelInfo
  2208. 29, // 6: api.partner.Partner.FindExamineList:input_type -> api.common.ListPage2Request
  2209. 8, // 7: api.partner.Partner.ExaminePartner:input_type -> api.partner.ExaminePartnerRequest
  2210. 30, // 8: api.partner.Partner.ManagerLogin:input_type -> api.common.ManagerLoginRequest
  2211. 3, // 9: api.partner.Partner.FindExamineRecordList:input_type -> api.partner.FindExamineRecordListRequest
  2212. 31, // 10: api.partner.Partner.OnlinePerson:input_type -> google.protobuf.Empty
  2213. 32, // 11: api.partner.Partner.ManagerFindRoomList:input_type -> api.common.ManagerFindRoomListRequest
  2214. 33, // 12: api.partner.Partner.ManagerFindChatRecordList:input_type -> api.common.ManagerFindChatRecordListRequest
  2215. 34, // 13: api.partner.Partner.ManagerFindScripList:input_type -> api.common.ManagerFindScripListRequest
  2216. 35, // 14: api.partner.Partner.ManagerUpdateScripText:input_type -> api.common.ManagerUpdateScripTextRequest
  2217. 36, // 15: api.partner.Partner.ManagerUpdateScripPicture:input_type -> api.common.ManagerUpdateScripPictureRequest
  2218. 37, // 16: api.partner.Partner.ManagerDeleteScrip:input_type -> api.common.IDParam
  2219. 38, // 17: api.partner.Partner.ManagerFindReportList:input_type -> api.common.ManagerFindReportListRequest
  2220. 39, // 18: api.partner.Partner.ManagerFindReportDetailsList:input_type -> api.common.ManagerFindReportDetailsListRequest
  2221. 6, // 19: api.partner.Partner.FindExamineList:output_type -> api.partner.FindExamineListReply
  2222. 31, // 20: api.partner.Partner.ExaminePartner:output_type -> google.protobuf.Empty
  2223. 40, // 21: api.partner.Partner.ManagerLogin:output_type -> api.common.LoginToken
  2224. 4, // 22: api.partner.Partner.FindExamineRecordList:output_type -> api.partner.FindExamineRecordListReply
  2225. 0, // 23: api.partner.Partner.OnlinePerson:output_type -> api.partner.OnlinePersonReply
  2226. 41, // 24: api.partner.Partner.ManagerFindRoomList:output_type -> api.common.ManagerFindRoomListReply
  2227. 42, // 25: api.partner.Partner.ManagerFindChatRecordList:output_type -> api.common.ChatRecordListReply
  2228. 43, // 26: api.partner.Partner.ManagerFindScripList:output_type -> api.common.ManagerScripReply
  2229. 31, // 27: api.partner.Partner.ManagerUpdateScripText:output_type -> google.protobuf.Empty
  2230. 31, // 28: api.partner.Partner.ManagerUpdateScripPicture:output_type -> google.protobuf.Empty
  2231. 31, // 29: api.partner.Partner.ManagerDeleteScrip:output_type -> google.protobuf.Empty
  2232. 44, // 30: api.partner.Partner.ManagerFindReportList:output_type -> api.common.ManagerFindReportListReply
  2233. 45, // 31: api.partner.Partner.ManagerFindReportDetailsList:output_type -> api.common.ManagerFindReportDetailsListReply
  2234. 19, // [19:32] is the sub-list for method output_type
  2235. 6, // [6:19] is the sub-list for method input_type
  2236. 6, // [6:6] is the sub-list for extension type_name
  2237. 6, // [6:6] is the sub-list for extension extendee
  2238. 0, // [0:6] is the sub-list for field type_name
  2239. }
  2240. func init() { file_partner_proto_init() }
  2241. func file_partner_proto_init() {
  2242. if File_partner_proto != nil {
  2243. return
  2244. }
  2245. if !protoimpl.UnsafeEnabled {
  2246. file_partner_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2247. switch v := v.(*OnlinePersonReply); i {
  2248. case 0:
  2249. return &v.state
  2250. case 1:
  2251. return &v.sizeCache
  2252. case 2:
  2253. return &v.unknownFields
  2254. default:
  2255. return nil
  2256. }
  2257. }
  2258. file_partner_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2259. switch v := v.(*SendOverOneMinuteUnreadMessageMessageRequest); i {
  2260. case 0:
  2261. return &v.state
  2262. case 1:
  2263. return &v.sizeCache
  2264. case 2:
  2265. return &v.unknownFields
  2266. default:
  2267. return nil
  2268. }
  2269. }
  2270. file_partner_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2271. switch v := v.(*GetRecommendPartnerDBRequest); i {
  2272. case 0:
  2273. return &v.state
  2274. case 1:
  2275. return &v.sizeCache
  2276. case 2:
  2277. return &v.unknownFields
  2278. default:
  2279. return nil
  2280. }
  2281. }
  2282. file_partner_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2283. switch v := v.(*FindExamineRecordListRequest); i {
  2284. case 0:
  2285. return &v.state
  2286. case 1:
  2287. return &v.sizeCache
  2288. case 2:
  2289. return &v.unknownFields
  2290. default:
  2291. return nil
  2292. }
  2293. }
  2294. file_partner_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2295. switch v := v.(*FindExamineRecordListReply); i {
  2296. case 0:
  2297. return &v.state
  2298. case 1:
  2299. return &v.sizeCache
  2300. case 2:
  2301. return &v.unknownFields
  2302. default:
  2303. return nil
  2304. }
  2305. }
  2306. file_partner_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2307. switch v := v.(*ExamineRecordInfo); i {
  2308. case 0:
  2309. return &v.state
  2310. case 1:
  2311. return &v.sizeCache
  2312. case 2:
  2313. return &v.unknownFields
  2314. default:
  2315. return nil
  2316. }
  2317. }
  2318. file_partner_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2319. switch v := v.(*FindExamineListReply); i {
  2320. case 0:
  2321. return &v.state
  2322. case 1:
  2323. return &v.sizeCache
  2324. case 2:
  2325. return &v.unknownFields
  2326. default:
  2327. return nil
  2328. }
  2329. }
  2330. file_partner_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2331. switch v := v.(*ExamineInfo); i {
  2332. case 0:
  2333. return &v.state
  2334. case 1:
  2335. return &v.sizeCache
  2336. case 2:
  2337. return &v.unknownFields
  2338. default:
  2339. return nil
  2340. }
  2341. }
  2342. file_partner_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2343. switch v := v.(*ExaminePartnerRequest); i {
  2344. case 0:
  2345. return &v.state
  2346. case 1:
  2347. return &v.sizeCache
  2348. case 2:
  2349. return &v.unknownFields
  2350. default:
  2351. return nil
  2352. }
  2353. }
  2354. file_partner_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2355. switch v := v.(*PartnerGetRoomBalanceAndTodayBalanceReply); i {
  2356. case 0:
  2357. return &v.state
  2358. case 1:
  2359. return &v.sizeCache
  2360. case 2:
  2361. return &v.unknownFields
  2362. default:
  2363. return nil
  2364. }
  2365. }
  2366. file_partner_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2367. switch v := v.(*PartnerCollectIDsRequest); i {
  2368. case 0:
  2369. return &v.state
  2370. case 1:
  2371. return &v.sizeCache
  2372. case 2:
  2373. return &v.unknownFields
  2374. default:
  2375. return nil
  2376. }
  2377. }
  2378. file_partner_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2379. switch v := v.(*PartnerCollectRequest); i {
  2380. case 0:
  2381. return &v.state
  2382. case 1:
  2383. return &v.sizeCache
  2384. case 2:
  2385. return &v.unknownFields
  2386. default:
  2387. return nil
  2388. }
  2389. }
  2390. file_partner_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2391. switch v := v.(*CreateScripRequest); i {
  2392. case 0:
  2393. return &v.state
  2394. case 1:
  2395. return &v.sizeCache
  2396. case 2:
  2397. return &v.unknownFields
  2398. default:
  2399. return nil
  2400. }
  2401. }
  2402. file_partner_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2403. switch v := v.(*ReplyScripRequest); i {
  2404. case 0:
  2405. return &v.state
  2406. case 1:
  2407. return &v.sizeCache
  2408. case 2:
  2409. return &v.unknownFields
  2410. default:
  2411. return nil
  2412. }
  2413. }
  2414. file_partner_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2415. switch v := v.(*PartnerWithdrawRecordListReply); i {
  2416. case 0:
  2417. return &v.state
  2418. case 1:
  2419. return &v.sizeCache
  2420. case 2:
  2421. return &v.unknownFields
  2422. default:
  2423. return nil
  2424. }
  2425. }
  2426. file_partner_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2427. switch v := v.(*WithdrawInfo); i {
  2428. case 0:
  2429. return &v.state
  2430. case 1:
  2431. return &v.sizeCache
  2432. case 2:
  2433. return &v.unknownFields
  2434. default:
  2435. return nil
  2436. }
  2437. }
  2438. file_partner_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2439. switch v := v.(*PartnerWithdrawTemplateListReply); i {
  2440. case 0:
  2441. return &v.state
  2442. case 1:
  2443. return &v.sizeCache
  2444. case 2:
  2445. return &v.unknownFields
  2446. default:
  2447. return nil
  2448. }
  2449. }
  2450. file_partner_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2451. switch v := v.(*PartnerWithdrawTemplateInfo); i {
  2452. case 0:
  2453. return &v.state
  2454. case 1:
  2455. return &v.sizeCache
  2456. case 2:
  2457. return &v.unknownFields
  2458. default:
  2459. return nil
  2460. }
  2461. }
  2462. file_partner_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2463. switch v := v.(*PartnerUpdateWorkingStatusRequest); i {
  2464. case 0:
  2465. return &v.state
  2466. case 1:
  2467. return &v.sizeCache
  2468. case 2:
  2469. return &v.unknownFields
  2470. default:
  2471. return nil
  2472. }
  2473. }
  2474. file_partner_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2475. switch v := v.(*PartnerGetAwardRequest); i {
  2476. case 0:
  2477. return &v.state
  2478. case 1:
  2479. return &v.sizeCache
  2480. case 2:
  2481. return &v.unknownFields
  2482. default:
  2483. return nil
  2484. }
  2485. }
  2486. file_partner_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2487. switch v := v.(*LevelTable); i {
  2488. case 0:
  2489. return &v.state
  2490. case 1:
  2491. return &v.sizeCache
  2492. case 2:
  2493. return &v.unknownFields
  2494. default:
  2495. return nil
  2496. }
  2497. }
  2498. file_partner_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2499. switch v := v.(*LevelInfo); i {
  2500. case 0:
  2501. return &v.state
  2502. case 1:
  2503. return &v.sizeCache
  2504. case 2:
  2505. return &v.unknownFields
  2506. default:
  2507. return nil
  2508. }
  2509. }
  2510. file_partner_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2511. switch v := v.(*AddPartnerBalanceRequest); i {
  2512. case 0:
  2513. return &v.state
  2514. case 1:
  2515. return &v.sizeCache
  2516. case 2:
  2517. return &v.unknownFields
  2518. default:
  2519. return nil
  2520. }
  2521. }
  2522. file_partner_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2523. switch v := v.(*PartnerInfo); i {
  2524. case 0:
  2525. return &v.state
  2526. case 1:
  2527. return &v.sizeCache
  2528. case 2:
  2529. return &v.unknownFields
  2530. default:
  2531. return nil
  2532. }
  2533. }
  2534. file_partner_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2535. switch v := v.(*PartnerMessage); i {
  2536. case 0:
  2537. return &v.state
  2538. case 1:
  2539. return &v.sizeCache
  2540. case 2:
  2541. return &v.unknownFields
  2542. default:
  2543. return nil
  2544. }
  2545. }
  2546. file_partner_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2547. switch v := v.(*PartnerBalance); i {
  2548. case 0:
  2549. return &v.state
  2550. case 1:
  2551. return &v.sizeCache
  2552. case 2:
  2553. return &v.unknownFields
  2554. default:
  2555. return nil
  2556. }
  2557. }
  2558. file_partner_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2559. switch v := v.(*PartnerDBBalance); i {
  2560. case 0:
  2561. return &v.state
  2562. case 1:
  2563. return &v.sizeCache
  2564. case 2:
  2565. return &v.unknownFields
  2566. default:
  2567. return nil
  2568. }
  2569. }
  2570. file_partner_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2571. switch v := v.(*PartnerApplyWithdrawRequest); i {
  2572. case 0:
  2573. return &v.state
  2574. case 1:
  2575. return &v.sizeCache
  2576. case 2:
  2577. return &v.unknownFields
  2578. default:
  2579. return nil
  2580. }
  2581. }
  2582. }
  2583. type x struct{}
  2584. out := protoimpl.TypeBuilder{
  2585. File: protoimpl.DescBuilder{
  2586. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2587. RawDescriptor: file_partner_proto_rawDesc,
  2588. NumEnums: 0,
  2589. NumMessages: 28,
  2590. NumExtensions: 0,
  2591. NumServices: 1,
  2592. },
  2593. GoTypes: file_partner_proto_goTypes,
  2594. DependencyIndexes: file_partner_proto_depIdxs,
  2595. MessageInfos: file_partner_proto_msgTypes,
  2596. }.Build()
  2597. File_partner_proto = out.File
  2598. file_partner_proto_rawDesc = nil
  2599. file_partner_proto_goTypes = nil
  2600. file_partner_proto_depIdxs = nil
  2601. }