transform.pb.go 123 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.23.0
  4. // protoc v3.12.3
  5. // source: transform.proto
  6. package transform
  7. import (
  8. context "context"
  9. proto "github.com/golang/protobuf/proto"
  10. grpc "google.golang.org/grpc"
  11. codes "google.golang.org/grpc/codes"
  12. status "google.golang.org/grpc/status"
  13. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  14. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  15. reflect "reflect"
  16. sync "sync"
  17. )
  18. const (
  19. // Verify that this generated code is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  21. // Verify that runtime/protoimpl is sufficiently up-to-date.
  22. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  23. )
  24. // This is a compile-time assertion that a sufficiently up-to-date version
  25. // of the legacy proto package is being used.
  26. const _ = proto.ProtoPackageIsVersion4
  27. type UserRequest struct {
  28. state protoimpl.MessageState
  29. sizeCache protoimpl.SizeCache
  30. unknownFields protoimpl.UnknownFields
  31. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  32. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
  33. }
  34. func (x *UserRequest) Reset() {
  35. *x = UserRequest{}
  36. if protoimpl.UnsafeEnabled {
  37. mi := &file_transform_proto_msgTypes[0]
  38. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  39. ms.StoreMessageInfo(mi)
  40. }
  41. }
  42. func (x *UserRequest) String() string {
  43. return protoimpl.X.MessageStringOf(x)
  44. }
  45. func (*UserRequest) ProtoMessage() {}
  46. func (x *UserRequest) ProtoReflect() protoreflect.Message {
  47. mi := &file_transform_proto_msgTypes[0]
  48. if protoimpl.UnsafeEnabled && x != nil {
  49. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  50. if ms.LoadMessageInfo() == nil {
  51. ms.StoreMessageInfo(mi)
  52. }
  53. return ms
  54. }
  55. return mi.MessageOf(x)
  56. }
  57. // Deprecated: Use UserRequest.ProtoReflect.Descriptor instead.
  58. func (*UserRequest) Descriptor() ([]byte, []int) {
  59. return file_transform_proto_rawDescGZIP(), []int{0}
  60. }
  61. func (x *UserRequest) GetId() string {
  62. if x != nil {
  63. return x.Id
  64. }
  65. return ""
  66. }
  67. func (x *UserRequest) GetPhone() string {
  68. if x != nil {
  69. return x.Phone
  70. }
  71. return ""
  72. }
  73. type UserResponse struct {
  74. state protoimpl.MessageState
  75. sizeCache protoimpl.SizeCache
  76. unknownFields protoimpl.UnknownFields
  77. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  78. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
  79. Roles string `protobuf:"bytes,3,opt,name=roles,proto3" json:"roles,omitempty"`
  80. Status int64 `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"`
  81. ErpRoleType int64 `protobuf:"varint,5,opt,name=erpRoleType,proto3" json:"erpRoleType,omitempty"`
  82. UserName string `protobuf:"bytes,6,opt,name=userName,proto3" json:"userName,omitempty"`
  83. CityName string `protobuf:"bytes,7,opt,name=cityName,proto3" json:"cityName,omitempty"`
  84. Gender int64 `protobuf:"varint,8,opt,name=gender,proto3" json:"gender,omitempty"`
  85. }
  86. func (x *UserResponse) Reset() {
  87. *x = UserResponse{}
  88. if protoimpl.UnsafeEnabled {
  89. mi := &file_transform_proto_msgTypes[1]
  90. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  91. ms.StoreMessageInfo(mi)
  92. }
  93. }
  94. func (x *UserResponse) String() string {
  95. return protoimpl.X.MessageStringOf(x)
  96. }
  97. func (*UserResponse) ProtoMessage() {}
  98. func (x *UserResponse) ProtoReflect() protoreflect.Message {
  99. mi := &file_transform_proto_msgTypes[1]
  100. if protoimpl.UnsafeEnabled && x != nil {
  101. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  102. if ms.LoadMessageInfo() == nil {
  103. ms.StoreMessageInfo(mi)
  104. }
  105. return ms
  106. }
  107. return mi.MessageOf(x)
  108. }
  109. // Deprecated: Use UserResponse.ProtoReflect.Descriptor instead.
  110. func (*UserResponse) Descriptor() ([]byte, []int) {
  111. return file_transform_proto_rawDescGZIP(), []int{1}
  112. }
  113. func (x *UserResponse) GetId() string {
  114. if x != nil {
  115. return x.Id
  116. }
  117. return ""
  118. }
  119. func (x *UserResponse) GetPhone() string {
  120. if x != nil {
  121. return x.Phone
  122. }
  123. return ""
  124. }
  125. func (x *UserResponse) GetRoles() string {
  126. if x != nil {
  127. return x.Roles
  128. }
  129. return ""
  130. }
  131. func (x *UserResponse) GetStatus() int64 {
  132. if x != nil {
  133. return x.Status
  134. }
  135. return 0
  136. }
  137. func (x *UserResponse) GetErpRoleType() int64 {
  138. if x != nil {
  139. return x.ErpRoleType
  140. }
  141. return 0
  142. }
  143. func (x *UserResponse) GetUserName() string {
  144. if x != nil {
  145. return x.UserName
  146. }
  147. return ""
  148. }
  149. func (x *UserResponse) GetCityName() string {
  150. if x != nil {
  151. return x.CityName
  152. }
  153. return ""
  154. }
  155. func (x *UserResponse) GetGender() int64 {
  156. if x != nil {
  157. return x.Gender
  158. }
  159. return 0
  160. }
  161. type TokenRequest struct {
  162. state protoimpl.MessageState
  163. sizeCache protoimpl.SizeCache
  164. unknownFields protoimpl.UnknownFields
  165. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  166. }
  167. func (x *TokenRequest) Reset() {
  168. *x = TokenRequest{}
  169. if protoimpl.UnsafeEnabled {
  170. mi := &file_transform_proto_msgTypes[2]
  171. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  172. ms.StoreMessageInfo(mi)
  173. }
  174. }
  175. func (x *TokenRequest) String() string {
  176. return protoimpl.X.MessageStringOf(x)
  177. }
  178. func (*TokenRequest) ProtoMessage() {}
  179. func (x *TokenRequest) ProtoReflect() protoreflect.Message {
  180. mi := &file_transform_proto_msgTypes[2]
  181. if protoimpl.UnsafeEnabled && x != nil {
  182. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  183. if ms.LoadMessageInfo() == nil {
  184. ms.StoreMessageInfo(mi)
  185. }
  186. return ms
  187. }
  188. return mi.MessageOf(x)
  189. }
  190. // Deprecated: Use TokenRequest.ProtoReflect.Descriptor instead.
  191. func (*TokenRequest) Descriptor() ([]byte, []int) {
  192. return file_transform_proto_rawDescGZIP(), []int{2}
  193. }
  194. func (x *TokenRequest) GetToken() string {
  195. if x != nil {
  196. return x.Token
  197. }
  198. return ""
  199. }
  200. type TokenResponse struct {
  201. state protoimpl.MessageState
  202. sizeCache protoimpl.SizeCache
  203. unknownFields protoimpl.UnknownFields
  204. UserId string `protobuf:"bytes,1,opt,name=UserId,proto3" json:"UserId,omitempty"`
  205. UserRoleIds string `protobuf:"bytes,2,opt,name=UserRoleIds,proto3" json:"UserRoleIds,omitempty"`
  206. UserSchoolIds string `protobuf:"bytes,3,opt,name=UserSchoolIds,proto3" json:"UserSchoolIds,omitempty"`
  207. UserProvinceIds string `protobuf:"bytes,4,opt,name=UserProvinceIds,proto3" json:"UserProvinceIds,omitempty"`
  208. UserOrganIds string `protobuf:"bytes,5,opt,name=UserOrganIds,proto3" json:"UserOrganIds,omitempty"`
  209. SysSchoolId string `protobuf:"bytes,6,opt,name=SysSchoolId,proto3" json:"SysSchoolId,omitempty"`
  210. SysOrganId string `protobuf:"bytes,7,opt,name=SysOrganId,proto3" json:"SysOrganId,omitempty"`
  211. UserPhone string `protobuf:"bytes,8,opt,name=UserPhone,proto3" json:"UserPhone,omitempty"`
  212. }
  213. func (x *TokenResponse) Reset() {
  214. *x = TokenResponse{}
  215. if protoimpl.UnsafeEnabled {
  216. mi := &file_transform_proto_msgTypes[3]
  217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  218. ms.StoreMessageInfo(mi)
  219. }
  220. }
  221. func (x *TokenResponse) String() string {
  222. return protoimpl.X.MessageStringOf(x)
  223. }
  224. func (*TokenResponse) ProtoMessage() {}
  225. func (x *TokenResponse) ProtoReflect() protoreflect.Message {
  226. mi := &file_transform_proto_msgTypes[3]
  227. if protoimpl.UnsafeEnabled && x != nil {
  228. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  229. if ms.LoadMessageInfo() == nil {
  230. ms.StoreMessageInfo(mi)
  231. }
  232. return ms
  233. }
  234. return mi.MessageOf(x)
  235. }
  236. // Deprecated: Use TokenResponse.ProtoReflect.Descriptor instead.
  237. func (*TokenResponse) Descriptor() ([]byte, []int) {
  238. return file_transform_proto_rawDescGZIP(), []int{3}
  239. }
  240. func (x *TokenResponse) GetUserId() string {
  241. if x != nil {
  242. return x.UserId
  243. }
  244. return ""
  245. }
  246. func (x *TokenResponse) GetUserRoleIds() string {
  247. if x != nil {
  248. return x.UserRoleIds
  249. }
  250. return ""
  251. }
  252. func (x *TokenResponse) GetUserSchoolIds() string {
  253. if x != nil {
  254. return x.UserSchoolIds
  255. }
  256. return ""
  257. }
  258. func (x *TokenResponse) GetUserProvinceIds() string {
  259. if x != nil {
  260. return x.UserProvinceIds
  261. }
  262. return ""
  263. }
  264. func (x *TokenResponse) GetUserOrganIds() string {
  265. if x != nil {
  266. return x.UserOrganIds
  267. }
  268. return ""
  269. }
  270. func (x *TokenResponse) GetSysSchoolId() string {
  271. if x != nil {
  272. return x.SysSchoolId
  273. }
  274. return ""
  275. }
  276. func (x *TokenResponse) GetSysOrganId() string {
  277. if x != nil {
  278. return x.SysOrganId
  279. }
  280. return ""
  281. }
  282. func (x *TokenResponse) GetUserPhone() string {
  283. if x != nil {
  284. return x.UserPhone
  285. }
  286. return ""
  287. }
  288. type Empty struct {
  289. state protoimpl.MessageState
  290. sizeCache protoimpl.SizeCache
  291. unknownFields protoimpl.UnknownFields
  292. }
  293. func (x *Empty) Reset() {
  294. *x = Empty{}
  295. if protoimpl.UnsafeEnabled {
  296. mi := &file_transform_proto_msgTypes[4]
  297. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  298. ms.StoreMessageInfo(mi)
  299. }
  300. }
  301. func (x *Empty) String() string {
  302. return protoimpl.X.MessageStringOf(x)
  303. }
  304. func (*Empty) ProtoMessage() {}
  305. func (x *Empty) ProtoReflect() protoreflect.Message {
  306. mi := &file_transform_proto_msgTypes[4]
  307. if protoimpl.UnsafeEnabled && x != nil {
  308. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  309. if ms.LoadMessageInfo() == nil {
  310. ms.StoreMessageInfo(mi)
  311. }
  312. return ms
  313. }
  314. return mi.MessageOf(x)
  315. }
  316. // Deprecated: Use Empty.ProtoReflect.Descriptor instead.
  317. func (*Empty) Descriptor() ([]byte, []int) {
  318. return file_transform_proto_rawDescGZIP(), []int{4}
  319. }
  320. type TreeNodes struct {
  321. state protoimpl.MessageState
  322. sizeCache protoimpl.SizeCache
  323. unknownFields protoimpl.UnknownFields
  324. Nodes []*TreeNode `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
  325. }
  326. func (x *TreeNodes) Reset() {
  327. *x = TreeNodes{}
  328. if protoimpl.UnsafeEnabled {
  329. mi := &file_transform_proto_msgTypes[5]
  330. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  331. ms.StoreMessageInfo(mi)
  332. }
  333. }
  334. func (x *TreeNodes) String() string {
  335. return protoimpl.X.MessageStringOf(x)
  336. }
  337. func (*TreeNodes) ProtoMessage() {}
  338. func (x *TreeNodes) ProtoReflect() protoreflect.Message {
  339. mi := &file_transform_proto_msgTypes[5]
  340. if protoimpl.UnsafeEnabled && x != nil {
  341. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  342. if ms.LoadMessageInfo() == nil {
  343. ms.StoreMessageInfo(mi)
  344. }
  345. return ms
  346. }
  347. return mi.MessageOf(x)
  348. }
  349. // Deprecated: Use TreeNodes.ProtoReflect.Descriptor instead.
  350. func (*TreeNodes) Descriptor() ([]byte, []int) {
  351. return file_transform_proto_rawDescGZIP(), []int{5}
  352. }
  353. func (x *TreeNodes) GetNodes() []*TreeNode {
  354. if x != nil {
  355. return x.Nodes
  356. }
  357. return nil
  358. }
  359. type TreeNode struct {
  360. state protoimpl.MessageState
  361. sizeCache protoimpl.SizeCache
  362. unknownFields protoimpl.UnknownFields
  363. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  364. Text string `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
  365. Parent int64 `protobuf:"varint,3,opt,name=parent,proto3" json:"parent,omitempty"`
  366. Tag *Tag `protobuf:"bytes,4,opt,name=tag,proto3" json:"tag,omitempty"`
  367. Nodes []*TreeNode `protobuf:"bytes,5,rep,name=nodes,proto3" json:"nodes,omitempty"`
  368. }
  369. func (x *TreeNode) Reset() {
  370. *x = TreeNode{}
  371. if protoimpl.UnsafeEnabled {
  372. mi := &file_transform_proto_msgTypes[6]
  373. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  374. ms.StoreMessageInfo(mi)
  375. }
  376. }
  377. func (x *TreeNode) String() string {
  378. return protoimpl.X.MessageStringOf(x)
  379. }
  380. func (*TreeNode) ProtoMessage() {}
  381. func (x *TreeNode) ProtoReflect() protoreflect.Message {
  382. mi := &file_transform_proto_msgTypes[6]
  383. if protoimpl.UnsafeEnabled && x != nil {
  384. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  385. if ms.LoadMessageInfo() == nil {
  386. ms.StoreMessageInfo(mi)
  387. }
  388. return ms
  389. }
  390. return mi.MessageOf(x)
  391. }
  392. // Deprecated: Use TreeNode.ProtoReflect.Descriptor instead.
  393. func (*TreeNode) Descriptor() ([]byte, []int) {
  394. return file_transform_proto_rawDescGZIP(), []int{6}
  395. }
  396. func (x *TreeNode) GetId() int64 {
  397. if x != nil {
  398. return x.Id
  399. }
  400. return 0
  401. }
  402. func (x *TreeNode) GetText() string {
  403. if x != nil {
  404. return x.Text
  405. }
  406. return ""
  407. }
  408. func (x *TreeNode) GetParent() int64 {
  409. if x != nil {
  410. return x.Parent
  411. }
  412. return 0
  413. }
  414. func (x *TreeNode) GetTag() *Tag {
  415. if x != nil {
  416. return x.Tag
  417. }
  418. return nil
  419. }
  420. func (x *TreeNode) GetNodes() []*TreeNode {
  421. if x != nil {
  422. return x.Nodes
  423. }
  424. return nil
  425. }
  426. type Tag struct {
  427. state protoimpl.MessageState
  428. sizeCache protoimpl.SizeCache
  429. unknownFields protoimpl.UnknownFields
  430. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  431. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  432. }
  433. func (x *Tag) Reset() {
  434. *x = Tag{}
  435. if protoimpl.UnsafeEnabled {
  436. mi := &file_transform_proto_msgTypes[7]
  437. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  438. ms.StoreMessageInfo(mi)
  439. }
  440. }
  441. func (x *Tag) String() string {
  442. return protoimpl.X.MessageStringOf(x)
  443. }
  444. func (*Tag) ProtoMessage() {}
  445. func (x *Tag) ProtoReflect() protoreflect.Message {
  446. mi := &file_transform_proto_msgTypes[7]
  447. if protoimpl.UnsafeEnabled && x != nil {
  448. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  449. if ms.LoadMessageInfo() == nil {
  450. ms.StoreMessageInfo(mi)
  451. }
  452. return ms
  453. }
  454. return mi.MessageOf(x)
  455. }
  456. // Deprecated: Use Tag.ProtoReflect.Descriptor instead.
  457. func (*Tag) Descriptor() ([]byte, []int) {
  458. return file_transform_proto_rawDescGZIP(), []int{7}
  459. }
  460. func (x *Tag) GetId() int64 {
  461. if x != nil {
  462. return x.Id
  463. }
  464. return 0
  465. }
  466. func (x *Tag) GetName() string {
  467. if x != nil {
  468. return x.Name
  469. }
  470. return ""
  471. }
  472. type OptionsetReq struct {
  473. state protoimpl.MessageState
  474. sizeCache protoimpl.SizeCache
  475. unknownFields protoimpl.UnknownFields
  476. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  477. }
  478. func (x *OptionsetReq) Reset() {
  479. *x = OptionsetReq{}
  480. if protoimpl.UnsafeEnabled {
  481. mi := &file_transform_proto_msgTypes[8]
  482. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  483. ms.StoreMessageInfo(mi)
  484. }
  485. }
  486. func (x *OptionsetReq) String() string {
  487. return protoimpl.X.MessageStringOf(x)
  488. }
  489. func (*OptionsetReq) ProtoMessage() {}
  490. func (x *OptionsetReq) ProtoReflect() protoreflect.Message {
  491. mi := &file_transform_proto_msgTypes[8]
  492. if protoimpl.UnsafeEnabled && x != nil {
  493. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  494. if ms.LoadMessageInfo() == nil {
  495. ms.StoreMessageInfo(mi)
  496. }
  497. return ms
  498. }
  499. return mi.MessageOf(x)
  500. }
  501. // Deprecated: Use OptionsetReq.ProtoReflect.Descriptor instead.
  502. func (*OptionsetReq) Descriptor() ([]byte, []int) {
  503. return file_transform_proto_rawDescGZIP(), []int{8}
  504. }
  505. func (x *OptionsetReq) GetCode() string {
  506. if x != nil {
  507. return x.Code
  508. }
  509. return ""
  510. }
  511. type OptionsetRes struct {
  512. state protoimpl.MessageState
  513. sizeCache protoimpl.SizeCache
  514. unknownFields protoimpl.UnknownFields
  515. MapList map[string]string `protobuf:"bytes,1,rep,name=mapList,proto3" json:"mapList,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  516. }
  517. func (x *OptionsetRes) Reset() {
  518. *x = OptionsetRes{}
  519. if protoimpl.UnsafeEnabled {
  520. mi := &file_transform_proto_msgTypes[9]
  521. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  522. ms.StoreMessageInfo(mi)
  523. }
  524. }
  525. func (x *OptionsetRes) String() string {
  526. return protoimpl.X.MessageStringOf(x)
  527. }
  528. func (*OptionsetRes) ProtoMessage() {}
  529. func (x *OptionsetRes) ProtoReflect() protoreflect.Message {
  530. mi := &file_transform_proto_msgTypes[9]
  531. if protoimpl.UnsafeEnabled && x != nil {
  532. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  533. if ms.LoadMessageInfo() == nil {
  534. ms.StoreMessageInfo(mi)
  535. }
  536. return ms
  537. }
  538. return mi.MessageOf(x)
  539. }
  540. // Deprecated: Use OptionsetRes.ProtoReflect.Descriptor instead.
  541. func (*OptionsetRes) Descriptor() ([]byte, []int) {
  542. return file_transform_proto_rawDescGZIP(), []int{9}
  543. }
  544. func (x *OptionsetRes) GetMapList() map[string]string {
  545. if x != nil {
  546. return x.MapList
  547. }
  548. return nil
  549. }
  550. type OptionCode struct {
  551. state protoimpl.MessageState
  552. sizeCache protoimpl.SizeCache
  553. unknownFields protoimpl.UnknownFields
  554. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  555. }
  556. func (x *OptionCode) Reset() {
  557. *x = OptionCode{}
  558. if protoimpl.UnsafeEnabled {
  559. mi := &file_transform_proto_msgTypes[10]
  560. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  561. ms.StoreMessageInfo(mi)
  562. }
  563. }
  564. func (x *OptionCode) String() string {
  565. return protoimpl.X.MessageStringOf(x)
  566. }
  567. func (*OptionCode) ProtoMessage() {}
  568. func (x *OptionCode) ProtoReflect() protoreflect.Message {
  569. mi := &file_transform_proto_msgTypes[10]
  570. if protoimpl.UnsafeEnabled && x != nil {
  571. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  572. if ms.LoadMessageInfo() == nil {
  573. ms.StoreMessageInfo(mi)
  574. }
  575. return ms
  576. }
  577. return mi.MessageOf(x)
  578. }
  579. // Deprecated: Use OptionCode.ProtoReflect.Descriptor instead.
  580. func (*OptionCode) Descriptor() ([]byte, []int) {
  581. return file_transform_proto_rawDescGZIP(), []int{10}
  582. }
  583. func (x *OptionCode) GetCode() string {
  584. if x != nil {
  585. return x.Code
  586. }
  587. return ""
  588. }
  589. type Options struct {
  590. state protoimpl.MessageState
  591. sizeCache protoimpl.SizeCache
  592. unknownFields protoimpl.UnknownFields
  593. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  594. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  595. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  596. }
  597. func (x *Options) Reset() {
  598. *x = Options{}
  599. if protoimpl.UnsafeEnabled {
  600. mi := &file_transform_proto_msgTypes[11]
  601. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  602. ms.StoreMessageInfo(mi)
  603. }
  604. }
  605. func (x *Options) String() string {
  606. return protoimpl.X.MessageStringOf(x)
  607. }
  608. func (*Options) ProtoMessage() {}
  609. func (x *Options) ProtoReflect() protoreflect.Message {
  610. mi := &file_transform_proto_msgTypes[11]
  611. if protoimpl.UnsafeEnabled && x != nil {
  612. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  613. if ms.LoadMessageInfo() == nil {
  614. ms.StoreMessageInfo(mi)
  615. }
  616. return ms
  617. }
  618. return mi.MessageOf(x)
  619. }
  620. // Deprecated: Use Options.ProtoReflect.Descriptor instead.
  621. func (*Options) Descriptor() ([]byte, []int) {
  622. return file_transform_proto_rawDescGZIP(), []int{11}
  623. }
  624. func (x *Options) GetCode() string {
  625. if x != nil {
  626. return x.Code
  627. }
  628. return ""
  629. }
  630. func (x *Options) GetName() string {
  631. if x != nil {
  632. return x.Name
  633. }
  634. return ""
  635. }
  636. func (x *Options) GetValue() string {
  637. if x != nil {
  638. return x.Value
  639. }
  640. return ""
  641. }
  642. type ResponseByte struct {
  643. state protoimpl.MessageState
  644. sizeCache protoimpl.SizeCache
  645. unknownFields protoimpl.UnknownFields
  646. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  647. }
  648. func (x *ResponseByte) Reset() {
  649. *x = ResponseByte{}
  650. if protoimpl.UnsafeEnabled {
  651. mi := &file_transform_proto_msgTypes[12]
  652. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  653. ms.StoreMessageInfo(mi)
  654. }
  655. }
  656. func (x *ResponseByte) String() string {
  657. return protoimpl.X.MessageStringOf(x)
  658. }
  659. func (*ResponseByte) ProtoMessage() {}
  660. func (x *ResponseByte) ProtoReflect() protoreflect.Message {
  661. mi := &file_transform_proto_msgTypes[12]
  662. if protoimpl.UnsafeEnabled && x != nil {
  663. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  664. if ms.LoadMessageInfo() == nil {
  665. ms.StoreMessageInfo(mi)
  666. }
  667. return ms
  668. }
  669. return mi.MessageOf(x)
  670. }
  671. // Deprecated: Use ResponseByte.ProtoReflect.Descriptor instead.
  672. func (*ResponseByte) Descriptor() ([]byte, []int) {
  673. return file_transform_proto_rawDescGZIP(), []int{12}
  674. }
  675. func (x *ResponseByte) GetData() []byte {
  676. if x != nil {
  677. return x.Data
  678. }
  679. return nil
  680. }
  681. type ExcelLogReq struct {
  682. state protoimpl.MessageState
  683. sizeCache protoimpl.SizeCache
  684. unknownFields protoimpl.UnknownFields
  685. Module string `protobuf:"bytes,1,opt,name=Module,proto3" json:"Module,omitempty"`
  686. Cond string `protobuf:"bytes,2,opt,name=Cond,proto3" json:"Cond,omitempty"`
  687. CreateBy string `protobuf:"bytes,3,opt,name=CreateBy,proto3" json:"CreateBy,omitempty"`
  688. CreateTime string `protobuf:"bytes,4,opt,name=CreateTime,proto3" json:"CreateTime,omitempty"`
  689. LastUpdateBy string `protobuf:"bytes,5,opt,name=LastUpdateBy,proto3" json:"LastUpdateBy,omitempty"`
  690. LastUpdateTime string `protobuf:"bytes,6,opt,name=LastUpdateTime,proto3" json:"LastUpdateTime,omitempty"`
  691. DelFlag string `protobuf:"bytes,7,opt,name=DelFlag,proto3" json:"DelFlag,omitempty"`
  692. }
  693. func (x *ExcelLogReq) Reset() {
  694. *x = ExcelLogReq{}
  695. if protoimpl.UnsafeEnabled {
  696. mi := &file_transform_proto_msgTypes[13]
  697. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  698. ms.StoreMessageInfo(mi)
  699. }
  700. }
  701. func (x *ExcelLogReq) String() string {
  702. return protoimpl.X.MessageStringOf(x)
  703. }
  704. func (*ExcelLogReq) ProtoMessage() {}
  705. func (x *ExcelLogReq) ProtoReflect() protoreflect.Message {
  706. mi := &file_transform_proto_msgTypes[13]
  707. if protoimpl.UnsafeEnabled && x != nil {
  708. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  709. if ms.LoadMessageInfo() == nil {
  710. ms.StoreMessageInfo(mi)
  711. }
  712. return ms
  713. }
  714. return mi.MessageOf(x)
  715. }
  716. // Deprecated: Use ExcelLogReq.ProtoReflect.Descriptor instead.
  717. func (*ExcelLogReq) Descriptor() ([]byte, []int) {
  718. return file_transform_proto_rawDescGZIP(), []int{13}
  719. }
  720. func (x *ExcelLogReq) GetModule() string {
  721. if x != nil {
  722. return x.Module
  723. }
  724. return ""
  725. }
  726. func (x *ExcelLogReq) GetCond() string {
  727. if x != nil {
  728. return x.Cond
  729. }
  730. return ""
  731. }
  732. func (x *ExcelLogReq) GetCreateBy() string {
  733. if x != nil {
  734. return x.CreateBy
  735. }
  736. return ""
  737. }
  738. func (x *ExcelLogReq) GetCreateTime() string {
  739. if x != nil {
  740. return x.CreateTime
  741. }
  742. return ""
  743. }
  744. func (x *ExcelLogReq) GetLastUpdateBy() string {
  745. if x != nil {
  746. return x.LastUpdateBy
  747. }
  748. return ""
  749. }
  750. func (x *ExcelLogReq) GetLastUpdateTime() string {
  751. if x != nil {
  752. return x.LastUpdateTime
  753. }
  754. return ""
  755. }
  756. func (x *ExcelLogReq) GetDelFlag() string {
  757. if x != nil {
  758. return x.DelFlag
  759. }
  760. return ""
  761. }
  762. type ExcelLogRes struct {
  763. state protoimpl.MessageState
  764. sizeCache protoimpl.SizeCache
  765. unknownFields protoimpl.UnknownFields
  766. Status int64 `protobuf:"varint,1,opt,name=Status,proto3" json:"Status,omitempty"`
  767. }
  768. func (x *ExcelLogRes) Reset() {
  769. *x = ExcelLogRes{}
  770. if protoimpl.UnsafeEnabled {
  771. mi := &file_transform_proto_msgTypes[14]
  772. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  773. ms.StoreMessageInfo(mi)
  774. }
  775. }
  776. func (x *ExcelLogRes) String() string {
  777. return protoimpl.X.MessageStringOf(x)
  778. }
  779. func (*ExcelLogRes) ProtoMessage() {}
  780. func (x *ExcelLogRes) ProtoReflect() protoreflect.Message {
  781. mi := &file_transform_proto_msgTypes[14]
  782. if protoimpl.UnsafeEnabled && x != nil {
  783. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  784. if ms.LoadMessageInfo() == nil {
  785. ms.StoreMessageInfo(mi)
  786. }
  787. return ms
  788. }
  789. return mi.MessageOf(x)
  790. }
  791. // Deprecated: Use ExcelLogRes.ProtoReflect.Descriptor instead.
  792. func (*ExcelLogRes) Descriptor() ([]byte, []int) {
  793. return file_transform_proto_rawDescGZIP(), []int{14}
  794. }
  795. func (x *ExcelLogRes) GetStatus() int64 {
  796. if x != nil {
  797. return x.Status
  798. }
  799. return 0
  800. }
  801. type SchoolIdsReq struct {
  802. state protoimpl.MessageState
  803. sizeCache protoimpl.SizeCache
  804. unknownFields protoimpl.UnknownFields
  805. Names []string `protobuf:"bytes,1,rep,name=names,proto3" json:"names,omitempty"`
  806. }
  807. func (x *SchoolIdsReq) Reset() {
  808. *x = SchoolIdsReq{}
  809. if protoimpl.UnsafeEnabled {
  810. mi := &file_transform_proto_msgTypes[15]
  811. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  812. ms.StoreMessageInfo(mi)
  813. }
  814. }
  815. func (x *SchoolIdsReq) String() string {
  816. return protoimpl.X.MessageStringOf(x)
  817. }
  818. func (*SchoolIdsReq) ProtoMessage() {}
  819. func (x *SchoolIdsReq) ProtoReflect() protoreflect.Message {
  820. mi := &file_transform_proto_msgTypes[15]
  821. if protoimpl.UnsafeEnabled && x != nil {
  822. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  823. if ms.LoadMessageInfo() == nil {
  824. ms.StoreMessageInfo(mi)
  825. }
  826. return ms
  827. }
  828. return mi.MessageOf(x)
  829. }
  830. // Deprecated: Use SchoolIdsReq.ProtoReflect.Descriptor instead.
  831. func (*SchoolIdsReq) Descriptor() ([]byte, []int) {
  832. return file_transform_proto_rawDescGZIP(), []int{15}
  833. }
  834. func (x *SchoolIdsReq) GetNames() []string {
  835. if x != nil {
  836. return x.Names
  837. }
  838. return nil
  839. }
  840. type ListOfInt struct {
  841. state protoimpl.MessageState
  842. sizeCache protoimpl.SizeCache
  843. unknownFields protoimpl.UnknownFields
  844. Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
  845. }
  846. func (x *ListOfInt) Reset() {
  847. *x = ListOfInt{}
  848. if protoimpl.UnsafeEnabled {
  849. mi := &file_transform_proto_msgTypes[16]
  850. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  851. ms.StoreMessageInfo(mi)
  852. }
  853. }
  854. func (x *ListOfInt) String() string {
  855. return protoimpl.X.MessageStringOf(x)
  856. }
  857. func (*ListOfInt) ProtoMessage() {}
  858. func (x *ListOfInt) ProtoReflect() protoreflect.Message {
  859. mi := &file_transform_proto_msgTypes[16]
  860. if protoimpl.UnsafeEnabled && x != nil {
  861. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  862. if ms.LoadMessageInfo() == nil {
  863. ms.StoreMessageInfo(mi)
  864. }
  865. return ms
  866. }
  867. return mi.MessageOf(x)
  868. }
  869. // Deprecated: Use ListOfInt.ProtoReflect.Descriptor instead.
  870. func (*ListOfInt) Descriptor() ([]byte, []int) {
  871. return file_transform_proto_rawDescGZIP(), []int{16}
  872. }
  873. func (x *ListOfInt) GetIds() []int64 {
  874. if x != nil {
  875. return x.Ids
  876. }
  877. return nil
  878. }
  879. type SchoolIdsRes struct {
  880. state protoimpl.MessageState
  881. sizeCache protoimpl.SizeCache
  882. unknownFields protoimpl.UnknownFields
  883. MapList map[string]int64 `protobuf:"bytes,1,rep,name=mapList,proto3" json:"mapList,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
  884. }
  885. func (x *SchoolIdsRes) Reset() {
  886. *x = SchoolIdsRes{}
  887. if protoimpl.UnsafeEnabled {
  888. mi := &file_transform_proto_msgTypes[17]
  889. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  890. ms.StoreMessageInfo(mi)
  891. }
  892. }
  893. func (x *SchoolIdsRes) String() string {
  894. return protoimpl.X.MessageStringOf(x)
  895. }
  896. func (*SchoolIdsRes) ProtoMessage() {}
  897. func (x *SchoolIdsRes) ProtoReflect() protoreflect.Message {
  898. mi := &file_transform_proto_msgTypes[17]
  899. if protoimpl.UnsafeEnabled && x != nil {
  900. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  901. if ms.LoadMessageInfo() == nil {
  902. ms.StoreMessageInfo(mi)
  903. }
  904. return ms
  905. }
  906. return mi.MessageOf(x)
  907. }
  908. // Deprecated: Use SchoolIdsRes.ProtoReflect.Descriptor instead.
  909. func (*SchoolIdsRes) Descriptor() ([]byte, []int) {
  910. return file_transform_proto_rawDescGZIP(), []int{17}
  911. }
  912. func (x *SchoolIdsRes) GetMapList() map[string]int64 {
  913. if x != nil {
  914. return x.MapList
  915. }
  916. return nil
  917. }
  918. type CityIdsReq struct {
  919. state protoimpl.MessageState
  920. sizeCache protoimpl.SizeCache
  921. unknownFields protoimpl.UnknownFields
  922. Names string `protobuf:"bytes,1,opt,name=names,proto3" json:"names,omitempty"`
  923. }
  924. func (x *CityIdsReq) Reset() {
  925. *x = CityIdsReq{}
  926. if protoimpl.UnsafeEnabled {
  927. mi := &file_transform_proto_msgTypes[18]
  928. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  929. ms.StoreMessageInfo(mi)
  930. }
  931. }
  932. func (x *CityIdsReq) String() string {
  933. return protoimpl.X.MessageStringOf(x)
  934. }
  935. func (*CityIdsReq) ProtoMessage() {}
  936. func (x *CityIdsReq) ProtoReflect() protoreflect.Message {
  937. mi := &file_transform_proto_msgTypes[18]
  938. if protoimpl.UnsafeEnabled && x != nil {
  939. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  940. if ms.LoadMessageInfo() == nil {
  941. ms.StoreMessageInfo(mi)
  942. }
  943. return ms
  944. }
  945. return mi.MessageOf(x)
  946. }
  947. // Deprecated: Use CityIdsReq.ProtoReflect.Descriptor instead.
  948. func (*CityIdsReq) Descriptor() ([]byte, []int) {
  949. return file_transform_proto_rawDescGZIP(), []int{18}
  950. }
  951. func (x *CityIdsReq) GetNames() string {
  952. if x != nil {
  953. return x.Names
  954. }
  955. return ""
  956. }
  957. type CityIdsRes struct {
  958. state protoimpl.MessageState
  959. sizeCache protoimpl.SizeCache
  960. unknownFields protoimpl.UnknownFields
  961. MapList map[string]int64 `protobuf:"bytes,1,rep,name=mapList,proto3" json:"mapList,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"varint,2,opt,name=value,proto3"`
  962. }
  963. func (x *CityIdsRes) Reset() {
  964. *x = CityIdsRes{}
  965. if protoimpl.UnsafeEnabled {
  966. mi := &file_transform_proto_msgTypes[19]
  967. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  968. ms.StoreMessageInfo(mi)
  969. }
  970. }
  971. func (x *CityIdsRes) String() string {
  972. return protoimpl.X.MessageStringOf(x)
  973. }
  974. func (*CityIdsRes) ProtoMessage() {}
  975. func (x *CityIdsRes) ProtoReflect() protoreflect.Message {
  976. mi := &file_transform_proto_msgTypes[19]
  977. if protoimpl.UnsafeEnabled && x != nil {
  978. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  979. if ms.LoadMessageInfo() == nil {
  980. ms.StoreMessageInfo(mi)
  981. }
  982. return ms
  983. }
  984. return mi.MessageOf(x)
  985. }
  986. // Deprecated: Use CityIdsRes.ProtoReflect.Descriptor instead.
  987. func (*CityIdsRes) Descriptor() ([]byte, []int) {
  988. return file_transform_proto_rawDescGZIP(), []int{19}
  989. }
  990. func (x *CityIdsRes) GetMapList() map[string]int64 {
  991. if x != nil {
  992. return x.MapList
  993. }
  994. return nil
  995. }
  996. type BytesReq struct {
  997. state protoimpl.MessageState
  998. sizeCache protoimpl.SizeCache
  999. unknownFields protoimpl.UnknownFields
  1000. Req []byte `protobuf:"bytes,1,opt,name=req,proto3" json:"req,omitempty"`
  1001. }
  1002. func (x *BytesReq) Reset() {
  1003. *x = BytesReq{}
  1004. if protoimpl.UnsafeEnabled {
  1005. mi := &file_transform_proto_msgTypes[20]
  1006. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1007. ms.StoreMessageInfo(mi)
  1008. }
  1009. }
  1010. func (x *BytesReq) String() string {
  1011. return protoimpl.X.MessageStringOf(x)
  1012. }
  1013. func (*BytesReq) ProtoMessage() {}
  1014. func (x *BytesReq) ProtoReflect() protoreflect.Message {
  1015. mi := &file_transform_proto_msgTypes[20]
  1016. if protoimpl.UnsafeEnabled && x != nil {
  1017. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1018. if ms.LoadMessageInfo() == nil {
  1019. ms.StoreMessageInfo(mi)
  1020. }
  1021. return ms
  1022. }
  1023. return mi.MessageOf(x)
  1024. }
  1025. // Deprecated: Use BytesReq.ProtoReflect.Descriptor instead.
  1026. func (*BytesReq) Descriptor() ([]byte, []int) {
  1027. return file_transform_proto_rawDescGZIP(), []int{20}
  1028. }
  1029. func (x *BytesReq) GetReq() []byte {
  1030. if x != nil {
  1031. return x.Req
  1032. }
  1033. return nil
  1034. }
  1035. type BytesResp struct {
  1036. state protoimpl.MessageState
  1037. sizeCache protoimpl.SizeCache
  1038. unknownFields protoimpl.UnknownFields
  1039. Resp []byte `protobuf:"bytes,1,opt,name=resp,proto3" json:"resp,omitempty"`
  1040. }
  1041. func (x *BytesResp) Reset() {
  1042. *x = BytesResp{}
  1043. if protoimpl.UnsafeEnabled {
  1044. mi := &file_transform_proto_msgTypes[21]
  1045. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1046. ms.StoreMessageInfo(mi)
  1047. }
  1048. }
  1049. func (x *BytesResp) String() string {
  1050. return protoimpl.X.MessageStringOf(x)
  1051. }
  1052. func (*BytesResp) ProtoMessage() {}
  1053. func (x *BytesResp) ProtoReflect() protoreflect.Message {
  1054. mi := &file_transform_proto_msgTypes[21]
  1055. if protoimpl.UnsafeEnabled && x != nil {
  1056. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1057. if ms.LoadMessageInfo() == nil {
  1058. ms.StoreMessageInfo(mi)
  1059. }
  1060. return ms
  1061. }
  1062. return mi.MessageOf(x)
  1063. }
  1064. // Deprecated: Use BytesResp.ProtoReflect.Descriptor instead.
  1065. func (*BytesResp) Descriptor() ([]byte, []int) {
  1066. return file_transform_proto_rawDescGZIP(), []int{21}
  1067. }
  1068. func (x *BytesResp) GetResp() []byte {
  1069. if x != nil {
  1070. return x.Resp
  1071. }
  1072. return nil
  1073. }
  1074. type GetErpRoleRes struct {
  1075. state protoimpl.MessageState
  1076. sizeCache protoimpl.SizeCache
  1077. unknownFields protoimpl.UnknownFields
  1078. UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1079. Role string `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
  1080. SchId int64 `protobuf:"varint,3,opt,name=sch_id,json=schId,proto3" json:"sch_id,omitempty"`
  1081. }
  1082. func (x *GetErpRoleRes) Reset() {
  1083. *x = GetErpRoleRes{}
  1084. if protoimpl.UnsafeEnabled {
  1085. mi := &file_transform_proto_msgTypes[22]
  1086. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1087. ms.StoreMessageInfo(mi)
  1088. }
  1089. }
  1090. func (x *GetErpRoleRes) String() string {
  1091. return protoimpl.X.MessageStringOf(x)
  1092. }
  1093. func (*GetErpRoleRes) ProtoMessage() {}
  1094. func (x *GetErpRoleRes) ProtoReflect() protoreflect.Message {
  1095. mi := &file_transform_proto_msgTypes[22]
  1096. if protoimpl.UnsafeEnabled && x != nil {
  1097. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1098. if ms.LoadMessageInfo() == nil {
  1099. ms.StoreMessageInfo(mi)
  1100. }
  1101. return ms
  1102. }
  1103. return mi.MessageOf(x)
  1104. }
  1105. // Deprecated: Use GetErpRoleRes.ProtoReflect.Descriptor instead.
  1106. func (*GetErpRoleRes) Descriptor() ([]byte, []int) {
  1107. return file_transform_proto_rawDescGZIP(), []int{22}
  1108. }
  1109. func (x *GetErpRoleRes) GetUserId() string {
  1110. if x != nil {
  1111. return x.UserId
  1112. }
  1113. return ""
  1114. }
  1115. func (x *GetErpRoleRes) GetRole() string {
  1116. if x != nil {
  1117. return x.Role
  1118. }
  1119. return ""
  1120. }
  1121. func (x *GetErpRoleRes) GetSchId() int64 {
  1122. if x != nil {
  1123. return x.SchId
  1124. }
  1125. return 0
  1126. }
  1127. type GetErpRoleReq struct {
  1128. state protoimpl.MessageState
  1129. sizeCache protoimpl.SizeCache
  1130. unknownFields protoimpl.UnknownFields
  1131. Mobile string `protobuf:"bytes,1,opt,name=mobile,proto3" json:"mobile,omitempty"`
  1132. UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1133. }
  1134. func (x *GetErpRoleReq) Reset() {
  1135. *x = GetErpRoleReq{}
  1136. if protoimpl.UnsafeEnabled {
  1137. mi := &file_transform_proto_msgTypes[23]
  1138. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1139. ms.StoreMessageInfo(mi)
  1140. }
  1141. }
  1142. func (x *GetErpRoleReq) String() string {
  1143. return protoimpl.X.MessageStringOf(x)
  1144. }
  1145. func (*GetErpRoleReq) ProtoMessage() {}
  1146. func (x *GetErpRoleReq) ProtoReflect() protoreflect.Message {
  1147. mi := &file_transform_proto_msgTypes[23]
  1148. if protoimpl.UnsafeEnabled && x != nil {
  1149. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1150. if ms.LoadMessageInfo() == nil {
  1151. ms.StoreMessageInfo(mi)
  1152. }
  1153. return ms
  1154. }
  1155. return mi.MessageOf(x)
  1156. }
  1157. // Deprecated: Use GetErpRoleReq.ProtoReflect.Descriptor instead.
  1158. func (*GetErpRoleReq) Descriptor() ([]byte, []int) {
  1159. return file_transform_proto_rawDescGZIP(), []int{23}
  1160. }
  1161. func (x *GetErpRoleReq) GetMobile() string {
  1162. if x != nil {
  1163. return x.Mobile
  1164. }
  1165. return ""
  1166. }
  1167. func (x *GetErpRoleReq) GetUserId() string {
  1168. if x != nil {
  1169. return x.UserId
  1170. }
  1171. return ""
  1172. }
  1173. type GetErpOrganSchPerByUserIdReq struct {
  1174. state protoimpl.MessageState
  1175. sizeCache protoimpl.SizeCache
  1176. unknownFields protoimpl.UnknownFields
  1177. UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1178. }
  1179. func (x *GetErpOrganSchPerByUserIdReq) Reset() {
  1180. *x = GetErpOrganSchPerByUserIdReq{}
  1181. if protoimpl.UnsafeEnabled {
  1182. mi := &file_transform_proto_msgTypes[24]
  1183. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1184. ms.StoreMessageInfo(mi)
  1185. }
  1186. }
  1187. func (x *GetErpOrganSchPerByUserIdReq) String() string {
  1188. return protoimpl.X.MessageStringOf(x)
  1189. }
  1190. func (*GetErpOrganSchPerByUserIdReq) ProtoMessage() {}
  1191. func (x *GetErpOrganSchPerByUserIdReq) ProtoReflect() protoreflect.Message {
  1192. mi := &file_transform_proto_msgTypes[24]
  1193. if protoimpl.UnsafeEnabled && x != nil {
  1194. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1195. if ms.LoadMessageInfo() == nil {
  1196. ms.StoreMessageInfo(mi)
  1197. }
  1198. return ms
  1199. }
  1200. return mi.MessageOf(x)
  1201. }
  1202. // Deprecated: Use GetErpOrganSchPerByUserIdReq.ProtoReflect.Descriptor instead.
  1203. func (*GetErpOrganSchPerByUserIdReq) Descriptor() ([]byte, []int) {
  1204. return file_transform_proto_rawDescGZIP(), []int{24}
  1205. }
  1206. func (x *GetErpOrganSchPerByUserIdReq) GetUserId() string {
  1207. if x != nil {
  1208. return x.UserId
  1209. }
  1210. return ""
  1211. }
  1212. type GetErpOrganSchPerByUserIdRes struct {
  1213. state protoimpl.MessageState
  1214. sizeCache protoimpl.SizeCache
  1215. unknownFields protoimpl.UnknownFields
  1216. School []*OrganSchool `protobuf:"bytes,1,rep,name=school,proto3" json:"school,omitempty"`
  1217. }
  1218. func (x *GetErpOrganSchPerByUserIdRes) Reset() {
  1219. *x = GetErpOrganSchPerByUserIdRes{}
  1220. if protoimpl.UnsafeEnabled {
  1221. mi := &file_transform_proto_msgTypes[25]
  1222. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1223. ms.StoreMessageInfo(mi)
  1224. }
  1225. }
  1226. func (x *GetErpOrganSchPerByUserIdRes) String() string {
  1227. return protoimpl.X.MessageStringOf(x)
  1228. }
  1229. func (*GetErpOrganSchPerByUserIdRes) ProtoMessage() {}
  1230. func (x *GetErpOrganSchPerByUserIdRes) ProtoReflect() protoreflect.Message {
  1231. mi := &file_transform_proto_msgTypes[25]
  1232. if protoimpl.UnsafeEnabled && x != nil {
  1233. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1234. if ms.LoadMessageInfo() == nil {
  1235. ms.StoreMessageInfo(mi)
  1236. }
  1237. return ms
  1238. }
  1239. return mi.MessageOf(x)
  1240. }
  1241. // Deprecated: Use GetErpOrganSchPerByUserIdRes.ProtoReflect.Descriptor instead.
  1242. func (*GetErpOrganSchPerByUserIdRes) Descriptor() ([]byte, []int) {
  1243. return file_transform_proto_rawDescGZIP(), []int{25}
  1244. }
  1245. func (x *GetErpOrganSchPerByUserIdRes) GetSchool() []*OrganSchool {
  1246. if x != nil {
  1247. return x.School
  1248. }
  1249. return nil
  1250. }
  1251. type OrganSchool struct {
  1252. state protoimpl.MessageState
  1253. sizeCache protoimpl.SizeCache
  1254. unknownFields protoimpl.UnknownFields
  1255. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1256. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  1257. OrganId int64 `protobuf:"varint,3,opt,name=organ_id,json=organId,proto3" json:"organ_id,omitempty"`
  1258. }
  1259. func (x *OrganSchool) Reset() {
  1260. *x = OrganSchool{}
  1261. if protoimpl.UnsafeEnabled {
  1262. mi := &file_transform_proto_msgTypes[26]
  1263. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1264. ms.StoreMessageInfo(mi)
  1265. }
  1266. }
  1267. func (x *OrganSchool) String() string {
  1268. return protoimpl.X.MessageStringOf(x)
  1269. }
  1270. func (*OrganSchool) ProtoMessage() {}
  1271. func (x *OrganSchool) ProtoReflect() protoreflect.Message {
  1272. mi := &file_transform_proto_msgTypes[26]
  1273. if protoimpl.UnsafeEnabled && x != nil {
  1274. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1275. if ms.LoadMessageInfo() == nil {
  1276. ms.StoreMessageInfo(mi)
  1277. }
  1278. return ms
  1279. }
  1280. return mi.MessageOf(x)
  1281. }
  1282. // Deprecated: Use OrganSchool.ProtoReflect.Descriptor instead.
  1283. func (*OrganSchool) Descriptor() ([]byte, []int) {
  1284. return file_transform_proto_rawDescGZIP(), []int{26}
  1285. }
  1286. func (x *OrganSchool) GetId() int64 {
  1287. if x != nil {
  1288. return x.Id
  1289. }
  1290. return 0
  1291. }
  1292. func (x *OrganSchool) GetName() string {
  1293. if x != nil {
  1294. return x.Name
  1295. }
  1296. return ""
  1297. }
  1298. func (x *OrganSchool) GetOrganId() int64 {
  1299. if x != nil {
  1300. return x.OrganId
  1301. }
  1302. return 0
  1303. }
  1304. type GetErpSchoolRes struct {
  1305. state protoimpl.MessageState
  1306. sizeCache protoimpl.SizeCache
  1307. unknownFields protoimpl.UnknownFields
  1308. School []*OrganSchool `protobuf:"bytes,1,rep,name=school,proto3" json:"school,omitempty"`
  1309. }
  1310. func (x *GetErpSchoolRes) Reset() {
  1311. *x = GetErpSchoolRes{}
  1312. if protoimpl.UnsafeEnabled {
  1313. mi := &file_transform_proto_msgTypes[27]
  1314. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1315. ms.StoreMessageInfo(mi)
  1316. }
  1317. }
  1318. func (x *GetErpSchoolRes) String() string {
  1319. return protoimpl.X.MessageStringOf(x)
  1320. }
  1321. func (*GetErpSchoolRes) ProtoMessage() {}
  1322. func (x *GetErpSchoolRes) ProtoReflect() protoreflect.Message {
  1323. mi := &file_transform_proto_msgTypes[27]
  1324. if protoimpl.UnsafeEnabled && x != nil {
  1325. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1326. if ms.LoadMessageInfo() == nil {
  1327. ms.StoreMessageInfo(mi)
  1328. }
  1329. return ms
  1330. }
  1331. return mi.MessageOf(x)
  1332. }
  1333. // Deprecated: Use GetErpSchoolRes.ProtoReflect.Descriptor instead.
  1334. func (*GetErpSchoolRes) Descriptor() ([]byte, []int) {
  1335. return file_transform_proto_rawDescGZIP(), []int{27}
  1336. }
  1337. func (x *GetErpSchoolRes) GetSchool() []*OrganSchool {
  1338. if x != nil {
  1339. return x.School
  1340. }
  1341. return nil
  1342. }
  1343. type GetErpActiveReq struct {
  1344. state protoimpl.MessageState
  1345. sizeCache protoimpl.SizeCache
  1346. unknownFields protoimpl.UnknownFields
  1347. SchId uint64 `protobuf:"varint,1,opt,name=sch_id,json=schId,proto3" json:"sch_id,omitempty"`
  1348. }
  1349. func (x *GetErpActiveReq) Reset() {
  1350. *x = GetErpActiveReq{}
  1351. if protoimpl.UnsafeEnabled {
  1352. mi := &file_transform_proto_msgTypes[28]
  1353. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1354. ms.StoreMessageInfo(mi)
  1355. }
  1356. }
  1357. func (x *GetErpActiveReq) String() string {
  1358. return protoimpl.X.MessageStringOf(x)
  1359. }
  1360. func (*GetErpActiveReq) ProtoMessage() {}
  1361. func (x *GetErpActiveReq) ProtoReflect() protoreflect.Message {
  1362. mi := &file_transform_proto_msgTypes[28]
  1363. if protoimpl.UnsafeEnabled && x != nil {
  1364. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1365. if ms.LoadMessageInfo() == nil {
  1366. ms.StoreMessageInfo(mi)
  1367. }
  1368. return ms
  1369. }
  1370. return mi.MessageOf(x)
  1371. }
  1372. // Deprecated: Use GetErpActiveReq.ProtoReflect.Descriptor instead.
  1373. func (*GetErpActiveReq) Descriptor() ([]byte, []int) {
  1374. return file_transform_proto_rawDescGZIP(), []int{28}
  1375. }
  1376. func (x *GetErpActiveReq) GetSchId() uint64 {
  1377. if x != nil {
  1378. return x.SchId
  1379. }
  1380. return 0
  1381. }
  1382. type GetErpActiveRes struct {
  1383. state protoimpl.MessageState
  1384. sizeCache protoimpl.SizeCache
  1385. unknownFields protoimpl.UnknownFields
  1386. Active []*Active `protobuf:"bytes,1,rep,name=active,proto3" json:"active,omitempty"`
  1387. }
  1388. func (x *GetErpActiveRes) Reset() {
  1389. *x = GetErpActiveRes{}
  1390. if protoimpl.UnsafeEnabled {
  1391. mi := &file_transform_proto_msgTypes[29]
  1392. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1393. ms.StoreMessageInfo(mi)
  1394. }
  1395. }
  1396. func (x *GetErpActiveRes) String() string {
  1397. return protoimpl.X.MessageStringOf(x)
  1398. }
  1399. func (*GetErpActiveRes) ProtoMessage() {}
  1400. func (x *GetErpActiveRes) ProtoReflect() protoreflect.Message {
  1401. mi := &file_transform_proto_msgTypes[29]
  1402. if protoimpl.UnsafeEnabled && x != nil {
  1403. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1404. if ms.LoadMessageInfo() == nil {
  1405. ms.StoreMessageInfo(mi)
  1406. }
  1407. return ms
  1408. }
  1409. return mi.MessageOf(x)
  1410. }
  1411. // Deprecated: Use GetErpActiveRes.ProtoReflect.Descriptor instead.
  1412. func (*GetErpActiveRes) Descriptor() ([]byte, []int) {
  1413. return file_transform_proto_rawDescGZIP(), []int{29}
  1414. }
  1415. func (x *GetErpActiveRes) GetActive() []*Active {
  1416. if x != nil {
  1417. return x.Active
  1418. }
  1419. return nil
  1420. }
  1421. type Active struct {
  1422. state protoimpl.MessageState
  1423. sizeCache protoimpl.SizeCache
  1424. unknownFields protoimpl.UnknownFields
  1425. ActiveId int64 `protobuf:"varint,1,opt,name=active_id,json=activeId,proto3" json:"active_id,omitempty"`
  1426. MaName string `protobuf:"bytes,2,opt,name=ma_name,json=maName,proto3" json:"ma_name,omitempty"`
  1427. }
  1428. func (x *Active) Reset() {
  1429. *x = Active{}
  1430. if protoimpl.UnsafeEnabled {
  1431. mi := &file_transform_proto_msgTypes[30]
  1432. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1433. ms.StoreMessageInfo(mi)
  1434. }
  1435. }
  1436. func (x *Active) String() string {
  1437. return protoimpl.X.MessageStringOf(x)
  1438. }
  1439. func (*Active) ProtoMessage() {}
  1440. func (x *Active) ProtoReflect() protoreflect.Message {
  1441. mi := &file_transform_proto_msgTypes[30]
  1442. if protoimpl.UnsafeEnabled && x != nil {
  1443. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1444. if ms.LoadMessageInfo() == nil {
  1445. ms.StoreMessageInfo(mi)
  1446. }
  1447. return ms
  1448. }
  1449. return mi.MessageOf(x)
  1450. }
  1451. // Deprecated: Use Active.ProtoReflect.Descriptor instead.
  1452. func (*Active) Descriptor() ([]byte, []int) {
  1453. return file_transform_proto_rawDescGZIP(), []int{30}
  1454. }
  1455. func (x *Active) GetActiveId() int64 {
  1456. if x != nil {
  1457. return x.ActiveId
  1458. }
  1459. return 0
  1460. }
  1461. func (x *Active) GetMaName() string {
  1462. if x != nil {
  1463. return x.MaName
  1464. }
  1465. return ""
  1466. }
  1467. type DataPermissionReq struct {
  1468. state protoimpl.MessageState
  1469. sizeCache protoimpl.SizeCache
  1470. unknownFields protoimpl.UnknownFields
  1471. RuleCode string `protobuf:"bytes,1,opt,name=rule_code,json=ruleCode,proto3" json:"rule_code,omitempty"`
  1472. UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1473. }
  1474. func (x *DataPermissionReq) Reset() {
  1475. *x = DataPermissionReq{}
  1476. if protoimpl.UnsafeEnabled {
  1477. mi := &file_transform_proto_msgTypes[31]
  1478. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1479. ms.StoreMessageInfo(mi)
  1480. }
  1481. }
  1482. func (x *DataPermissionReq) String() string {
  1483. return protoimpl.X.MessageStringOf(x)
  1484. }
  1485. func (*DataPermissionReq) ProtoMessage() {}
  1486. func (x *DataPermissionReq) ProtoReflect() protoreflect.Message {
  1487. mi := &file_transform_proto_msgTypes[31]
  1488. if protoimpl.UnsafeEnabled && x != nil {
  1489. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1490. if ms.LoadMessageInfo() == nil {
  1491. ms.StoreMessageInfo(mi)
  1492. }
  1493. return ms
  1494. }
  1495. return mi.MessageOf(x)
  1496. }
  1497. // Deprecated: Use DataPermissionReq.ProtoReflect.Descriptor instead.
  1498. func (*DataPermissionReq) Descriptor() ([]byte, []int) {
  1499. return file_transform_proto_rawDescGZIP(), []int{31}
  1500. }
  1501. func (x *DataPermissionReq) GetRuleCode() string {
  1502. if x != nil {
  1503. return x.RuleCode
  1504. }
  1505. return ""
  1506. }
  1507. func (x *DataPermissionReq) GetUserId() string {
  1508. if x != nil {
  1509. return x.UserId
  1510. }
  1511. return ""
  1512. }
  1513. type DataPermissionRes struct {
  1514. state protoimpl.MessageState
  1515. sizeCache protoimpl.SizeCache
  1516. unknownFields protoimpl.UnknownFields
  1517. MapList map[string]string `protobuf:"bytes,1,rep,name=mapList,proto3" json:"mapList,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
  1518. }
  1519. func (x *DataPermissionRes) Reset() {
  1520. *x = DataPermissionRes{}
  1521. if protoimpl.UnsafeEnabled {
  1522. mi := &file_transform_proto_msgTypes[32]
  1523. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1524. ms.StoreMessageInfo(mi)
  1525. }
  1526. }
  1527. func (x *DataPermissionRes) String() string {
  1528. return protoimpl.X.MessageStringOf(x)
  1529. }
  1530. func (*DataPermissionRes) ProtoMessage() {}
  1531. func (x *DataPermissionRes) ProtoReflect() protoreflect.Message {
  1532. mi := &file_transform_proto_msgTypes[32]
  1533. if protoimpl.UnsafeEnabled && x != nil {
  1534. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1535. if ms.LoadMessageInfo() == nil {
  1536. ms.StoreMessageInfo(mi)
  1537. }
  1538. return ms
  1539. }
  1540. return mi.MessageOf(x)
  1541. }
  1542. // Deprecated: Use DataPermissionRes.ProtoReflect.Descriptor instead.
  1543. func (*DataPermissionRes) Descriptor() ([]byte, []int) {
  1544. return file_transform_proto_rawDescGZIP(), []int{32}
  1545. }
  1546. func (x *DataPermissionRes) GetMapList() map[string]string {
  1547. if x != nil {
  1548. return x.MapList
  1549. }
  1550. return nil
  1551. }
  1552. type MktReq struct {
  1553. state protoimpl.MessageState
  1554. sizeCache protoimpl.SizeCache
  1555. unknownFields protoimpl.UnknownFields
  1556. Id int64 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
  1557. MkId string `protobuf:"bytes,2,opt,name=MkId,proto3" json:"MkId,omitempty"`
  1558. PartTimeUserId int64 `protobuf:"varint,3,opt,name=PartTimeUserId,proto3" json:"PartTimeUserId,omitempty"`
  1559. UserId int64 `protobuf:"varint,4,opt,name=UserId,proto3" json:"UserId,omitempty"`
  1560. StuName string `protobuf:"bytes,5,opt,name=StuName,proto3" json:"StuName,omitempty"`
  1561. AgeGroup int64 `protobuf:"varint,6,opt,name=AgeGroup,proto3" json:"AgeGroup,omitempty"`
  1562. StuLinkPerson string `protobuf:"bytes,7,opt,name=StuLinkPerson,proto3" json:"StuLinkPerson,omitempty"`
  1563. StuPhone string `protobuf:"bytes,8,opt,name=StuPhone,proto3" json:"StuPhone,omitempty"`
  1564. SchId int64 `protobuf:"varint,9,opt,name=SchId,proto3" json:"SchId,omitempty"`
  1565. Address string `protobuf:"bytes,10,opt,name=Address,proto3" json:"Address,omitempty"`
  1566. CreateTime string `protobuf:"bytes,11,opt,name=CreateTime,proto3" json:"CreateTime,omitempty"`
  1567. DelFlag int64 `protobuf:"varint,12,opt,name=DelFlag,proto3" json:"DelFlag,omitempty"`
  1568. CheckState int64 `protobuf:"varint,13,opt,name=CheckState,proto3" json:"CheckState,omitempty"`
  1569. CheckTime string `protobuf:"bytes,14,opt,name=CheckTime,proto3" json:"CheckTime,omitempty"`
  1570. CheckBy string `protobuf:"bytes,15,opt,name=CheckBy,proto3" json:"CheckBy,omitempty"`
  1571. NetworkDetailId int64 `protobuf:"varint,16,opt,name=NetworkDetailId,proto3" json:"NetworkDetailId,omitempty"`
  1572. ActiveId int64 `protobuf:"varint,17,opt,name=ActiveId,proto3" json:"ActiveId,omitempty"`
  1573. CallType int64 `protobuf:"varint,18,opt,name=CallType,proto3" json:"CallType,omitempty"`
  1574. MaType int64 `protobuf:"varint,19,opt,name=MaType,proto3" json:"MaType,omitempty"`
  1575. QuaoYji int64 `protobuf:"varint,20,opt,name=QuaoYji,proto3" json:"QuaoYji,omitempty"`
  1576. MktActivityId int64 `protobuf:"varint,21,opt,name=MktActivityId,proto3" json:"MktActivityId,omitempty"`
  1577. LoadSchId int64 `protobuf:"varint,22,opt,name=LoadSchId,proto3" json:"LoadSchId,omitempty"`
  1578. }
  1579. func (x *MktReq) Reset() {
  1580. *x = MktReq{}
  1581. if protoimpl.UnsafeEnabled {
  1582. mi := &file_transform_proto_msgTypes[33]
  1583. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1584. ms.StoreMessageInfo(mi)
  1585. }
  1586. }
  1587. func (x *MktReq) String() string {
  1588. return protoimpl.X.MessageStringOf(x)
  1589. }
  1590. func (*MktReq) ProtoMessage() {}
  1591. func (x *MktReq) ProtoReflect() protoreflect.Message {
  1592. mi := &file_transform_proto_msgTypes[33]
  1593. if protoimpl.UnsafeEnabled && x != nil {
  1594. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1595. if ms.LoadMessageInfo() == nil {
  1596. ms.StoreMessageInfo(mi)
  1597. }
  1598. return ms
  1599. }
  1600. return mi.MessageOf(x)
  1601. }
  1602. // Deprecated: Use MktReq.ProtoReflect.Descriptor instead.
  1603. func (*MktReq) Descriptor() ([]byte, []int) {
  1604. return file_transform_proto_rawDescGZIP(), []int{33}
  1605. }
  1606. func (x *MktReq) GetId() int64 {
  1607. if x != nil {
  1608. return x.Id
  1609. }
  1610. return 0
  1611. }
  1612. func (x *MktReq) GetMkId() string {
  1613. if x != nil {
  1614. return x.MkId
  1615. }
  1616. return ""
  1617. }
  1618. func (x *MktReq) GetPartTimeUserId() int64 {
  1619. if x != nil {
  1620. return x.PartTimeUserId
  1621. }
  1622. return 0
  1623. }
  1624. func (x *MktReq) GetUserId() int64 {
  1625. if x != nil {
  1626. return x.UserId
  1627. }
  1628. return 0
  1629. }
  1630. func (x *MktReq) GetStuName() string {
  1631. if x != nil {
  1632. return x.StuName
  1633. }
  1634. return ""
  1635. }
  1636. func (x *MktReq) GetAgeGroup() int64 {
  1637. if x != nil {
  1638. return x.AgeGroup
  1639. }
  1640. return 0
  1641. }
  1642. func (x *MktReq) GetStuLinkPerson() string {
  1643. if x != nil {
  1644. return x.StuLinkPerson
  1645. }
  1646. return ""
  1647. }
  1648. func (x *MktReq) GetStuPhone() string {
  1649. if x != nil {
  1650. return x.StuPhone
  1651. }
  1652. return ""
  1653. }
  1654. func (x *MktReq) GetSchId() int64 {
  1655. if x != nil {
  1656. return x.SchId
  1657. }
  1658. return 0
  1659. }
  1660. func (x *MktReq) GetAddress() string {
  1661. if x != nil {
  1662. return x.Address
  1663. }
  1664. return ""
  1665. }
  1666. func (x *MktReq) GetCreateTime() string {
  1667. if x != nil {
  1668. return x.CreateTime
  1669. }
  1670. return ""
  1671. }
  1672. func (x *MktReq) GetDelFlag() int64 {
  1673. if x != nil {
  1674. return x.DelFlag
  1675. }
  1676. return 0
  1677. }
  1678. func (x *MktReq) GetCheckState() int64 {
  1679. if x != nil {
  1680. return x.CheckState
  1681. }
  1682. return 0
  1683. }
  1684. func (x *MktReq) GetCheckTime() string {
  1685. if x != nil {
  1686. return x.CheckTime
  1687. }
  1688. return ""
  1689. }
  1690. func (x *MktReq) GetCheckBy() string {
  1691. if x != nil {
  1692. return x.CheckBy
  1693. }
  1694. return ""
  1695. }
  1696. func (x *MktReq) GetNetworkDetailId() int64 {
  1697. if x != nil {
  1698. return x.NetworkDetailId
  1699. }
  1700. return 0
  1701. }
  1702. func (x *MktReq) GetActiveId() int64 {
  1703. if x != nil {
  1704. return x.ActiveId
  1705. }
  1706. return 0
  1707. }
  1708. func (x *MktReq) GetCallType() int64 {
  1709. if x != nil {
  1710. return x.CallType
  1711. }
  1712. return 0
  1713. }
  1714. func (x *MktReq) GetMaType() int64 {
  1715. if x != nil {
  1716. return x.MaType
  1717. }
  1718. return 0
  1719. }
  1720. func (x *MktReq) GetQuaoYji() int64 {
  1721. if x != nil {
  1722. return x.QuaoYji
  1723. }
  1724. return 0
  1725. }
  1726. func (x *MktReq) GetMktActivityId() int64 {
  1727. if x != nil {
  1728. return x.MktActivityId
  1729. }
  1730. return 0
  1731. }
  1732. func (x *MktReq) GetLoadSchId() int64 {
  1733. if x != nil {
  1734. return x.LoadSchId
  1735. }
  1736. return 0
  1737. }
  1738. type MktRes struct {
  1739. state protoimpl.MessageState
  1740. sizeCache protoimpl.SizeCache
  1741. unknownFields protoimpl.UnknownFields
  1742. Status int64 `protobuf:"varint,1,opt,name=Status,proto3" json:"Status,omitempty"`
  1743. }
  1744. func (x *MktRes) Reset() {
  1745. *x = MktRes{}
  1746. if protoimpl.UnsafeEnabled {
  1747. mi := &file_transform_proto_msgTypes[34]
  1748. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1749. ms.StoreMessageInfo(mi)
  1750. }
  1751. }
  1752. func (x *MktRes) String() string {
  1753. return protoimpl.X.MessageStringOf(x)
  1754. }
  1755. func (*MktRes) ProtoMessage() {}
  1756. func (x *MktRes) ProtoReflect() protoreflect.Message {
  1757. mi := &file_transform_proto_msgTypes[34]
  1758. if protoimpl.UnsafeEnabled && x != nil {
  1759. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1760. if ms.LoadMessageInfo() == nil {
  1761. ms.StoreMessageInfo(mi)
  1762. }
  1763. return ms
  1764. }
  1765. return mi.MessageOf(x)
  1766. }
  1767. // Deprecated: Use MktRes.ProtoReflect.Descriptor instead.
  1768. func (*MktRes) Descriptor() ([]byte, []int) {
  1769. return file_transform_proto_rawDescGZIP(), []int{34}
  1770. }
  1771. func (x *MktRes) GetStatus() int64 {
  1772. if x != nil {
  1773. return x.Status
  1774. }
  1775. return 0
  1776. }
  1777. type StudentReq struct {
  1778. state protoimpl.MessageState
  1779. sizeCache protoimpl.SizeCache
  1780. unknownFields protoimpl.UnknownFields
  1781. Id int64 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
  1782. }
  1783. func (x *StudentReq) Reset() {
  1784. *x = StudentReq{}
  1785. if protoimpl.UnsafeEnabled {
  1786. mi := &file_transform_proto_msgTypes[35]
  1787. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1788. ms.StoreMessageInfo(mi)
  1789. }
  1790. }
  1791. func (x *StudentReq) String() string {
  1792. return protoimpl.X.MessageStringOf(x)
  1793. }
  1794. func (*StudentReq) ProtoMessage() {}
  1795. func (x *StudentReq) ProtoReflect() protoreflect.Message {
  1796. mi := &file_transform_proto_msgTypes[35]
  1797. if protoimpl.UnsafeEnabled && x != nil {
  1798. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1799. if ms.LoadMessageInfo() == nil {
  1800. ms.StoreMessageInfo(mi)
  1801. }
  1802. return ms
  1803. }
  1804. return mi.MessageOf(x)
  1805. }
  1806. // Deprecated: Use StudentReq.ProtoReflect.Descriptor instead.
  1807. func (*StudentReq) Descriptor() ([]byte, []int) {
  1808. return file_transform_proto_rawDescGZIP(), []int{35}
  1809. }
  1810. func (x *StudentReq) GetId() int64 {
  1811. if x != nil {
  1812. return x.Id
  1813. }
  1814. return 0
  1815. }
  1816. type StudentRes struct {
  1817. state protoimpl.MessageState
  1818. sizeCache protoimpl.SizeCache
  1819. unknownFields protoimpl.UnknownFields
  1820. Id int64 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
  1821. StuPhone string `protobuf:"bytes,2,opt,name=StuPhone,proto3" json:"StuPhone,omitempty"`
  1822. }
  1823. func (x *StudentRes) Reset() {
  1824. *x = StudentRes{}
  1825. if protoimpl.UnsafeEnabled {
  1826. mi := &file_transform_proto_msgTypes[36]
  1827. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1828. ms.StoreMessageInfo(mi)
  1829. }
  1830. }
  1831. func (x *StudentRes) String() string {
  1832. return protoimpl.X.MessageStringOf(x)
  1833. }
  1834. func (*StudentRes) ProtoMessage() {}
  1835. func (x *StudentRes) ProtoReflect() protoreflect.Message {
  1836. mi := &file_transform_proto_msgTypes[36]
  1837. if protoimpl.UnsafeEnabled && x != nil {
  1838. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1839. if ms.LoadMessageInfo() == nil {
  1840. ms.StoreMessageInfo(mi)
  1841. }
  1842. return ms
  1843. }
  1844. return mi.MessageOf(x)
  1845. }
  1846. // Deprecated: Use StudentRes.ProtoReflect.Descriptor instead.
  1847. func (*StudentRes) Descriptor() ([]byte, []int) {
  1848. return file_transform_proto_rawDescGZIP(), []int{36}
  1849. }
  1850. func (x *StudentRes) GetId() int64 {
  1851. if x != nil {
  1852. return x.Id
  1853. }
  1854. return 0
  1855. }
  1856. func (x *StudentRes) GetStuPhone() string {
  1857. if x != nil {
  1858. return x.StuPhone
  1859. }
  1860. return ""
  1861. }
  1862. var File_transform_proto protoreflect.FileDescriptor
  1863. var file_transform_proto_rawDesc = []byte{
  1864. 0x0a, 0x0f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1865. 0x6f, 0x12, 0x09, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x33, 0x0a, 0x0b,
  1866. 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  1867. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70,
  1868. 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e,
  1869. 0x65, 0x22, 0xd4, 0x01, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  1870. 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  1871. 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1872. 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65,
  1873. 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x16,
  1874. 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
  1875. 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x72, 0x70, 0x52, 0x6f, 0x6c,
  1876. 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x65, 0x72, 0x70,
  1877. 0x52, 0x6f, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72,
  1878. 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72,
  1879. 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x69, 0x74, 0x79, 0x4e, 0x61, 0x6d, 0x65,
  1880. 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x69, 0x74, 0x79, 0x4e, 0x61, 0x6d, 0x65,
  1881. 0x12, 0x16, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03,
  1882. 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x22, 0x24, 0x0a, 0x0c, 0x54, 0x6f, 0x6b, 0x65,
  1883. 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65,
  1884. 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x9d,
  1885. 0x02, 0x0a, 0x0d, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
  1886. 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1887. 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72,
  1888. 0x52, 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x55,
  1889. 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73,
  1890. 0x65, 0x72, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
  1891. 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x73,
  1892. 0x12, 0x28, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65,
  1893. 0x49, 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x50,
  1894. 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x55, 0x73,
  1895. 0x65, 0x72, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  1896. 0x52, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x49, 0x64, 0x73, 0x12, 0x20,
  1897. 0x0a, 0x0b, 0x53, 0x79, 0x73, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x18, 0x06, 0x20,
  1898. 0x01, 0x28, 0x09, 0x52, 0x0b, 0x53, 0x79, 0x73, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64,
  1899. 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x79, 0x73, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x49, 0x64, 0x18, 0x07,
  1900. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x79, 0x73, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x49, 0x64,
  1901. 0x12, 0x1c, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x08, 0x20,
  1902. 0x01, 0x28, 0x09, 0x52, 0x09, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x07,
  1903. 0x0a, 0x05, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x36, 0x0a, 0x09, 0x54, 0x72, 0x65, 0x65, 0x4e,
  1904. 0x6f, 0x64, 0x65, 0x73, 0x12, 0x29, 0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x01, 0x20,
  1905. 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e,
  1906. 0x54, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x22,
  1907. 0x93, 0x01, 0x0a, 0x08, 0x54, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x0e, 0x0a, 0x02,
  1908. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
  1909. 0x74, 0x65, 0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74,
  1910. 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  1911. 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18,
  1912. 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72,
  1913. 0x6d, 0x2e, 0x54, 0x61, 0x67, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x29, 0x0a, 0x05, 0x6e, 0x6f,
  1914. 0x64, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x74, 0x72, 0x61, 0x6e,
  1915. 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x54, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05,
  1916. 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x22, 0x29, 0x0a, 0x03, 0x54, 0x61, 0x67, 0x12, 0x0e, 0x0a, 0x02,
  1917. 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
  1918. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  1919. 0x22, 0x22, 0x0a, 0x0c, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71,
  1920. 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  1921. 0x63, 0x6f, 0x64, 0x65, 0x22, 0x8a, 0x01, 0x0a, 0x0c, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  1922. 0x65, 0x74, 0x52, 0x65, 0x73, 0x12, 0x3e, 0x0a, 0x07, 0x6d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74,
  1923. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f,
  1924. 0x72, 0x6d, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x2e,
  1925. 0x4d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x6d, 0x61,
  1926. 0x70, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x3a, 0x0a, 0x0c, 0x4d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74,
  1927. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  1928. 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  1929. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  1930. 0x01, 0x22, 0x20, 0x0a, 0x0a, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x12,
  1931. 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63,
  1932. 0x6f, 0x64, 0x65, 0x22, 0x47, 0x0a, 0x07, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x12,
  1933. 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f,
  1934. 0x64, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  1935. 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  1936. 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x22, 0x0a, 0x0c,
  1937. 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04,
  1938. 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61,
  1939. 0x22, 0xdb, 0x01, 0x0a, 0x0b, 0x45, 0x78, 0x63, 0x65, 0x6c, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x71,
  1940. 0x12, 0x16, 0x0a, 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  1941. 0x52, 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x43, 0x6f, 0x6e, 0x64,
  1942. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x43, 0x6f, 0x6e, 0x64, 0x12, 0x1a, 0x0a, 0x08,
  1943. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x42, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1944. 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x42, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x61,
  1945. 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x43, 0x72,
  1946. 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x4c, 0x61, 0x73, 0x74,
  1947. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
  1948. 0x4c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x79, 0x12, 0x26, 0x0a, 0x0e,
  1949. 0x4c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06,
  1950. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x4c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  1951. 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x44, 0x65, 0x6c, 0x46, 0x6c, 0x61, 0x67, 0x18,
  1952. 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x44, 0x65, 0x6c, 0x46, 0x6c, 0x61, 0x67, 0x22, 0x25,
  1953. 0x0a, 0x0b, 0x45, 0x78, 0x63, 0x65, 0x6c, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x73, 0x12, 0x16, 0x0a,
  1954. 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x53,
  1955. 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x24, 0x0a, 0x0c, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49,
  1956. 0x64, 0x73, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01,
  1957. 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x1d, 0x0a, 0x09, 0x4c,
  1958. 0x69, 0x73, 0x74, 0x4f, 0x66, 0x49, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18,
  1959. 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0x8a, 0x01, 0x0a, 0x0c, 0x53,
  1960. 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x12, 0x3e, 0x0a, 0x07, 0x6d,
  1961. 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x74,
  1962. 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49,
  1963. 0x64, 0x73, 0x52, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74,
  1964. 0x72, 0x79, 0x52, 0x07, 0x6d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x3a, 0x0a, 0x0c, 0x4d,
  1965. 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
  1966. 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a,
  1967. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61,
  1968. 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x22, 0x0a, 0x0a, 0x43, 0x69, 0x74, 0x79, 0x49,
  1969. 0x64, 0x73, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01,
  1970. 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x86, 0x01, 0x0a, 0x0a,
  1971. 0x43, 0x69, 0x74, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x12, 0x3c, 0x0a, 0x07, 0x6d, 0x61,
  1972. 0x70, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x74, 0x72,
  1973. 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x43, 0x69, 0x74, 0x79, 0x49, 0x64, 0x73, 0x52,
  1974. 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
  1975. 0x07, 0x6d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x3a, 0x0a, 0x0c, 0x4d, 0x61, 0x70, 0x4c,
  1976. 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
  1977. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
  1978. 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  1979. 0x3a, 0x02, 0x38, 0x01, 0x22, 0x1c, 0x0a, 0x08, 0x42, 0x79, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71,
  1980. 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x71, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x72,
  1981. 0x65, 0x71, 0x22, 0x1f, 0x0a, 0x09, 0x42, 0x79, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12,
  1982. 0x12, 0x0a, 0x04, 0x72, 0x65, 0x73, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x72,
  1983. 0x65, 0x73, 0x70, 0x22, 0x53, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x52, 0x6f, 0x6c,
  1984. 0x65, 0x52, 0x65, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,
  1985. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x12, 0x0a,
  1986. 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x6f, 0x6c,
  1987. 0x65, 0x12, 0x15, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
  1988. 0x03, 0x52, 0x05, 0x73, 0x63, 0x68, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x45,
  1989. 0x72, 0x70, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x6f, 0x62,
  1990. 0x69, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x6f, 0x62, 0x69, 0x6c,
  1991. 0x65, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
  1992. 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x37, 0x0a, 0x1c, 0x47, 0x65,
  1993. 0x74, 0x45, 0x72, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63, 0x68, 0x50, 0x65, 0x72, 0x42,
  1994. 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73,
  1995. 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65,
  1996. 0x72, 0x49, 0x64, 0x22, 0x4e, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x4f, 0x72, 0x67,
  1997. 0x61, 0x6e, 0x53, 0x63, 0x68, 0x50, 0x65, 0x72, 0x42, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
  1998. 0x52, 0x65, 0x73, 0x12, 0x2e, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x18, 0x01, 0x20,
  1999. 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e,
  2000. 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x52, 0x06, 0x73, 0x63, 0x68,
  2001. 0x6f, 0x6f, 0x6c, 0x22, 0x4c, 0x0a, 0x0b, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63, 0x68, 0x6f,
  2002. 0x6f, 0x6c, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
  2003. 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  2004. 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x5f,
  2005. 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x49,
  2006. 0x64, 0x22, 0x41, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x53, 0x63, 0x68, 0x6f, 0x6f,
  2007. 0x6c, 0x52, 0x65, 0x73, 0x12, 0x2e, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x18, 0x01,
  2008. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d,
  2009. 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x52, 0x06, 0x73, 0x63,
  2010. 0x68, 0x6f, 0x6f, 0x6c, 0x22, 0x28, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x41, 0x63,
  2011. 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x12, 0x15, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x5f, 0x69,
  2012. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x73, 0x63, 0x68, 0x49, 0x64, 0x22, 0x3c,
  2013. 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65,
  2014. 0x73, 0x12, 0x29, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28,
  2015. 0x0b, 0x32, 0x11, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x41, 0x63,
  2016. 0x74, 0x69, 0x76, 0x65, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x22, 0x3e, 0x0a, 0x06,
  2017. 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65,
  2018. 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x63, 0x74, 0x69, 0x76,
  2019. 0x65, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  2020. 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x61, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x49, 0x0a, 0x11,
  2021. 0x44, 0x61, 0x74, 0x61, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65,
  2022. 0x71, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
  2023. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x75, 0x6c, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x17,
  2024. 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2025. 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x94, 0x01, 0x0a, 0x11, 0x44, 0x61, 0x74, 0x61,
  2026. 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x43, 0x0a,
  2027. 0x07, 0x6d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29,
  2028. 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x50,
  2029. 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70,
  2030. 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x6d, 0x61, 0x70, 0x4c, 0x69,
  2031. 0x73, 0x74, 0x1a, 0x3a, 0x0a, 0x0c, 0x4d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74,
  2032. 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  2033. 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
  2034. 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xfe,
  2035. 0x04, 0x0a, 0x06, 0x4d, 0x6b, 0x74, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x64, 0x18,
  2036. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x4d, 0x6b, 0x49,
  2037. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4d, 0x6b, 0x49, 0x64, 0x12, 0x26, 0x0a,
  2038. 0x0e, 0x50, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2039. 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x55,
  2040. 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
  2041. 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a,
  2042. 0x07, 0x53, 0x74, 0x75, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2043. 0x53, 0x74, 0x75, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x67, 0x65, 0x47, 0x72,
  2044. 0x6f, 0x75, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x41, 0x67, 0x65, 0x47, 0x72,
  2045. 0x6f, 0x75, 0x70, 0x12, 0x24, 0x0a, 0x0d, 0x53, 0x74, 0x75, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x65,
  2046. 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x53, 0x74, 0x75, 0x4c,
  2047. 0x69, 0x6e, 0x6b, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x53, 0x74, 0x75,
  2048. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x53, 0x74, 0x75,
  2049. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x53, 0x63, 0x68, 0x49, 0x64, 0x18, 0x09,
  2050. 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x53, 0x63, 0x68, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x41,
  2051. 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x64,
  2052. 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54,
  2053. 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x43, 0x72, 0x65, 0x61, 0x74,
  2054. 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x44, 0x65, 0x6c, 0x46, 0x6c, 0x61, 0x67,
  2055. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x44, 0x65, 0x6c, 0x46, 0x6c, 0x61, 0x67, 0x12,
  2056. 0x1e, 0x0a, 0x0a, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x0d, 0x20,
  2057. 0x01, 0x28, 0x03, 0x52, 0x0a, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12,
  2058. 0x1c, 0x0a, 0x09, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01,
  2059. 0x28, 0x09, 0x52, 0x09, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a,
  2060. 0x07, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x42, 0x79, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  2061. 0x43, 0x68, 0x65, 0x63, 0x6b, 0x42, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x4e, 0x65, 0x74, 0x77, 0x6f,
  2062. 0x72, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x49, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x03,
  2063. 0x52, 0x0f, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x49,
  2064. 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x49, 0x64, 0x18, 0x11, 0x20,
  2065. 0x01, 0x28, 0x03, 0x52, 0x08, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x49, 0x64, 0x12, 0x1a, 0x0a,
  2066. 0x08, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x03, 0x52,
  2067. 0x08, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x4d, 0x61, 0x54,
  2068. 0x79, 0x70, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x4d, 0x61, 0x54, 0x79, 0x70,
  2069. 0x65, 0x12, 0x18, 0x0a, 0x07, 0x51, 0x75, 0x61, 0x6f, 0x59, 0x6a, 0x69, 0x18, 0x14, 0x20, 0x01,
  2070. 0x28, 0x03, 0x52, 0x07, 0x51, 0x75, 0x61, 0x6f, 0x59, 0x6a, 0x69, 0x12, 0x24, 0x0a, 0x0d, 0x4d,
  2071. 0x6b, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49, 0x64, 0x18, 0x15, 0x20, 0x01,
  2072. 0x28, 0x03, 0x52, 0x0d, 0x4d, 0x6b, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49,
  2073. 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x4c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x49, 0x64, 0x18, 0x16,
  2074. 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x4c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x49, 0x64, 0x22,
  2075. 0x20, 0x0a, 0x06, 0x4d, 0x6b, 0x74, 0x52, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x74, 0x61,
  2076. 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75,
  2077. 0x73, 0x22, 0x1c, 0x0a, 0x0a, 0x53, 0x74, 0x75, 0x64, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12,
  2078. 0x0e, 0x0a, 0x02, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x49, 0x64, 0x22,
  2079. 0x38, 0x0a, 0x0a, 0x53, 0x74, 0x75, 0x64, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x12, 0x0e, 0x0a,
  2080. 0x02, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x49, 0x64, 0x12, 0x1a, 0x0a,
  2081. 0x08, 0x53, 0x74, 0x75, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  2082. 0x08, 0x53, 0x74, 0x75, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x32, 0xf9, 0x08, 0x0a, 0x09, 0x54, 0x72,
  2083. 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x3a, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x55, 0x73,
  2084. 0x65, 0x72, 0x12, 0x16, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x55,
  2085. 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x74, 0x72, 0x61,
  2086. 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f,
  2087. 0x6e, 0x73, 0x65, 0x12, 0x3f, 0x0a, 0x0a, 0x50, 0x61, 0x72, 0x73, 0x65, 0x54, 0x6f, 0x6b, 0x65,
  2088. 0x6e, 0x12, 0x17, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x54, 0x6f,
  2089. 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x74, 0x72, 0x61,
  2090. 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70,
  2091. 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x43, 0x69,
  2092. 0x74, 0x79, 0x54, 0x72, 0x65, 0x65, 0x12, 0x10, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f,
  2093. 0x72, 0x6d, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73,
  2094. 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x54, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x12, 0x2e,
  2095. 0x0a, 0x06, 0x41, 0x64, 0x64, 0x4d, 0x6b, 0x74, 0x12, 0x11, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73,
  2096. 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x4d, 0x6b, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x74, 0x72,
  2097. 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x4d, 0x6b, 0x74, 0x52, 0x65, 0x73, 0x12, 0x41,
  2098. 0x0a, 0x0d, 0x4c, 0x6f, 0x61, 0x64, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x65, 0x74, 0x12,
  2099. 0x17, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x4f, 0x70, 0x74, 0x69,
  2100. 0x6f, 0x6e, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73,
  2101. 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x65, 0x74, 0x52, 0x65,
  2102. 0x73, 0x12, 0x40, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64,
  2103. 0x73, 0x12, 0x17, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x53, 0x63,
  2104. 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x74, 0x72, 0x61,
  2105. 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x73,
  2106. 0x52, 0x65, 0x73, 0x12, 0x3a, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x43, 0x69, 0x74, 0x79, 0x49, 0x64,
  2107. 0x73, 0x12, 0x15, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x43, 0x69,
  2108. 0x74, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73,
  2109. 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x43, 0x69, 0x74, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x12,
  2110. 0x3e, 0x0a, 0x0c, 0x50, 0x6f, 0x73, 0x74, 0x45, 0x78, 0x63, 0x65, 0x6c, 0x4c, 0x6f, 0x67, 0x12,
  2111. 0x16, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x45, 0x78, 0x63, 0x65,
  2112. 0x6c, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66,
  2113. 0x6f, 0x72, 0x6d, 0x2e, 0x45, 0x78, 0x63, 0x65, 0x6c, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x73, 0x12,
  2114. 0x3c, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
  2115. 0x65, 0x74, 0x12, 0x15, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x4f,
  2116. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x1a, 0x12, 0x2e, 0x74, 0x72, 0x61, 0x6e,
  2117. 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x3a, 0x0a,
  2118. 0x0a, 0x47, 0x65, 0x74, 0x53, 0x74, 0x75, 0x64, 0x65, 0x6e, 0x74, 0x12, 0x15, 0x2e, 0x74, 0x72,
  2119. 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x53, 0x74, 0x75, 0x64, 0x65, 0x6e, 0x74, 0x52,
  2120. 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x53,
  2121. 0x74, 0x75, 0x64, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x12, 0x4f, 0x0a, 0x11, 0x47, 0x65, 0x74,
  2122. 0x44, 0x61, 0x74, 0x61, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1c,
  2123. 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x50,
  2124. 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x74,
  2125. 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x50, 0x65, 0x72,
  2126. 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x44, 0x0a, 0x1a, 0x47, 0x65,
  2127. 0x74, 0x45, 0x72, 0x70, 0x4d, 0x6b, 0x74, 0x4e, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65,
  2128. 0x74, 0x61, 0x69, 0x6c, 0x54, 0x72, 0x65, 0x65, 0x12, 0x10, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73,
  2129. 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x74, 0x72, 0x61,
  2130. 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x54, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73,
  2131. 0x12, 0x6d, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53,
  2132. 0x63, 0x68, 0x50, 0x65, 0x72, 0x42, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x27, 0x2e,
  2133. 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70,
  2134. 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63, 0x68, 0x50, 0x65, 0x72, 0x42, 0x79, 0x55, 0x73, 0x65,
  2135. 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x27, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f,
  2136. 0x72, 0x6d, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63,
  2137. 0x68, 0x50, 0x65, 0x72, 0x42, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x12,
  2138. 0x40, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x18, 0x2e,
  2139. 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70,
  2140. 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66,
  2141. 0x6f, 0x72, 0x6d, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65,
  2142. 0x73, 0x12, 0x3c, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x53, 0x63, 0x68, 0x6f, 0x6f,
  2143. 0x6c, 0x12, 0x10, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x45, 0x6d,
  2144. 0x70, 0x74, 0x79, 0x1a, 0x1a, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e,
  2145. 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x12,
  2146. 0x46, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12,
  2147. 0x1a, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x47, 0x65, 0x74, 0x45,
  2148. 0x72, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x74, 0x72,
  2149. 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x41, 0x63,
  2150. 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x12, 0x3c, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x45, 0x72,
  2151. 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63, 0x68, 0x54, 0x72, 0x65, 0x65, 0x12, 0x10, 0x2e,
  2152. 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
  2153. 0x14, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x54, 0x72, 0x65, 0x65,
  2154. 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2155. }
  2156. var (
  2157. file_transform_proto_rawDescOnce sync.Once
  2158. file_transform_proto_rawDescData = file_transform_proto_rawDesc
  2159. )
  2160. func file_transform_proto_rawDescGZIP() []byte {
  2161. file_transform_proto_rawDescOnce.Do(func() {
  2162. file_transform_proto_rawDescData = protoimpl.X.CompressGZIP(file_transform_proto_rawDescData)
  2163. })
  2164. return file_transform_proto_rawDescData
  2165. }
  2166. var file_transform_proto_msgTypes = make([]protoimpl.MessageInfo, 41)
  2167. var file_transform_proto_goTypes = []interface{}{
  2168. (*UserRequest)(nil), // 0: transform.UserRequest
  2169. (*UserResponse)(nil), // 1: transform.UserResponse
  2170. (*TokenRequest)(nil), // 2: transform.TokenRequest
  2171. (*TokenResponse)(nil), // 3: transform.TokenResponse
  2172. (*Empty)(nil), // 4: transform.Empty
  2173. (*TreeNodes)(nil), // 5: transform.TreeNodes
  2174. (*TreeNode)(nil), // 6: transform.TreeNode
  2175. (*Tag)(nil), // 7: transform.Tag
  2176. (*OptionsetReq)(nil), // 8: transform.OptionsetReq
  2177. (*OptionsetRes)(nil), // 9: transform.OptionsetRes
  2178. (*OptionCode)(nil), // 10: transform.OptionCode
  2179. (*Options)(nil), // 11: transform.Options
  2180. (*ResponseByte)(nil), // 12: transform.ResponseByte
  2181. (*ExcelLogReq)(nil), // 13: transform.ExcelLogReq
  2182. (*ExcelLogRes)(nil), // 14: transform.ExcelLogRes
  2183. (*SchoolIdsReq)(nil), // 15: transform.SchoolIdsReq
  2184. (*ListOfInt)(nil), // 16: transform.ListOfInt
  2185. (*SchoolIdsRes)(nil), // 17: transform.SchoolIdsRes
  2186. (*CityIdsReq)(nil), // 18: transform.CityIdsReq
  2187. (*CityIdsRes)(nil), // 19: transform.CityIdsRes
  2188. (*BytesReq)(nil), // 20: transform.BytesReq
  2189. (*BytesResp)(nil), // 21: transform.BytesResp
  2190. (*GetErpRoleRes)(nil), // 22: transform.GetErpRoleRes
  2191. (*GetErpRoleReq)(nil), // 23: transform.GetErpRoleReq
  2192. (*GetErpOrganSchPerByUserIdReq)(nil), // 24: transform.GetErpOrganSchPerByUserIdReq
  2193. (*GetErpOrganSchPerByUserIdRes)(nil), // 25: transform.GetErpOrganSchPerByUserIdRes
  2194. (*OrganSchool)(nil), // 26: transform.OrganSchool
  2195. (*GetErpSchoolRes)(nil), // 27: transform.GetErpSchoolRes
  2196. (*GetErpActiveReq)(nil), // 28: transform.GetErpActiveReq
  2197. (*GetErpActiveRes)(nil), // 29: transform.GetErpActiveRes
  2198. (*Active)(nil), // 30: transform.Active
  2199. (*DataPermissionReq)(nil), // 31: transform.DataPermissionReq
  2200. (*DataPermissionRes)(nil), // 32: transform.DataPermissionRes
  2201. (*MktReq)(nil), // 33: transform.MktReq
  2202. (*MktRes)(nil), // 34: transform.MktRes
  2203. (*StudentReq)(nil), // 35: transform.StudentReq
  2204. (*StudentRes)(nil), // 36: transform.StudentRes
  2205. nil, // 37: transform.OptionsetRes.MapListEntry
  2206. nil, // 38: transform.SchoolIdsRes.MapListEntry
  2207. nil, // 39: transform.CityIdsRes.MapListEntry
  2208. nil, // 40: transform.DataPermissionRes.MapListEntry
  2209. }
  2210. var file_transform_proto_depIdxs = []int32{
  2211. 6, // 0: transform.TreeNodes.nodes:type_name -> transform.TreeNode
  2212. 7, // 1: transform.TreeNode.tag:type_name -> transform.Tag
  2213. 6, // 2: transform.TreeNode.nodes:type_name -> transform.TreeNode
  2214. 37, // 3: transform.OptionsetRes.mapList:type_name -> transform.OptionsetRes.MapListEntry
  2215. 38, // 4: transform.SchoolIdsRes.mapList:type_name -> transform.SchoolIdsRes.MapListEntry
  2216. 39, // 5: transform.CityIdsRes.mapList:type_name -> transform.CityIdsRes.MapListEntry
  2217. 26, // 6: transform.GetErpOrganSchPerByUserIdRes.school:type_name -> transform.OrganSchool
  2218. 26, // 7: transform.GetErpSchoolRes.school:type_name -> transform.OrganSchool
  2219. 30, // 8: transform.GetErpActiveRes.active:type_name -> transform.Active
  2220. 40, // 9: transform.DataPermissionRes.mapList:type_name -> transform.DataPermissionRes.MapListEntry
  2221. 0, // 10: transform.Transform.GetUser:input_type -> transform.UserRequest
  2222. 2, // 11: transform.Transform.ParseToken:input_type -> transform.TokenRequest
  2223. 4, // 12: transform.Transform.GetErpCityTree:input_type -> transform.Empty
  2224. 33, // 13: transform.Transform.AddMkt:input_type -> transform.MktReq
  2225. 8, // 14: transform.Transform.LoadOptionset:input_type -> transform.OptionsetReq
  2226. 15, // 15: transform.Transform.GetSchoolIds:input_type -> transform.SchoolIdsReq
  2227. 18, // 16: transform.Transform.GetCityIds:input_type -> transform.CityIdsReq
  2228. 13, // 17: transform.Transform.PostExcelLog:input_type -> transform.ExcelLogReq
  2229. 10, // 18: transform.Transform.GetErpOptionset:input_type -> transform.OptionCode
  2230. 35, // 19: transform.Transform.GetStudent:input_type -> transform.StudentReq
  2231. 31, // 20: transform.Transform.GetDataPermission:input_type -> transform.DataPermissionReq
  2232. 4, // 21: transform.Transform.GetErpMktNetWorkDetailTree:input_type -> transform.Empty
  2233. 24, // 22: transform.Transform.GetErpOrganSchPerByUserId:input_type -> transform.GetErpOrganSchPerByUserIdReq
  2234. 23, // 23: transform.Transform.GetErpRole:input_type -> transform.GetErpRoleReq
  2235. 4, // 24: transform.Transform.GetErpSchool:input_type -> transform.Empty
  2236. 28, // 25: transform.Transform.GetErpActive:input_type -> transform.GetErpActiveReq
  2237. 4, // 26: transform.Transform.GetErpOrganSchTree:input_type -> transform.Empty
  2238. 1, // 27: transform.Transform.GetUser:output_type -> transform.UserResponse
  2239. 3, // 28: transform.Transform.ParseToken:output_type -> transform.TokenResponse
  2240. 5, // 29: transform.Transform.GetErpCityTree:output_type -> transform.TreeNodes
  2241. 34, // 30: transform.Transform.AddMkt:output_type -> transform.MktRes
  2242. 9, // 31: transform.Transform.LoadOptionset:output_type -> transform.OptionsetRes
  2243. 17, // 32: transform.Transform.GetSchoolIds:output_type -> transform.SchoolIdsRes
  2244. 19, // 33: transform.Transform.GetCityIds:output_type -> transform.CityIdsRes
  2245. 14, // 34: transform.Transform.PostExcelLog:output_type -> transform.ExcelLogRes
  2246. 11, // 35: transform.Transform.GetErpOptionset:output_type -> transform.Options
  2247. 36, // 36: transform.Transform.GetStudent:output_type -> transform.StudentRes
  2248. 32, // 37: transform.Transform.GetDataPermission:output_type -> transform.DataPermissionRes
  2249. 5, // 38: transform.Transform.GetErpMktNetWorkDetailTree:output_type -> transform.TreeNodes
  2250. 25, // 39: transform.Transform.GetErpOrganSchPerByUserId:output_type -> transform.GetErpOrganSchPerByUserIdRes
  2251. 22, // 40: transform.Transform.GetErpRole:output_type -> transform.GetErpRoleRes
  2252. 27, // 41: transform.Transform.GetErpSchool:output_type -> transform.GetErpSchoolRes
  2253. 29, // 42: transform.Transform.GetErpActive:output_type -> transform.GetErpActiveRes
  2254. 5, // 43: transform.Transform.GetErpOrganSchTree:output_type -> transform.TreeNodes
  2255. 27, // [27:44] is the sub-list for method output_type
  2256. 10, // [10:27] is the sub-list for method input_type
  2257. 10, // [10:10] is the sub-list for extension type_name
  2258. 10, // [10:10] is the sub-list for extension extendee
  2259. 0, // [0:10] is the sub-list for field type_name
  2260. }
  2261. func init() { file_transform_proto_init() }
  2262. func file_transform_proto_init() {
  2263. if File_transform_proto != nil {
  2264. return
  2265. }
  2266. if !protoimpl.UnsafeEnabled {
  2267. file_transform_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  2268. switch v := v.(*UserRequest); i {
  2269. case 0:
  2270. return &v.state
  2271. case 1:
  2272. return &v.sizeCache
  2273. case 2:
  2274. return &v.unknownFields
  2275. default:
  2276. return nil
  2277. }
  2278. }
  2279. file_transform_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  2280. switch v := v.(*UserResponse); i {
  2281. case 0:
  2282. return &v.state
  2283. case 1:
  2284. return &v.sizeCache
  2285. case 2:
  2286. return &v.unknownFields
  2287. default:
  2288. return nil
  2289. }
  2290. }
  2291. file_transform_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  2292. switch v := v.(*TokenRequest); i {
  2293. case 0:
  2294. return &v.state
  2295. case 1:
  2296. return &v.sizeCache
  2297. case 2:
  2298. return &v.unknownFields
  2299. default:
  2300. return nil
  2301. }
  2302. }
  2303. file_transform_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  2304. switch v := v.(*TokenResponse); i {
  2305. case 0:
  2306. return &v.state
  2307. case 1:
  2308. return &v.sizeCache
  2309. case 2:
  2310. return &v.unknownFields
  2311. default:
  2312. return nil
  2313. }
  2314. }
  2315. file_transform_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  2316. switch v := v.(*Empty); i {
  2317. case 0:
  2318. return &v.state
  2319. case 1:
  2320. return &v.sizeCache
  2321. case 2:
  2322. return &v.unknownFields
  2323. default:
  2324. return nil
  2325. }
  2326. }
  2327. file_transform_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  2328. switch v := v.(*TreeNodes); i {
  2329. case 0:
  2330. return &v.state
  2331. case 1:
  2332. return &v.sizeCache
  2333. case 2:
  2334. return &v.unknownFields
  2335. default:
  2336. return nil
  2337. }
  2338. }
  2339. file_transform_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  2340. switch v := v.(*TreeNode); i {
  2341. case 0:
  2342. return &v.state
  2343. case 1:
  2344. return &v.sizeCache
  2345. case 2:
  2346. return &v.unknownFields
  2347. default:
  2348. return nil
  2349. }
  2350. }
  2351. file_transform_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  2352. switch v := v.(*Tag); i {
  2353. case 0:
  2354. return &v.state
  2355. case 1:
  2356. return &v.sizeCache
  2357. case 2:
  2358. return &v.unknownFields
  2359. default:
  2360. return nil
  2361. }
  2362. }
  2363. file_transform_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  2364. switch v := v.(*OptionsetReq); i {
  2365. case 0:
  2366. return &v.state
  2367. case 1:
  2368. return &v.sizeCache
  2369. case 2:
  2370. return &v.unknownFields
  2371. default:
  2372. return nil
  2373. }
  2374. }
  2375. file_transform_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  2376. switch v := v.(*OptionsetRes); i {
  2377. case 0:
  2378. return &v.state
  2379. case 1:
  2380. return &v.sizeCache
  2381. case 2:
  2382. return &v.unknownFields
  2383. default:
  2384. return nil
  2385. }
  2386. }
  2387. file_transform_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  2388. switch v := v.(*OptionCode); i {
  2389. case 0:
  2390. return &v.state
  2391. case 1:
  2392. return &v.sizeCache
  2393. case 2:
  2394. return &v.unknownFields
  2395. default:
  2396. return nil
  2397. }
  2398. }
  2399. file_transform_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  2400. switch v := v.(*Options); i {
  2401. case 0:
  2402. return &v.state
  2403. case 1:
  2404. return &v.sizeCache
  2405. case 2:
  2406. return &v.unknownFields
  2407. default:
  2408. return nil
  2409. }
  2410. }
  2411. file_transform_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  2412. switch v := v.(*ResponseByte); i {
  2413. case 0:
  2414. return &v.state
  2415. case 1:
  2416. return &v.sizeCache
  2417. case 2:
  2418. return &v.unknownFields
  2419. default:
  2420. return nil
  2421. }
  2422. }
  2423. file_transform_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  2424. switch v := v.(*ExcelLogReq); i {
  2425. case 0:
  2426. return &v.state
  2427. case 1:
  2428. return &v.sizeCache
  2429. case 2:
  2430. return &v.unknownFields
  2431. default:
  2432. return nil
  2433. }
  2434. }
  2435. file_transform_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  2436. switch v := v.(*ExcelLogRes); i {
  2437. case 0:
  2438. return &v.state
  2439. case 1:
  2440. return &v.sizeCache
  2441. case 2:
  2442. return &v.unknownFields
  2443. default:
  2444. return nil
  2445. }
  2446. }
  2447. file_transform_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  2448. switch v := v.(*SchoolIdsReq); i {
  2449. case 0:
  2450. return &v.state
  2451. case 1:
  2452. return &v.sizeCache
  2453. case 2:
  2454. return &v.unknownFields
  2455. default:
  2456. return nil
  2457. }
  2458. }
  2459. file_transform_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  2460. switch v := v.(*ListOfInt); i {
  2461. case 0:
  2462. return &v.state
  2463. case 1:
  2464. return &v.sizeCache
  2465. case 2:
  2466. return &v.unknownFields
  2467. default:
  2468. return nil
  2469. }
  2470. }
  2471. file_transform_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  2472. switch v := v.(*SchoolIdsRes); i {
  2473. case 0:
  2474. return &v.state
  2475. case 1:
  2476. return &v.sizeCache
  2477. case 2:
  2478. return &v.unknownFields
  2479. default:
  2480. return nil
  2481. }
  2482. }
  2483. file_transform_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  2484. switch v := v.(*CityIdsReq); i {
  2485. case 0:
  2486. return &v.state
  2487. case 1:
  2488. return &v.sizeCache
  2489. case 2:
  2490. return &v.unknownFields
  2491. default:
  2492. return nil
  2493. }
  2494. }
  2495. file_transform_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  2496. switch v := v.(*CityIdsRes); i {
  2497. case 0:
  2498. return &v.state
  2499. case 1:
  2500. return &v.sizeCache
  2501. case 2:
  2502. return &v.unknownFields
  2503. default:
  2504. return nil
  2505. }
  2506. }
  2507. file_transform_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  2508. switch v := v.(*BytesReq); i {
  2509. case 0:
  2510. return &v.state
  2511. case 1:
  2512. return &v.sizeCache
  2513. case 2:
  2514. return &v.unknownFields
  2515. default:
  2516. return nil
  2517. }
  2518. }
  2519. file_transform_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  2520. switch v := v.(*BytesResp); i {
  2521. case 0:
  2522. return &v.state
  2523. case 1:
  2524. return &v.sizeCache
  2525. case 2:
  2526. return &v.unknownFields
  2527. default:
  2528. return nil
  2529. }
  2530. }
  2531. file_transform_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  2532. switch v := v.(*GetErpRoleRes); i {
  2533. case 0:
  2534. return &v.state
  2535. case 1:
  2536. return &v.sizeCache
  2537. case 2:
  2538. return &v.unknownFields
  2539. default:
  2540. return nil
  2541. }
  2542. }
  2543. file_transform_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  2544. switch v := v.(*GetErpRoleReq); i {
  2545. case 0:
  2546. return &v.state
  2547. case 1:
  2548. return &v.sizeCache
  2549. case 2:
  2550. return &v.unknownFields
  2551. default:
  2552. return nil
  2553. }
  2554. }
  2555. file_transform_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  2556. switch v := v.(*GetErpOrganSchPerByUserIdReq); i {
  2557. case 0:
  2558. return &v.state
  2559. case 1:
  2560. return &v.sizeCache
  2561. case 2:
  2562. return &v.unknownFields
  2563. default:
  2564. return nil
  2565. }
  2566. }
  2567. file_transform_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  2568. switch v := v.(*GetErpOrganSchPerByUserIdRes); i {
  2569. case 0:
  2570. return &v.state
  2571. case 1:
  2572. return &v.sizeCache
  2573. case 2:
  2574. return &v.unknownFields
  2575. default:
  2576. return nil
  2577. }
  2578. }
  2579. file_transform_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  2580. switch v := v.(*OrganSchool); i {
  2581. case 0:
  2582. return &v.state
  2583. case 1:
  2584. return &v.sizeCache
  2585. case 2:
  2586. return &v.unknownFields
  2587. default:
  2588. return nil
  2589. }
  2590. }
  2591. file_transform_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  2592. switch v := v.(*GetErpSchoolRes); i {
  2593. case 0:
  2594. return &v.state
  2595. case 1:
  2596. return &v.sizeCache
  2597. case 2:
  2598. return &v.unknownFields
  2599. default:
  2600. return nil
  2601. }
  2602. }
  2603. file_transform_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
  2604. switch v := v.(*GetErpActiveReq); i {
  2605. case 0:
  2606. return &v.state
  2607. case 1:
  2608. return &v.sizeCache
  2609. case 2:
  2610. return &v.unknownFields
  2611. default:
  2612. return nil
  2613. }
  2614. }
  2615. file_transform_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
  2616. switch v := v.(*GetErpActiveRes); i {
  2617. case 0:
  2618. return &v.state
  2619. case 1:
  2620. return &v.sizeCache
  2621. case 2:
  2622. return &v.unknownFields
  2623. default:
  2624. return nil
  2625. }
  2626. }
  2627. file_transform_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
  2628. switch v := v.(*Active); i {
  2629. case 0:
  2630. return &v.state
  2631. case 1:
  2632. return &v.sizeCache
  2633. case 2:
  2634. return &v.unknownFields
  2635. default:
  2636. return nil
  2637. }
  2638. }
  2639. file_transform_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
  2640. switch v := v.(*DataPermissionReq); i {
  2641. case 0:
  2642. return &v.state
  2643. case 1:
  2644. return &v.sizeCache
  2645. case 2:
  2646. return &v.unknownFields
  2647. default:
  2648. return nil
  2649. }
  2650. }
  2651. file_transform_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
  2652. switch v := v.(*DataPermissionRes); i {
  2653. case 0:
  2654. return &v.state
  2655. case 1:
  2656. return &v.sizeCache
  2657. case 2:
  2658. return &v.unknownFields
  2659. default:
  2660. return nil
  2661. }
  2662. }
  2663. file_transform_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
  2664. switch v := v.(*MktReq); i {
  2665. case 0:
  2666. return &v.state
  2667. case 1:
  2668. return &v.sizeCache
  2669. case 2:
  2670. return &v.unknownFields
  2671. default:
  2672. return nil
  2673. }
  2674. }
  2675. file_transform_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
  2676. switch v := v.(*MktRes); i {
  2677. case 0:
  2678. return &v.state
  2679. case 1:
  2680. return &v.sizeCache
  2681. case 2:
  2682. return &v.unknownFields
  2683. default:
  2684. return nil
  2685. }
  2686. }
  2687. file_transform_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
  2688. switch v := v.(*StudentReq); i {
  2689. case 0:
  2690. return &v.state
  2691. case 1:
  2692. return &v.sizeCache
  2693. case 2:
  2694. return &v.unknownFields
  2695. default:
  2696. return nil
  2697. }
  2698. }
  2699. file_transform_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
  2700. switch v := v.(*StudentRes); i {
  2701. case 0:
  2702. return &v.state
  2703. case 1:
  2704. return &v.sizeCache
  2705. case 2:
  2706. return &v.unknownFields
  2707. default:
  2708. return nil
  2709. }
  2710. }
  2711. }
  2712. type x struct{}
  2713. out := protoimpl.TypeBuilder{
  2714. File: protoimpl.DescBuilder{
  2715. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2716. RawDescriptor: file_transform_proto_rawDesc,
  2717. NumEnums: 0,
  2718. NumMessages: 41,
  2719. NumExtensions: 0,
  2720. NumServices: 1,
  2721. },
  2722. GoTypes: file_transform_proto_goTypes,
  2723. DependencyIndexes: file_transform_proto_depIdxs,
  2724. MessageInfos: file_transform_proto_msgTypes,
  2725. }.Build()
  2726. File_transform_proto = out.File
  2727. file_transform_proto_rawDesc = nil
  2728. file_transform_proto_goTypes = nil
  2729. file_transform_proto_depIdxs = nil
  2730. }
  2731. // Reference imports to suppress errors if they are not otherwise used.
  2732. var _ context.Context
  2733. var _ grpc.ClientConnInterface
  2734. // This is a compile-time assertion to ensure that this generated file
  2735. // is compatible with the grpc package it is being compiled against.
  2736. const _ = grpc.SupportPackageIsVersion6
  2737. // TransformClient is the client API for Transform service.
  2738. //
  2739. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  2740. type TransformClient interface {
  2741. GetUser(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error)
  2742. ParseToken(ctx context.Context, in *TokenRequest, opts ...grpc.CallOption) (*TokenResponse, error)
  2743. //获取erp 省、城市树
  2744. GetErpCityTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
  2745. AddMkt(ctx context.Context, in *MktReq, opts ...grpc.CallOption) (*MktRes, error)
  2746. //获取erp 字典
  2747. LoadOptionset(ctx context.Context, in *OptionsetReq, opts ...grpc.CallOption) (*OptionsetRes, error)
  2748. GetSchoolIds(ctx context.Context, in *SchoolIdsReq, opts ...grpc.CallOption) (*SchoolIdsRes, error)
  2749. GetCityIds(ctx context.Context, in *CityIdsReq, opts ...grpc.CallOption) (*CityIdsRes, error)
  2750. PostExcelLog(ctx context.Context, in *ExcelLogReq, opts ...grpc.CallOption) (*ExcelLogRes, error)
  2751. GetErpOptionset(ctx context.Context, in *OptionCode, opts ...grpc.CallOption) (*Options, error)
  2752. GetStudent(ctx context.Context, in *StudentReq, opts ...grpc.CallOption) (*StudentRes, error)
  2753. //获取数据权限
  2754. GetDataPermission(ctx context.Context, in *DataPermissionReq, opts ...grpc.CallOption) (*DataPermissionRes, error)
  2755. //获取erp 渠道细分树
  2756. GetErpMktNetWorkDetailTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
  2757. //获取erp 用户校区权限
  2758. GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error)
  2759. //获取 erp 用户角色
  2760. GetErpRole(ctx context.Context, in *GetErpRoleReq, opts ...grpc.CallOption) (*GetErpRoleRes, error)
  2761. //获取 erp 全部校区
  2762. GetErpSchool(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*GetErpSchoolRes, error)
  2763. //获取 erp 活动
  2764. GetErpActive(ctx context.Context, in *GetErpActiveReq, opts ...grpc.CallOption) (*GetErpActiveRes, error)
  2765. //获取erp 省、城、校区
  2766. GetErpOrganSchTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
  2767. }
  2768. type transformClient struct {
  2769. cc grpc.ClientConnInterface
  2770. }
  2771. func NewTransformClient(cc grpc.ClientConnInterface) TransformClient {
  2772. return &transformClient{cc}
  2773. }
  2774. func (c *transformClient) GetUser(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error) {
  2775. out := new(UserResponse)
  2776. err := c.cc.Invoke(ctx, "/transform.Transform/GetUser", in, out, opts...)
  2777. if err != nil {
  2778. return nil, err
  2779. }
  2780. return out, nil
  2781. }
  2782. func (c *transformClient) ParseToken(ctx context.Context, in *TokenRequest, opts ...grpc.CallOption) (*TokenResponse, error) {
  2783. out := new(TokenResponse)
  2784. err := c.cc.Invoke(ctx, "/transform.Transform/ParseToken", in, out, opts...)
  2785. if err != nil {
  2786. return nil, err
  2787. }
  2788. return out, nil
  2789. }
  2790. func (c *transformClient) GetErpCityTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
  2791. out := new(TreeNodes)
  2792. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpCityTree", in, out, opts...)
  2793. if err != nil {
  2794. return nil, err
  2795. }
  2796. return out, nil
  2797. }
  2798. func (c *transformClient) AddMkt(ctx context.Context, in *MktReq, opts ...grpc.CallOption) (*MktRes, error) {
  2799. out := new(MktRes)
  2800. err := c.cc.Invoke(ctx, "/transform.Transform/AddMkt", in, out, opts...)
  2801. if err != nil {
  2802. return nil, err
  2803. }
  2804. return out, nil
  2805. }
  2806. func (c *transformClient) LoadOptionset(ctx context.Context, in *OptionsetReq, opts ...grpc.CallOption) (*OptionsetRes, error) {
  2807. out := new(OptionsetRes)
  2808. err := c.cc.Invoke(ctx, "/transform.Transform/LoadOptionset", in, out, opts...)
  2809. if err != nil {
  2810. return nil, err
  2811. }
  2812. return out, nil
  2813. }
  2814. func (c *transformClient) GetSchoolIds(ctx context.Context, in *SchoolIdsReq, opts ...grpc.CallOption) (*SchoolIdsRes, error) {
  2815. out := new(SchoolIdsRes)
  2816. err := c.cc.Invoke(ctx, "/transform.Transform/GetSchoolIds", in, out, opts...)
  2817. if err != nil {
  2818. return nil, err
  2819. }
  2820. return out, nil
  2821. }
  2822. func (c *transformClient) GetCityIds(ctx context.Context, in *CityIdsReq, opts ...grpc.CallOption) (*CityIdsRes, error) {
  2823. out := new(CityIdsRes)
  2824. err := c.cc.Invoke(ctx, "/transform.Transform/GetCityIds", in, out, opts...)
  2825. if err != nil {
  2826. return nil, err
  2827. }
  2828. return out, nil
  2829. }
  2830. func (c *transformClient) PostExcelLog(ctx context.Context, in *ExcelLogReq, opts ...grpc.CallOption) (*ExcelLogRes, error) {
  2831. out := new(ExcelLogRes)
  2832. err := c.cc.Invoke(ctx, "/transform.Transform/PostExcelLog", in, out, opts...)
  2833. if err != nil {
  2834. return nil, err
  2835. }
  2836. return out, nil
  2837. }
  2838. func (c *transformClient) GetErpOptionset(ctx context.Context, in *OptionCode, opts ...grpc.CallOption) (*Options, error) {
  2839. out := new(Options)
  2840. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOptionset", in, out, opts...)
  2841. if err != nil {
  2842. return nil, err
  2843. }
  2844. return out, nil
  2845. }
  2846. func (c *transformClient) GetStudent(ctx context.Context, in *StudentReq, opts ...grpc.CallOption) (*StudentRes, error) {
  2847. out := new(StudentRes)
  2848. err := c.cc.Invoke(ctx, "/transform.Transform/GetStudent", in, out, opts...)
  2849. if err != nil {
  2850. return nil, err
  2851. }
  2852. return out, nil
  2853. }
  2854. func (c *transformClient) GetDataPermission(ctx context.Context, in *DataPermissionReq, opts ...grpc.CallOption) (*DataPermissionRes, error) {
  2855. out := new(DataPermissionRes)
  2856. err := c.cc.Invoke(ctx, "/transform.Transform/GetDataPermission", in, out, opts...)
  2857. if err != nil {
  2858. return nil, err
  2859. }
  2860. return out, nil
  2861. }
  2862. func (c *transformClient) GetErpMktNetWorkDetailTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
  2863. out := new(TreeNodes)
  2864. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpMktNetWorkDetailTree", in, out, opts...)
  2865. if err != nil {
  2866. return nil, err
  2867. }
  2868. return out, nil
  2869. }
  2870. func (c *transformClient) GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error) {
  2871. out := new(GetErpOrganSchPerByUserIdRes)
  2872. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOrganSchPerByUserId", in, out, opts...)
  2873. if err != nil {
  2874. return nil, err
  2875. }
  2876. return out, nil
  2877. }
  2878. func (c *transformClient) GetErpRole(ctx context.Context, in *GetErpRoleReq, opts ...grpc.CallOption) (*GetErpRoleRes, error) {
  2879. out := new(GetErpRoleRes)
  2880. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpRole", in, out, opts...)
  2881. if err != nil {
  2882. return nil, err
  2883. }
  2884. return out, nil
  2885. }
  2886. func (c *transformClient) GetErpSchool(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*GetErpSchoolRes, error) {
  2887. out := new(GetErpSchoolRes)
  2888. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpSchool", in, out, opts...)
  2889. if err != nil {
  2890. return nil, err
  2891. }
  2892. return out, nil
  2893. }
  2894. func (c *transformClient) GetErpActive(ctx context.Context, in *GetErpActiveReq, opts ...grpc.CallOption) (*GetErpActiveRes, error) {
  2895. out := new(GetErpActiveRes)
  2896. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpActive", in, out, opts...)
  2897. if err != nil {
  2898. return nil, err
  2899. }
  2900. return out, nil
  2901. }
  2902. func (c *transformClient) GetErpOrganSchTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
  2903. out := new(TreeNodes)
  2904. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOrganSchTree", in, out, opts...)
  2905. if err != nil {
  2906. return nil, err
  2907. }
  2908. return out, nil
  2909. }
  2910. // TransformServer is the server API for Transform service.
  2911. type TransformServer interface {
  2912. GetUser(context.Context, *UserRequest) (*UserResponse, error)
  2913. ParseToken(context.Context, *TokenRequest) (*TokenResponse, error)
  2914. //获取erp 省、城市树
  2915. GetErpCityTree(context.Context, *Empty) (*TreeNodes, error)
  2916. AddMkt(context.Context, *MktReq) (*MktRes, error)
  2917. //获取erp 字典
  2918. LoadOptionset(context.Context, *OptionsetReq) (*OptionsetRes, error)
  2919. GetSchoolIds(context.Context, *SchoolIdsReq) (*SchoolIdsRes, error)
  2920. GetCityIds(context.Context, *CityIdsReq) (*CityIdsRes, error)
  2921. PostExcelLog(context.Context, *ExcelLogReq) (*ExcelLogRes, error)
  2922. GetErpOptionset(context.Context, *OptionCode) (*Options, error)
  2923. GetStudent(context.Context, *StudentReq) (*StudentRes, error)
  2924. //获取数据权限
  2925. GetDataPermission(context.Context, *DataPermissionReq) (*DataPermissionRes, error)
  2926. //获取erp 渠道细分树
  2927. GetErpMktNetWorkDetailTree(context.Context, *Empty) (*TreeNodes, error)
  2928. //获取erp 用户校区权限
  2929. GetErpOrganSchPerByUserId(context.Context, *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error)
  2930. //获取 erp 用户角色
  2931. GetErpRole(context.Context, *GetErpRoleReq) (*GetErpRoleRes, error)
  2932. //获取 erp 全部校区
  2933. GetErpSchool(context.Context, *Empty) (*GetErpSchoolRes, error)
  2934. //获取 erp 活动
  2935. GetErpActive(context.Context, *GetErpActiveReq) (*GetErpActiveRes, error)
  2936. //获取erp 省、城、校区
  2937. GetErpOrganSchTree(context.Context, *Empty) (*TreeNodes, error)
  2938. }
  2939. // UnimplementedTransformServer can be embedded to have forward compatible implementations.
  2940. type UnimplementedTransformServer struct {
  2941. }
  2942. func (*UnimplementedTransformServer) GetUser(context.Context, *UserRequest) (*UserResponse, error) {
  2943. return nil, status.Errorf(codes.Unimplemented, "method GetUser not implemented")
  2944. }
  2945. func (*UnimplementedTransformServer) ParseToken(context.Context, *TokenRequest) (*TokenResponse, error) {
  2946. return nil, status.Errorf(codes.Unimplemented, "method ParseToken not implemented")
  2947. }
  2948. func (*UnimplementedTransformServer) GetErpCityTree(context.Context, *Empty) (*TreeNodes, error) {
  2949. return nil, status.Errorf(codes.Unimplemented, "method GetErpCityTree not implemented")
  2950. }
  2951. func (*UnimplementedTransformServer) AddMkt(context.Context, *MktReq) (*MktRes, error) {
  2952. return nil, status.Errorf(codes.Unimplemented, "method AddMkt not implemented")
  2953. }
  2954. func (*UnimplementedTransformServer) LoadOptionset(context.Context, *OptionsetReq) (*OptionsetRes, error) {
  2955. return nil, status.Errorf(codes.Unimplemented, "method LoadOptionset not implemented")
  2956. }
  2957. func (*UnimplementedTransformServer) GetSchoolIds(context.Context, *SchoolIdsReq) (*SchoolIdsRes, error) {
  2958. return nil, status.Errorf(codes.Unimplemented, "method GetSchoolIds not implemented")
  2959. }
  2960. func (*UnimplementedTransformServer) GetCityIds(context.Context, *CityIdsReq) (*CityIdsRes, error) {
  2961. return nil, status.Errorf(codes.Unimplemented, "method GetCityIds not implemented")
  2962. }
  2963. func (*UnimplementedTransformServer) PostExcelLog(context.Context, *ExcelLogReq) (*ExcelLogRes, error) {
  2964. return nil, status.Errorf(codes.Unimplemented, "method PostExcelLog not implemented")
  2965. }
  2966. func (*UnimplementedTransformServer) GetErpOptionset(context.Context, *OptionCode) (*Options, error) {
  2967. return nil, status.Errorf(codes.Unimplemented, "method GetErpOptionset not implemented")
  2968. }
  2969. func (*UnimplementedTransformServer) GetStudent(context.Context, *StudentReq) (*StudentRes, error) {
  2970. return nil, status.Errorf(codes.Unimplemented, "method GetStudent not implemented")
  2971. }
  2972. func (*UnimplementedTransformServer) GetDataPermission(context.Context, *DataPermissionReq) (*DataPermissionRes, error) {
  2973. return nil, status.Errorf(codes.Unimplemented, "method GetDataPermission not implemented")
  2974. }
  2975. func (*UnimplementedTransformServer) GetErpMktNetWorkDetailTree(context.Context, *Empty) (*TreeNodes, error) {
  2976. return nil, status.Errorf(codes.Unimplemented, "method GetErpMktNetWorkDetailTree not implemented")
  2977. }
  2978. func (*UnimplementedTransformServer) GetErpOrganSchPerByUserId(context.Context, *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error) {
  2979. return nil, status.Errorf(codes.Unimplemented, "method GetErpOrganSchPerByUserId not implemented")
  2980. }
  2981. func (*UnimplementedTransformServer) GetErpRole(context.Context, *GetErpRoleReq) (*GetErpRoleRes, error) {
  2982. return nil, status.Errorf(codes.Unimplemented, "method GetErpRole not implemented")
  2983. }
  2984. func (*UnimplementedTransformServer) GetErpSchool(context.Context, *Empty) (*GetErpSchoolRes, error) {
  2985. return nil, status.Errorf(codes.Unimplemented, "method GetErpSchool not implemented")
  2986. }
  2987. func (*UnimplementedTransformServer) GetErpActive(context.Context, *GetErpActiveReq) (*GetErpActiveRes, error) {
  2988. return nil, status.Errorf(codes.Unimplemented, "method GetErpActive not implemented")
  2989. }
  2990. func (*UnimplementedTransformServer) GetErpOrganSchTree(context.Context, *Empty) (*TreeNodes, error) {
  2991. return nil, status.Errorf(codes.Unimplemented, "method GetErpOrganSchTree not implemented")
  2992. }
  2993. func RegisterTransformServer(s *grpc.Server, srv TransformServer) {
  2994. s.RegisterService(&_Transform_serviceDesc, srv)
  2995. }
  2996. func _Transform_GetUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2997. in := new(UserRequest)
  2998. if err := dec(in); err != nil {
  2999. return nil, err
  3000. }
  3001. if interceptor == nil {
  3002. return srv.(TransformServer).GetUser(ctx, in)
  3003. }
  3004. info := &grpc.UnaryServerInfo{
  3005. Server: srv,
  3006. FullMethod: "/transform.Transform/GetUser",
  3007. }
  3008. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3009. return srv.(TransformServer).GetUser(ctx, req.(*UserRequest))
  3010. }
  3011. return interceptor(ctx, in, info, handler)
  3012. }
  3013. func _Transform_ParseToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3014. in := new(TokenRequest)
  3015. if err := dec(in); err != nil {
  3016. return nil, err
  3017. }
  3018. if interceptor == nil {
  3019. return srv.(TransformServer).ParseToken(ctx, in)
  3020. }
  3021. info := &grpc.UnaryServerInfo{
  3022. Server: srv,
  3023. FullMethod: "/transform.Transform/ParseToken",
  3024. }
  3025. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3026. return srv.(TransformServer).ParseToken(ctx, req.(*TokenRequest))
  3027. }
  3028. return interceptor(ctx, in, info, handler)
  3029. }
  3030. func _Transform_GetErpCityTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3031. in := new(Empty)
  3032. if err := dec(in); err != nil {
  3033. return nil, err
  3034. }
  3035. if interceptor == nil {
  3036. return srv.(TransformServer).GetErpCityTree(ctx, in)
  3037. }
  3038. info := &grpc.UnaryServerInfo{
  3039. Server: srv,
  3040. FullMethod: "/transform.Transform/GetErpCityTree",
  3041. }
  3042. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3043. return srv.(TransformServer).GetErpCityTree(ctx, req.(*Empty))
  3044. }
  3045. return interceptor(ctx, in, info, handler)
  3046. }
  3047. func _Transform_AddMkt_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3048. in := new(MktReq)
  3049. if err := dec(in); err != nil {
  3050. return nil, err
  3051. }
  3052. if interceptor == nil {
  3053. return srv.(TransformServer).AddMkt(ctx, in)
  3054. }
  3055. info := &grpc.UnaryServerInfo{
  3056. Server: srv,
  3057. FullMethod: "/transform.Transform/AddMkt",
  3058. }
  3059. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3060. return srv.(TransformServer).AddMkt(ctx, req.(*MktReq))
  3061. }
  3062. return interceptor(ctx, in, info, handler)
  3063. }
  3064. func _Transform_LoadOptionset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3065. in := new(OptionsetReq)
  3066. if err := dec(in); err != nil {
  3067. return nil, err
  3068. }
  3069. if interceptor == nil {
  3070. return srv.(TransformServer).LoadOptionset(ctx, in)
  3071. }
  3072. info := &grpc.UnaryServerInfo{
  3073. Server: srv,
  3074. FullMethod: "/transform.Transform/LoadOptionset",
  3075. }
  3076. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3077. return srv.(TransformServer).LoadOptionset(ctx, req.(*OptionsetReq))
  3078. }
  3079. return interceptor(ctx, in, info, handler)
  3080. }
  3081. func _Transform_GetSchoolIds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3082. in := new(SchoolIdsReq)
  3083. if err := dec(in); err != nil {
  3084. return nil, err
  3085. }
  3086. if interceptor == nil {
  3087. return srv.(TransformServer).GetSchoolIds(ctx, in)
  3088. }
  3089. info := &grpc.UnaryServerInfo{
  3090. Server: srv,
  3091. FullMethod: "/transform.Transform/GetSchoolIds",
  3092. }
  3093. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3094. return srv.(TransformServer).GetSchoolIds(ctx, req.(*SchoolIdsReq))
  3095. }
  3096. return interceptor(ctx, in, info, handler)
  3097. }
  3098. func _Transform_GetCityIds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3099. in := new(CityIdsReq)
  3100. if err := dec(in); err != nil {
  3101. return nil, err
  3102. }
  3103. if interceptor == nil {
  3104. return srv.(TransformServer).GetCityIds(ctx, in)
  3105. }
  3106. info := &grpc.UnaryServerInfo{
  3107. Server: srv,
  3108. FullMethod: "/transform.Transform/GetCityIds",
  3109. }
  3110. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3111. return srv.(TransformServer).GetCityIds(ctx, req.(*CityIdsReq))
  3112. }
  3113. return interceptor(ctx, in, info, handler)
  3114. }
  3115. func _Transform_PostExcelLog_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3116. in := new(ExcelLogReq)
  3117. if err := dec(in); err != nil {
  3118. return nil, err
  3119. }
  3120. if interceptor == nil {
  3121. return srv.(TransformServer).PostExcelLog(ctx, in)
  3122. }
  3123. info := &grpc.UnaryServerInfo{
  3124. Server: srv,
  3125. FullMethod: "/transform.Transform/PostExcelLog",
  3126. }
  3127. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3128. return srv.(TransformServer).PostExcelLog(ctx, req.(*ExcelLogReq))
  3129. }
  3130. return interceptor(ctx, in, info, handler)
  3131. }
  3132. func _Transform_GetErpOptionset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3133. in := new(OptionCode)
  3134. if err := dec(in); err != nil {
  3135. return nil, err
  3136. }
  3137. if interceptor == nil {
  3138. return srv.(TransformServer).GetErpOptionset(ctx, in)
  3139. }
  3140. info := &grpc.UnaryServerInfo{
  3141. Server: srv,
  3142. FullMethod: "/transform.Transform/GetErpOptionset",
  3143. }
  3144. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3145. return srv.(TransformServer).GetErpOptionset(ctx, req.(*OptionCode))
  3146. }
  3147. return interceptor(ctx, in, info, handler)
  3148. }
  3149. func _Transform_GetStudent_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3150. in := new(StudentReq)
  3151. if err := dec(in); err != nil {
  3152. return nil, err
  3153. }
  3154. if interceptor == nil {
  3155. return srv.(TransformServer).GetStudent(ctx, in)
  3156. }
  3157. info := &grpc.UnaryServerInfo{
  3158. Server: srv,
  3159. FullMethod: "/transform.Transform/GetStudent",
  3160. }
  3161. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3162. return srv.(TransformServer).GetStudent(ctx, req.(*StudentReq))
  3163. }
  3164. return interceptor(ctx, in, info, handler)
  3165. }
  3166. func _Transform_GetDataPermission_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3167. in := new(DataPermissionReq)
  3168. if err := dec(in); err != nil {
  3169. return nil, err
  3170. }
  3171. if interceptor == nil {
  3172. return srv.(TransformServer).GetDataPermission(ctx, in)
  3173. }
  3174. info := &grpc.UnaryServerInfo{
  3175. Server: srv,
  3176. FullMethod: "/transform.Transform/GetDataPermission",
  3177. }
  3178. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3179. return srv.(TransformServer).GetDataPermission(ctx, req.(*DataPermissionReq))
  3180. }
  3181. return interceptor(ctx, in, info, handler)
  3182. }
  3183. func _Transform_GetErpMktNetWorkDetailTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3184. in := new(Empty)
  3185. if err := dec(in); err != nil {
  3186. return nil, err
  3187. }
  3188. if interceptor == nil {
  3189. return srv.(TransformServer).GetErpMktNetWorkDetailTree(ctx, in)
  3190. }
  3191. info := &grpc.UnaryServerInfo{
  3192. Server: srv,
  3193. FullMethod: "/transform.Transform/GetErpMktNetWorkDetailTree",
  3194. }
  3195. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3196. return srv.(TransformServer).GetErpMktNetWorkDetailTree(ctx, req.(*Empty))
  3197. }
  3198. return interceptor(ctx, in, info, handler)
  3199. }
  3200. func _Transform_GetErpOrganSchPerByUserId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3201. in := new(GetErpOrganSchPerByUserIdReq)
  3202. if err := dec(in); err != nil {
  3203. return nil, err
  3204. }
  3205. if interceptor == nil {
  3206. return srv.(TransformServer).GetErpOrganSchPerByUserId(ctx, in)
  3207. }
  3208. info := &grpc.UnaryServerInfo{
  3209. Server: srv,
  3210. FullMethod: "/transform.Transform/GetErpOrganSchPerByUserId",
  3211. }
  3212. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3213. return srv.(TransformServer).GetErpOrganSchPerByUserId(ctx, req.(*GetErpOrganSchPerByUserIdReq))
  3214. }
  3215. return interceptor(ctx, in, info, handler)
  3216. }
  3217. func _Transform_GetErpRole_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3218. in := new(GetErpRoleReq)
  3219. if err := dec(in); err != nil {
  3220. return nil, err
  3221. }
  3222. if interceptor == nil {
  3223. return srv.(TransformServer).GetErpRole(ctx, in)
  3224. }
  3225. info := &grpc.UnaryServerInfo{
  3226. Server: srv,
  3227. FullMethod: "/transform.Transform/GetErpRole",
  3228. }
  3229. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3230. return srv.(TransformServer).GetErpRole(ctx, req.(*GetErpRoleReq))
  3231. }
  3232. return interceptor(ctx, in, info, handler)
  3233. }
  3234. func _Transform_GetErpSchool_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3235. in := new(Empty)
  3236. if err := dec(in); err != nil {
  3237. return nil, err
  3238. }
  3239. if interceptor == nil {
  3240. return srv.(TransformServer).GetErpSchool(ctx, in)
  3241. }
  3242. info := &grpc.UnaryServerInfo{
  3243. Server: srv,
  3244. FullMethod: "/transform.Transform/GetErpSchool",
  3245. }
  3246. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3247. return srv.(TransformServer).GetErpSchool(ctx, req.(*Empty))
  3248. }
  3249. return interceptor(ctx, in, info, handler)
  3250. }
  3251. func _Transform_GetErpActive_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3252. in := new(GetErpActiveReq)
  3253. if err := dec(in); err != nil {
  3254. return nil, err
  3255. }
  3256. if interceptor == nil {
  3257. return srv.(TransformServer).GetErpActive(ctx, in)
  3258. }
  3259. info := &grpc.UnaryServerInfo{
  3260. Server: srv,
  3261. FullMethod: "/transform.Transform/GetErpActive",
  3262. }
  3263. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3264. return srv.(TransformServer).GetErpActive(ctx, req.(*GetErpActiveReq))
  3265. }
  3266. return interceptor(ctx, in, info, handler)
  3267. }
  3268. func _Transform_GetErpOrganSchTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  3269. in := new(Empty)
  3270. if err := dec(in); err != nil {
  3271. return nil, err
  3272. }
  3273. if interceptor == nil {
  3274. return srv.(TransformServer).GetErpOrganSchTree(ctx, in)
  3275. }
  3276. info := &grpc.UnaryServerInfo{
  3277. Server: srv,
  3278. FullMethod: "/transform.Transform/GetErpOrganSchTree",
  3279. }
  3280. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  3281. return srv.(TransformServer).GetErpOrganSchTree(ctx, req.(*Empty))
  3282. }
  3283. return interceptor(ctx, in, info, handler)
  3284. }
  3285. var _Transform_serviceDesc = grpc.ServiceDesc{
  3286. ServiceName: "transform.Transform",
  3287. HandlerType: (*TransformServer)(nil),
  3288. Methods: []grpc.MethodDesc{
  3289. {
  3290. MethodName: "GetUser",
  3291. Handler: _Transform_GetUser_Handler,
  3292. },
  3293. {
  3294. MethodName: "ParseToken",
  3295. Handler: _Transform_ParseToken_Handler,
  3296. },
  3297. {
  3298. MethodName: "GetErpCityTree",
  3299. Handler: _Transform_GetErpCityTree_Handler,
  3300. },
  3301. {
  3302. MethodName: "AddMkt",
  3303. Handler: _Transform_AddMkt_Handler,
  3304. },
  3305. {
  3306. MethodName: "LoadOptionset",
  3307. Handler: _Transform_LoadOptionset_Handler,
  3308. },
  3309. {
  3310. MethodName: "GetSchoolIds",
  3311. Handler: _Transform_GetSchoolIds_Handler,
  3312. },
  3313. {
  3314. MethodName: "GetCityIds",
  3315. Handler: _Transform_GetCityIds_Handler,
  3316. },
  3317. {
  3318. MethodName: "PostExcelLog",
  3319. Handler: _Transform_PostExcelLog_Handler,
  3320. },
  3321. {
  3322. MethodName: "GetErpOptionset",
  3323. Handler: _Transform_GetErpOptionset_Handler,
  3324. },
  3325. {
  3326. MethodName: "GetStudent",
  3327. Handler: _Transform_GetStudent_Handler,
  3328. },
  3329. {
  3330. MethodName: "GetDataPermission",
  3331. Handler: _Transform_GetDataPermission_Handler,
  3332. },
  3333. {
  3334. MethodName: "GetErpMktNetWorkDetailTree",
  3335. Handler: _Transform_GetErpMktNetWorkDetailTree_Handler,
  3336. },
  3337. {
  3338. MethodName: "GetErpOrganSchPerByUserId",
  3339. Handler: _Transform_GetErpOrganSchPerByUserId_Handler,
  3340. },
  3341. {
  3342. MethodName: "GetErpRole",
  3343. Handler: _Transform_GetErpRole_Handler,
  3344. },
  3345. {
  3346. MethodName: "GetErpSchool",
  3347. Handler: _Transform_GetErpSchool_Handler,
  3348. },
  3349. {
  3350. MethodName: "GetErpActive",
  3351. Handler: _Transform_GetErpActive_Handler,
  3352. },
  3353. {
  3354. MethodName: "GetErpOrganSchTree",
  3355. Handler: _Transform_GetErpOrganSchTree_Handler,
  3356. },
  3357. },
  3358. Streams: []grpc.StreamDesc{},
  3359. Metadata: "transform.proto",
  3360. }