| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // versions:
- // protoc-gen-go v1.23.0
- // protoc v3.12.3
- // source: transform.proto
- package transform
- import (
- context "context"
- proto "github.com/golang/protobuf/proto"
- grpc "google.golang.org/grpc"
- codes "google.golang.org/grpc/codes"
- status "google.golang.org/grpc/status"
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- reflect "reflect"
- sync "sync"
- )
- const (
- // Verify that this generated code is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
- // Verify that runtime/protoimpl is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
- )
- // This is a compile-time assertion that a sufficiently up-to-date version
- // of the legacy proto package is being used.
- const _ = proto.ProtoPackageIsVersion4
- type UserRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
- }
- func (x *UserRequest) Reset() {
- *x = UserRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *UserRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*UserRequest) ProtoMessage() {}
- func (x *UserRequest) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[0]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use UserRequest.ProtoReflect.Descriptor instead.
- func (*UserRequest) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{0}
- }
- func (x *UserRequest) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
- }
- func (x *UserRequest) GetPhone() string {
- if x != nil {
- return x.Phone
- }
- return ""
- }
- type UserResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
- Roles string `protobuf:"bytes,3,opt,name=roles,proto3" json:"roles,omitempty"`
- Status int64 `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"`
- ErpRoleType int64 `protobuf:"varint,5,opt,name=erpRoleType,proto3" json:"erpRoleType,omitempty"`
- UserName string `protobuf:"bytes,6,opt,name=userName,proto3" json:"userName,omitempty"`
- CityName string `protobuf:"bytes,7,opt,name=cityName,proto3" json:"cityName,omitempty"`
- Gender int64 `protobuf:"varint,8,opt,name=gender,proto3" json:"gender,omitempty"`
- }
- func (x *UserResponse) Reset() {
- *x = UserResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *UserResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*UserResponse) ProtoMessage() {}
- func (x *UserResponse) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[1]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use UserResponse.ProtoReflect.Descriptor instead.
- func (*UserResponse) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{1}
- }
- func (x *UserResponse) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
- }
- func (x *UserResponse) GetPhone() string {
- if x != nil {
- return x.Phone
- }
- return ""
- }
- func (x *UserResponse) GetRoles() string {
- if x != nil {
- return x.Roles
- }
- return ""
- }
- func (x *UserResponse) GetStatus() int64 {
- if x != nil {
- return x.Status
- }
- return 0
- }
- func (x *UserResponse) GetErpRoleType() int64 {
- if x != nil {
- return x.ErpRoleType
- }
- return 0
- }
- func (x *UserResponse) GetUserName() string {
- if x != nil {
- return x.UserName
- }
- return ""
- }
- func (x *UserResponse) GetCityName() string {
- if x != nil {
- return x.CityName
- }
- return ""
- }
- func (x *UserResponse) GetGender() int64 {
- if x != nil {
- return x.Gender
- }
- return 0
- }
- type TokenRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
- }
- func (x *TokenRequest) Reset() {
- *x = TokenRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *TokenRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*TokenRequest) ProtoMessage() {}
- func (x *TokenRequest) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[2]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use TokenRequest.ProtoReflect.Descriptor instead.
- func (*TokenRequest) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{2}
- }
- func (x *TokenRequest) GetToken() string {
- if x != nil {
- return x.Token
- }
- return ""
- }
- type TokenResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- UserId string `protobuf:"bytes,1,opt,name=UserId,proto3" json:"UserId,omitempty"`
- UserRoleIds string `protobuf:"bytes,2,opt,name=UserRoleIds,proto3" json:"UserRoleIds,omitempty"`
- UserSchoolIds string `protobuf:"bytes,3,opt,name=UserSchoolIds,proto3" json:"UserSchoolIds,omitempty"`
- UserProvinceIds string `protobuf:"bytes,4,opt,name=UserProvinceIds,proto3" json:"UserProvinceIds,omitempty"`
- UserOrganIds string `protobuf:"bytes,5,opt,name=UserOrganIds,proto3" json:"UserOrganIds,omitempty"`
- SysSchoolId string `protobuf:"bytes,6,opt,name=SysSchoolId,proto3" json:"SysSchoolId,omitempty"`
- SysOrganId string `protobuf:"bytes,7,opt,name=SysOrganId,proto3" json:"SysOrganId,omitempty"`
- UserPhone string `protobuf:"bytes,8,opt,name=UserPhone,proto3" json:"UserPhone,omitempty"`
- }
- func (x *TokenResponse) Reset() {
- *x = TokenResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *TokenResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*TokenResponse) ProtoMessage() {}
- func (x *TokenResponse) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[3]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use TokenResponse.ProtoReflect.Descriptor instead.
- func (*TokenResponse) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{3}
- }
- func (x *TokenResponse) GetUserId() string {
- if x != nil {
- return x.UserId
- }
- return ""
- }
- func (x *TokenResponse) GetUserRoleIds() string {
- if x != nil {
- return x.UserRoleIds
- }
- return ""
- }
- func (x *TokenResponse) GetUserSchoolIds() string {
- if x != nil {
- return x.UserSchoolIds
- }
- return ""
- }
- func (x *TokenResponse) GetUserProvinceIds() string {
- if x != nil {
- return x.UserProvinceIds
- }
- return ""
- }
- func (x *TokenResponse) GetUserOrganIds() string {
- if x != nil {
- return x.UserOrganIds
- }
- return ""
- }
- func (x *TokenResponse) GetSysSchoolId() string {
- if x != nil {
- return x.SysSchoolId
- }
- return ""
- }
- func (x *TokenResponse) GetSysOrganId() string {
- if x != nil {
- return x.SysOrganId
- }
- return ""
- }
- func (x *TokenResponse) GetUserPhone() string {
- if x != nil {
- return x.UserPhone
- }
- return ""
- }
- type Empty struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- }
- func (x *Empty) Reset() {
- *x = Empty{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Empty) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Empty) ProtoMessage() {}
- func (x *Empty) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[4]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Empty.ProtoReflect.Descriptor instead.
- func (*Empty) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{4}
- }
- type TreeNodes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Nodes []*TreeNode `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
- }
- func (x *TreeNodes) Reset() {
- *x = TreeNodes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *TreeNodes) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*TreeNodes) ProtoMessage() {}
- func (x *TreeNodes) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[5]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use TreeNodes.ProtoReflect.Descriptor instead.
- func (*TreeNodes) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{5}
- }
- func (x *TreeNodes) GetNodes() []*TreeNode {
- if x != nil {
- return x.Nodes
- }
- return nil
- }
- type TreeNode struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
- Text string `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
- Parent int64 `protobuf:"varint,3,opt,name=parent,proto3" json:"parent,omitempty"`
- Tag *Tag `protobuf:"bytes,4,opt,name=tag,proto3" json:"tag,omitempty"`
- Nodes []*TreeNode `protobuf:"bytes,5,rep,name=nodes,proto3" json:"nodes,omitempty"`
- }
- func (x *TreeNode) Reset() {
- *x = TreeNode{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[6]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *TreeNode) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*TreeNode) ProtoMessage() {}
- func (x *TreeNode) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[6]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use TreeNode.ProtoReflect.Descriptor instead.
- func (*TreeNode) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{6}
- }
- func (x *TreeNode) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *TreeNode) GetText() string {
- if x != nil {
- return x.Text
- }
- return ""
- }
- func (x *TreeNode) GetParent() int64 {
- if x != nil {
- return x.Parent
- }
- return 0
- }
- func (x *TreeNode) GetTag() *Tag {
- if x != nil {
- return x.Tag
- }
- return nil
- }
- func (x *TreeNode) GetNodes() []*TreeNode {
- if x != nil {
- return x.Nodes
- }
- return nil
- }
- type Tag struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
- }
- func (x *Tag) Reset() {
- *x = Tag{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[7]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Tag) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Tag) ProtoMessage() {}
- func (x *Tag) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[7]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Tag.ProtoReflect.Descriptor instead.
- func (*Tag) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{7}
- }
- func (x *Tag) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *Tag) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- type OptionsetReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
- }
- func (x *OptionsetReq) Reset() {
- *x = OptionsetReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[8]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *OptionsetReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*OptionsetReq) ProtoMessage() {}
- func (x *OptionsetReq) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[8]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use OptionsetReq.ProtoReflect.Descriptor instead.
- func (*OptionsetReq) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{8}
- }
- func (x *OptionsetReq) GetCode() string {
- if x != nil {
- return x.Code
- }
- return ""
- }
- type OptionsetRes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- 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"`
- }
- func (x *OptionsetRes) Reset() {
- *x = OptionsetRes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[9]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *OptionsetRes) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*OptionsetRes) ProtoMessage() {}
- func (x *OptionsetRes) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[9]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use OptionsetRes.ProtoReflect.Descriptor instead.
- func (*OptionsetRes) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{9}
- }
- func (x *OptionsetRes) GetMapList() map[string]string {
- if x != nil {
- return x.MapList
- }
- return nil
- }
- type OptionCode struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
- }
- func (x *OptionCode) Reset() {
- *x = OptionCode{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[10]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *OptionCode) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*OptionCode) ProtoMessage() {}
- func (x *OptionCode) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[10]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use OptionCode.ProtoReflect.Descriptor instead.
- func (*OptionCode) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{10}
- }
- func (x *OptionCode) GetCode() string {
- if x != nil {
- return x.Code
- }
- return ""
- }
- type Options struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
- }
- func (x *Options) Reset() {
- *x = Options{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[11]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Options) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Options) ProtoMessage() {}
- func (x *Options) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[11]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Options.ProtoReflect.Descriptor instead.
- func (*Options) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{11}
- }
- func (x *Options) GetCode() string {
- if x != nil {
- return x.Code
- }
- return ""
- }
- func (x *Options) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *Options) GetValue() string {
- if x != nil {
- return x.Value
- }
- return ""
- }
- type ResponseByte struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
- }
- func (x *ResponseByte) Reset() {
- *x = ResponseByte{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[12]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ResponseByte) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ResponseByte) ProtoMessage() {}
- func (x *ResponseByte) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[12]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ResponseByte.ProtoReflect.Descriptor instead.
- func (*ResponseByte) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{12}
- }
- func (x *ResponseByte) GetData() []byte {
- if x != nil {
- return x.Data
- }
- return nil
- }
- type ExcelLogReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Module string `protobuf:"bytes,1,opt,name=Module,proto3" json:"Module,omitempty"`
- Cond string `protobuf:"bytes,2,opt,name=Cond,proto3" json:"Cond,omitempty"`
- CreateBy string `protobuf:"bytes,3,opt,name=CreateBy,proto3" json:"CreateBy,omitempty"`
- CreateTime string `protobuf:"bytes,4,opt,name=CreateTime,proto3" json:"CreateTime,omitempty"`
- LastUpdateBy string `protobuf:"bytes,5,opt,name=LastUpdateBy,proto3" json:"LastUpdateBy,omitempty"`
- LastUpdateTime string `protobuf:"bytes,6,opt,name=LastUpdateTime,proto3" json:"LastUpdateTime,omitempty"`
- DelFlag string `protobuf:"bytes,7,opt,name=DelFlag,proto3" json:"DelFlag,omitempty"`
- }
- func (x *ExcelLogReq) Reset() {
- *x = ExcelLogReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[13]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ExcelLogReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExcelLogReq) ProtoMessage() {}
- func (x *ExcelLogReq) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[13]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExcelLogReq.ProtoReflect.Descriptor instead.
- func (*ExcelLogReq) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{13}
- }
- func (x *ExcelLogReq) GetModule() string {
- if x != nil {
- return x.Module
- }
- return ""
- }
- func (x *ExcelLogReq) GetCond() string {
- if x != nil {
- return x.Cond
- }
- return ""
- }
- func (x *ExcelLogReq) GetCreateBy() string {
- if x != nil {
- return x.CreateBy
- }
- return ""
- }
- func (x *ExcelLogReq) GetCreateTime() string {
- if x != nil {
- return x.CreateTime
- }
- return ""
- }
- func (x *ExcelLogReq) GetLastUpdateBy() string {
- if x != nil {
- return x.LastUpdateBy
- }
- return ""
- }
- func (x *ExcelLogReq) GetLastUpdateTime() string {
- if x != nil {
- return x.LastUpdateTime
- }
- return ""
- }
- func (x *ExcelLogReq) GetDelFlag() string {
- if x != nil {
- return x.DelFlag
- }
- return ""
- }
- type ExcelLogRes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Status int64 `protobuf:"varint,1,opt,name=Status,proto3" json:"Status,omitempty"`
- }
- func (x *ExcelLogRes) Reset() {
- *x = ExcelLogRes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[14]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ExcelLogRes) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExcelLogRes) ProtoMessage() {}
- func (x *ExcelLogRes) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[14]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ExcelLogRes.ProtoReflect.Descriptor instead.
- func (*ExcelLogRes) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{14}
- }
- func (x *ExcelLogRes) GetStatus() int64 {
- if x != nil {
- return x.Status
- }
- return 0
- }
- type SchoolIdsReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Names []string `protobuf:"bytes,1,rep,name=names,proto3" json:"names,omitempty"`
- }
- func (x *SchoolIdsReq) Reset() {
- *x = SchoolIdsReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[15]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *SchoolIdsReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*SchoolIdsReq) ProtoMessage() {}
- func (x *SchoolIdsReq) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[15]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use SchoolIdsReq.ProtoReflect.Descriptor instead.
- func (*SchoolIdsReq) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{15}
- }
- func (x *SchoolIdsReq) GetNames() []string {
- if x != nil {
- return x.Names
- }
- return nil
- }
- type ListOfInt struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
- }
- func (x *ListOfInt) Reset() {
- *x = ListOfInt{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[16]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ListOfInt) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ListOfInt) ProtoMessage() {}
- func (x *ListOfInt) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[16]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use ListOfInt.ProtoReflect.Descriptor instead.
- func (*ListOfInt) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{16}
- }
- func (x *ListOfInt) GetIds() []int64 {
- if x != nil {
- return x.Ids
- }
- return nil
- }
- type SchoolIdsRes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- 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"`
- }
- func (x *SchoolIdsRes) Reset() {
- *x = SchoolIdsRes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[17]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *SchoolIdsRes) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*SchoolIdsRes) ProtoMessage() {}
- func (x *SchoolIdsRes) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[17]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use SchoolIdsRes.ProtoReflect.Descriptor instead.
- func (*SchoolIdsRes) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{17}
- }
- func (x *SchoolIdsRes) GetMapList() map[string]int64 {
- if x != nil {
- return x.MapList
- }
- return nil
- }
- type CityIdsReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Names string `protobuf:"bytes,1,opt,name=names,proto3" json:"names,omitempty"`
- }
- func (x *CityIdsReq) Reset() {
- *x = CityIdsReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[18]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *CityIdsReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*CityIdsReq) ProtoMessage() {}
- func (x *CityIdsReq) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[18]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use CityIdsReq.ProtoReflect.Descriptor instead.
- func (*CityIdsReq) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{18}
- }
- func (x *CityIdsReq) GetNames() string {
- if x != nil {
- return x.Names
- }
- return ""
- }
- type CityIdsRes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- 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"`
- }
- func (x *CityIdsRes) Reset() {
- *x = CityIdsRes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[19]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *CityIdsRes) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*CityIdsRes) ProtoMessage() {}
- func (x *CityIdsRes) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[19]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use CityIdsRes.ProtoReflect.Descriptor instead.
- func (*CityIdsRes) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{19}
- }
- func (x *CityIdsRes) GetMapList() map[string]int64 {
- if x != nil {
- return x.MapList
- }
- return nil
- }
- type BytesReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Req []byte `protobuf:"bytes,1,opt,name=req,proto3" json:"req,omitempty"`
- }
- func (x *BytesReq) Reset() {
- *x = BytesReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[20]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *BytesReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*BytesReq) ProtoMessage() {}
- func (x *BytesReq) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[20]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use BytesReq.ProtoReflect.Descriptor instead.
- func (*BytesReq) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{20}
- }
- func (x *BytesReq) GetReq() []byte {
- if x != nil {
- return x.Req
- }
- return nil
- }
- type BytesResp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Resp []byte `protobuf:"bytes,1,opt,name=resp,proto3" json:"resp,omitempty"`
- }
- func (x *BytesResp) Reset() {
- *x = BytesResp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[21]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *BytesResp) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*BytesResp) ProtoMessage() {}
- func (x *BytesResp) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[21]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use BytesResp.ProtoReflect.Descriptor instead.
- func (*BytesResp) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{21}
- }
- func (x *BytesResp) GetResp() []byte {
- if x != nil {
- return x.Resp
- }
- return nil
- }
- type GetErpRoleRes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Role string `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
- SchId int64 `protobuf:"varint,3,opt,name=sch_id,json=schId,proto3" json:"sch_id,omitempty"`
- }
- func (x *GetErpRoleRes) Reset() {
- *x = GetErpRoleRes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[22]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetErpRoleRes) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetErpRoleRes) ProtoMessage() {}
- func (x *GetErpRoleRes) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[22]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetErpRoleRes.ProtoReflect.Descriptor instead.
- func (*GetErpRoleRes) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{22}
- }
- func (x *GetErpRoleRes) GetUserId() string {
- if x != nil {
- return x.UserId
- }
- return ""
- }
- func (x *GetErpRoleRes) GetRole() string {
- if x != nil {
- return x.Role
- }
- return ""
- }
- func (x *GetErpRoleRes) GetSchId() int64 {
- if x != nil {
- return x.SchId
- }
- return 0
- }
- type GetErpRoleReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Mobile string `protobuf:"bytes,1,opt,name=mobile,proto3" json:"mobile,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- }
- func (x *GetErpRoleReq) Reset() {
- *x = GetErpRoleReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[23]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetErpRoleReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetErpRoleReq) ProtoMessage() {}
- func (x *GetErpRoleReq) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[23]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetErpRoleReq.ProtoReflect.Descriptor instead.
- func (*GetErpRoleReq) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{23}
- }
- func (x *GetErpRoleReq) GetMobile() string {
- if x != nil {
- return x.Mobile
- }
- return ""
- }
- func (x *GetErpRoleReq) GetUserId() string {
- if x != nil {
- return x.UserId
- }
- return ""
- }
- type GetErpOrganSchPerByUserIdReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- }
- func (x *GetErpOrganSchPerByUserIdReq) Reset() {
- *x = GetErpOrganSchPerByUserIdReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[24]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetErpOrganSchPerByUserIdReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetErpOrganSchPerByUserIdReq) ProtoMessage() {}
- func (x *GetErpOrganSchPerByUserIdReq) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[24]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetErpOrganSchPerByUserIdReq.ProtoReflect.Descriptor instead.
- func (*GetErpOrganSchPerByUserIdReq) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{24}
- }
- func (x *GetErpOrganSchPerByUserIdReq) GetUserId() string {
- if x != nil {
- return x.UserId
- }
- return ""
- }
- type GetErpOrganSchPerByUserIdRes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- School []*OrganSchool `protobuf:"bytes,1,rep,name=school,proto3" json:"school,omitempty"`
- }
- func (x *GetErpOrganSchPerByUserIdRes) Reset() {
- *x = GetErpOrganSchPerByUserIdRes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[25]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetErpOrganSchPerByUserIdRes) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetErpOrganSchPerByUserIdRes) ProtoMessage() {}
- func (x *GetErpOrganSchPerByUserIdRes) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[25]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetErpOrganSchPerByUserIdRes.ProtoReflect.Descriptor instead.
- func (*GetErpOrganSchPerByUserIdRes) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{25}
- }
- func (x *GetErpOrganSchPerByUserIdRes) GetSchool() []*OrganSchool {
- if x != nil {
- return x.School
- }
- return nil
- }
- type OrganSchool struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
- OrganId int64 `protobuf:"varint,3,opt,name=organ_id,json=organId,proto3" json:"organ_id,omitempty"`
- }
- func (x *OrganSchool) Reset() {
- *x = OrganSchool{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[26]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *OrganSchool) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*OrganSchool) ProtoMessage() {}
- func (x *OrganSchool) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[26]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use OrganSchool.ProtoReflect.Descriptor instead.
- func (*OrganSchool) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{26}
- }
- func (x *OrganSchool) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *OrganSchool) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
- }
- func (x *OrganSchool) GetOrganId() int64 {
- if x != nil {
- return x.OrganId
- }
- return 0
- }
- type GetErpSchoolRes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- School []*OrganSchool `protobuf:"bytes,1,rep,name=school,proto3" json:"school,omitempty"`
- }
- func (x *GetErpSchoolRes) Reset() {
- *x = GetErpSchoolRes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[27]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetErpSchoolRes) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetErpSchoolRes) ProtoMessage() {}
- func (x *GetErpSchoolRes) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[27]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetErpSchoolRes.ProtoReflect.Descriptor instead.
- func (*GetErpSchoolRes) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{27}
- }
- func (x *GetErpSchoolRes) GetSchool() []*OrganSchool {
- if x != nil {
- return x.School
- }
- return nil
- }
- type GetErpActiveReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- SchId uint64 `protobuf:"varint,1,opt,name=sch_id,json=schId,proto3" json:"sch_id,omitempty"`
- }
- func (x *GetErpActiveReq) Reset() {
- *x = GetErpActiveReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[28]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetErpActiveReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetErpActiveReq) ProtoMessage() {}
- func (x *GetErpActiveReq) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[28]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetErpActiveReq.ProtoReflect.Descriptor instead.
- func (*GetErpActiveReq) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{28}
- }
- func (x *GetErpActiveReq) GetSchId() uint64 {
- if x != nil {
- return x.SchId
- }
- return 0
- }
- type GetErpActiveRes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Active []*Active `protobuf:"bytes,1,rep,name=active,proto3" json:"active,omitempty"`
- }
- func (x *GetErpActiveRes) Reset() {
- *x = GetErpActiveRes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[29]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetErpActiveRes) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetErpActiveRes) ProtoMessage() {}
- func (x *GetErpActiveRes) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[29]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use GetErpActiveRes.ProtoReflect.Descriptor instead.
- func (*GetErpActiveRes) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{29}
- }
- func (x *GetErpActiveRes) GetActive() []*Active {
- if x != nil {
- return x.Active
- }
- return nil
- }
- type Active struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ActiveId int64 `protobuf:"varint,1,opt,name=active_id,json=activeId,proto3" json:"active_id,omitempty"`
- MaName string `protobuf:"bytes,2,opt,name=ma_name,json=maName,proto3" json:"ma_name,omitempty"`
- }
- func (x *Active) Reset() {
- *x = Active{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[30]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *Active) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Active) ProtoMessage() {}
- func (x *Active) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[30]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Active.ProtoReflect.Descriptor instead.
- func (*Active) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{30}
- }
- func (x *Active) GetActiveId() int64 {
- if x != nil {
- return x.ActiveId
- }
- return 0
- }
- func (x *Active) GetMaName() string {
- if x != nil {
- return x.MaName
- }
- return ""
- }
- type DataPermissionReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- RuleCode string `protobuf:"bytes,1,opt,name=rule_code,json=ruleCode,proto3" json:"rule_code,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- }
- func (x *DataPermissionReq) Reset() {
- *x = DataPermissionReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[31]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *DataPermissionReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DataPermissionReq) ProtoMessage() {}
- func (x *DataPermissionReq) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[31]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use DataPermissionReq.ProtoReflect.Descriptor instead.
- func (*DataPermissionReq) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{31}
- }
- func (x *DataPermissionReq) GetRuleCode() string {
- if x != nil {
- return x.RuleCode
- }
- return ""
- }
- func (x *DataPermissionReq) GetUserId() string {
- if x != nil {
- return x.UserId
- }
- return ""
- }
- type DataPermissionRes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- 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"`
- }
- func (x *DataPermissionRes) Reset() {
- *x = DataPermissionRes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[32]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *DataPermissionRes) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*DataPermissionRes) ProtoMessage() {}
- func (x *DataPermissionRes) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[32]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use DataPermissionRes.ProtoReflect.Descriptor instead.
- func (*DataPermissionRes) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{32}
- }
- func (x *DataPermissionRes) GetMapList() map[string]string {
- if x != nil {
- return x.MapList
- }
- return nil
- }
- type MktReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
- MkId string `protobuf:"bytes,2,opt,name=MkId,proto3" json:"MkId,omitempty"`
- PartTimeUserId int64 `protobuf:"varint,3,opt,name=PartTimeUserId,proto3" json:"PartTimeUserId,omitempty"`
- UserId int64 `protobuf:"varint,4,opt,name=UserId,proto3" json:"UserId,omitempty"`
- StuName string `protobuf:"bytes,5,opt,name=StuName,proto3" json:"StuName,omitempty"`
- AgeGroup int64 `protobuf:"varint,6,opt,name=AgeGroup,proto3" json:"AgeGroup,omitempty"`
- StuLinkPerson string `protobuf:"bytes,7,opt,name=StuLinkPerson,proto3" json:"StuLinkPerson,omitempty"`
- StuPhone string `protobuf:"bytes,8,opt,name=StuPhone,proto3" json:"StuPhone,omitempty"`
- SchId int64 `protobuf:"varint,9,opt,name=SchId,proto3" json:"SchId,omitempty"`
- Address string `protobuf:"bytes,10,opt,name=Address,proto3" json:"Address,omitempty"`
- CreateTime string `protobuf:"bytes,11,opt,name=CreateTime,proto3" json:"CreateTime,omitempty"`
- DelFlag int64 `protobuf:"varint,12,opt,name=DelFlag,proto3" json:"DelFlag,omitempty"`
- CheckState int64 `protobuf:"varint,13,opt,name=CheckState,proto3" json:"CheckState,omitempty"`
- CheckTime string `protobuf:"bytes,14,opt,name=CheckTime,proto3" json:"CheckTime,omitempty"`
- CheckBy string `protobuf:"bytes,15,opt,name=CheckBy,proto3" json:"CheckBy,omitempty"`
- NetworkDetailId int64 `protobuf:"varint,16,opt,name=NetworkDetailId,proto3" json:"NetworkDetailId,omitempty"`
- ActiveId int64 `protobuf:"varint,17,opt,name=ActiveId,proto3" json:"ActiveId,omitempty"`
- CallType int64 `protobuf:"varint,18,opt,name=CallType,proto3" json:"CallType,omitempty"`
- MaType int64 `protobuf:"varint,19,opt,name=MaType,proto3" json:"MaType,omitempty"`
- QuaoYji int64 `protobuf:"varint,20,opt,name=QuaoYji,proto3" json:"QuaoYji,omitempty"`
- MktActivityId int64 `protobuf:"varint,21,opt,name=MktActivityId,proto3" json:"MktActivityId,omitempty"`
- LoadSchId int64 `protobuf:"varint,22,opt,name=LoadSchId,proto3" json:"LoadSchId,omitempty"`
- }
- func (x *MktReq) Reset() {
- *x = MktReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[33]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *MktReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*MktReq) ProtoMessage() {}
- func (x *MktReq) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[33]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use MktReq.ProtoReflect.Descriptor instead.
- func (*MktReq) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{33}
- }
- func (x *MktReq) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *MktReq) GetMkId() string {
- if x != nil {
- return x.MkId
- }
- return ""
- }
- func (x *MktReq) GetPartTimeUserId() int64 {
- if x != nil {
- return x.PartTimeUserId
- }
- return 0
- }
- func (x *MktReq) GetUserId() int64 {
- if x != nil {
- return x.UserId
- }
- return 0
- }
- func (x *MktReq) GetStuName() string {
- if x != nil {
- return x.StuName
- }
- return ""
- }
- func (x *MktReq) GetAgeGroup() int64 {
- if x != nil {
- return x.AgeGroup
- }
- return 0
- }
- func (x *MktReq) GetStuLinkPerson() string {
- if x != nil {
- return x.StuLinkPerson
- }
- return ""
- }
- func (x *MktReq) GetStuPhone() string {
- if x != nil {
- return x.StuPhone
- }
- return ""
- }
- func (x *MktReq) GetSchId() int64 {
- if x != nil {
- return x.SchId
- }
- return 0
- }
- func (x *MktReq) GetAddress() string {
- if x != nil {
- return x.Address
- }
- return ""
- }
- func (x *MktReq) GetCreateTime() string {
- if x != nil {
- return x.CreateTime
- }
- return ""
- }
- func (x *MktReq) GetDelFlag() int64 {
- if x != nil {
- return x.DelFlag
- }
- return 0
- }
- func (x *MktReq) GetCheckState() int64 {
- if x != nil {
- return x.CheckState
- }
- return 0
- }
- func (x *MktReq) GetCheckTime() string {
- if x != nil {
- return x.CheckTime
- }
- return ""
- }
- func (x *MktReq) GetCheckBy() string {
- if x != nil {
- return x.CheckBy
- }
- return ""
- }
- func (x *MktReq) GetNetworkDetailId() int64 {
- if x != nil {
- return x.NetworkDetailId
- }
- return 0
- }
- func (x *MktReq) GetActiveId() int64 {
- if x != nil {
- return x.ActiveId
- }
- return 0
- }
- func (x *MktReq) GetCallType() int64 {
- if x != nil {
- return x.CallType
- }
- return 0
- }
- func (x *MktReq) GetMaType() int64 {
- if x != nil {
- return x.MaType
- }
- return 0
- }
- func (x *MktReq) GetQuaoYji() int64 {
- if x != nil {
- return x.QuaoYji
- }
- return 0
- }
- func (x *MktReq) GetMktActivityId() int64 {
- if x != nil {
- return x.MktActivityId
- }
- return 0
- }
- func (x *MktReq) GetLoadSchId() int64 {
- if x != nil {
- return x.LoadSchId
- }
- return 0
- }
- type MktRes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Status int64 `protobuf:"varint,1,opt,name=Status,proto3" json:"Status,omitempty"`
- }
- func (x *MktRes) Reset() {
- *x = MktRes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[34]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *MktRes) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*MktRes) ProtoMessage() {}
- func (x *MktRes) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[34]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use MktRes.ProtoReflect.Descriptor instead.
- func (*MktRes) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{34}
- }
- func (x *MktRes) GetStatus() int64 {
- if x != nil {
- return x.Status
- }
- return 0
- }
- type StudentReq struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
- }
- func (x *StudentReq) Reset() {
- *x = StudentReq{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[35]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *StudentReq) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StudentReq) ProtoMessage() {}
- func (x *StudentReq) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[35]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StudentReq.ProtoReflect.Descriptor instead.
- func (*StudentReq) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{35}
- }
- func (x *StudentReq) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- type StudentRes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
- StuPhone string `protobuf:"bytes,2,opt,name=StuPhone,proto3" json:"StuPhone,omitempty"`
- }
- func (x *StudentRes) Reset() {
- *x = StudentRes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_transform_proto_msgTypes[36]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *StudentRes) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*StudentRes) ProtoMessage() {}
- func (x *StudentRes) ProtoReflect() protoreflect.Message {
- mi := &file_transform_proto_msgTypes[36]
- if protoimpl.UnsafeEnabled && x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use StudentRes.ProtoReflect.Descriptor instead.
- func (*StudentRes) Descriptor() ([]byte, []int) {
- return file_transform_proto_rawDescGZIP(), []int{36}
- }
- func (x *StudentRes) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *StudentRes) GetStuPhone() string {
- if x != nil {
- return x.StuPhone
- }
- return ""
- }
- var File_transform_proto protoreflect.FileDescriptor
- var file_transform_proto_rawDesc = []byte{
- 0x0a, 0x0f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x12, 0x09, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x22, 0x33, 0x0a, 0x0b,
- 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70,
- 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e,
- 0x65, 0x22, 0xd4, 0x01, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
- 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65,
- 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x16,
- 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06,
- 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x65, 0x72, 0x70, 0x52, 0x6f, 0x6c,
- 0x65, 0x54, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x65, 0x72, 0x70,
- 0x52, 0x6f, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72,
- 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x69, 0x74, 0x79, 0x4e, 0x61, 0x6d, 0x65,
- 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x69, 0x74, 0x79, 0x4e, 0x61, 0x6d, 0x65,
- 0x12, 0x16, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x22, 0x24, 0x0a, 0x0c, 0x54, 0x6f, 0x6b, 0x65,
- 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65,
- 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x9d,
- 0x02, 0x0a, 0x0d, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72,
- 0x52, 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x55,
- 0x73, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x49, 0x64, 0x73, 0x12, 0x24, 0x0a, 0x0d, 0x55, 0x73,
- 0x65, 0x72, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x73,
- 0x12, 0x28, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65,
- 0x49, 0x64, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x50,
- 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x49, 0x64, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x55, 0x73,
- 0x65, 0x72, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x49, 0x64, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x49, 0x64, 0x73, 0x12, 0x20,
- 0x0a, 0x0b, 0x53, 0x79, 0x73, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x18, 0x06, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0b, 0x53, 0x79, 0x73, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64,
- 0x12, 0x1e, 0x0a, 0x0a, 0x53, 0x79, 0x73, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x49, 0x64, 0x18, 0x07,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x53, 0x79, 0x73, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x49, 0x64,
- 0x12, 0x1c, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x08, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x09, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x07,
- 0x0a, 0x05, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x36, 0x0a, 0x09, 0x54, 0x72, 0x65, 0x65, 0x4e,
- 0x6f, 0x64, 0x65, 0x73, 0x12, 0x29, 0x0a, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x18, 0x01, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e,
- 0x54, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05, 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x22,
- 0x93, 0x01, 0x0a, 0x08, 0x54, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x0e, 0x0a, 0x02,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
- 0x74, 0x65, 0x78, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74,
- 0x12, 0x16, 0x0a, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x06, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0e, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72,
- 0x6d, 0x2e, 0x54, 0x61, 0x67, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x29, 0x0a, 0x05, 0x6e, 0x6f,
- 0x64, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x74, 0x72, 0x61, 0x6e,
- 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x54, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x52, 0x05,
- 0x6e, 0x6f, 0x64, 0x65, 0x73, 0x22, 0x29, 0x0a, 0x03, 0x54, 0x61, 0x67, 0x12, 0x0e, 0x0a, 0x02,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
- 0x22, 0x22, 0x0a, 0x0c, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71,
- 0x12, 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
- 0x63, 0x6f, 0x64, 0x65, 0x22, 0x8a, 0x01, 0x0a, 0x0c, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
- 0x65, 0x74, 0x52, 0x65, 0x73, 0x12, 0x3e, 0x0a, 0x07, 0x6d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74,
- 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f,
- 0x72, 0x6d, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x2e,
- 0x4d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x6d, 0x61,
- 0x70, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x3a, 0x0a, 0x0c, 0x4d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74,
- 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
- 0x01, 0x22, 0x20, 0x0a, 0x0a, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x12,
- 0x12, 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63,
- 0x6f, 0x64, 0x65, 0x22, 0x47, 0x0a, 0x07, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x12,
- 0x0a, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x6f,
- 0x64, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x22, 0x0a, 0x0c,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x79, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04,
- 0x64, 0x61, 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61,
- 0x22, 0xdb, 0x01, 0x0a, 0x0b, 0x45, 0x78, 0x63, 0x65, 0x6c, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x71,
- 0x12, 0x16, 0x0a, 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x43, 0x6f, 0x6e, 0x64,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x43, 0x6f, 0x6e, 0x64, 0x12, 0x1a, 0x0a, 0x08,
- 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x42, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
- 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x42, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x61,
- 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x43, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x4c, 0x61, 0x73, 0x74,
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c,
- 0x4c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x79, 0x12, 0x26, 0x0a, 0x0e,
- 0x4c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x4c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x44, 0x65, 0x6c, 0x46, 0x6c, 0x61, 0x67, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x44, 0x65, 0x6c, 0x46, 0x6c, 0x61, 0x67, 0x22, 0x25,
- 0x0a, 0x0b, 0x45, 0x78, 0x63, 0x65, 0x6c, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x73, 0x12, 0x16, 0x0a,
- 0x06, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x24, 0x0a, 0x0c, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49,
- 0x64, 0x73, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01,
- 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x1d, 0x0a, 0x09, 0x4c,
- 0x69, 0x73, 0x74, 0x4f, 0x66, 0x49, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18,
- 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0x8a, 0x01, 0x0a, 0x0c, 0x53,
- 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x12, 0x3e, 0x0a, 0x07, 0x6d,
- 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x74,
- 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49,
- 0x64, 0x73, 0x52, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74,
- 0x72, 0x79, 0x52, 0x07, 0x6d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x3a, 0x0a, 0x0c, 0x4d,
- 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
- 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a,
- 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x22, 0x0a, 0x0a, 0x43, 0x69, 0x74, 0x79, 0x49,
- 0x64, 0x73, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x22, 0x86, 0x01, 0x0a, 0x0a,
- 0x43, 0x69, 0x74, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x12, 0x3c, 0x0a, 0x07, 0x6d, 0x61,
- 0x70, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x74, 0x72,
- 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x43, 0x69, 0x74, 0x79, 0x49, 0x64, 0x73, 0x52,
- 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
- 0x07, 0x6d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x3a, 0x0a, 0x0c, 0x4d, 0x61, 0x70, 0x4c,
- 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x3a, 0x02, 0x38, 0x01, 0x22, 0x1c, 0x0a, 0x08, 0x42, 0x79, 0x74, 0x65, 0x73, 0x52, 0x65, 0x71,
- 0x12, 0x10, 0x0a, 0x03, 0x72, 0x65, 0x71, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x72,
- 0x65, 0x71, 0x22, 0x1f, 0x0a, 0x09, 0x42, 0x79, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12,
- 0x12, 0x0a, 0x04, 0x72, 0x65, 0x73, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x04, 0x72,
- 0x65, 0x73, 0x70, 0x22, 0x53, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x52, 0x6f, 0x6c,
- 0x65, 0x52, 0x65, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x12, 0x0a,
- 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x6f, 0x6c,
- 0x65, 0x12, 0x15, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x05, 0x73, 0x63, 0x68, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x0d, 0x47, 0x65, 0x74, 0x45,
- 0x72, 0x70, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x6d, 0x6f, 0x62,
- 0x69, 0x6c, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x6f, 0x62, 0x69, 0x6c,
- 0x65, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x37, 0x0a, 0x1c, 0x47, 0x65,
- 0x74, 0x45, 0x72, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63, 0x68, 0x50, 0x65, 0x72, 0x42,
- 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73,
- 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65,
- 0x72, 0x49, 0x64, 0x22, 0x4e, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x4f, 0x72, 0x67,
- 0x61, 0x6e, 0x53, 0x63, 0x68, 0x50, 0x65, 0x72, 0x42, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
- 0x52, 0x65, 0x73, 0x12, 0x2e, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x18, 0x01, 0x20,
- 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e,
- 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x52, 0x06, 0x73, 0x63, 0x68,
- 0x6f, 0x6f, 0x6c, 0x22, 0x4c, 0x0a, 0x0b, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63, 0x68, 0x6f,
- 0x6f, 0x6c, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02,
- 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x5f,
- 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x49,
- 0x64, 0x22, 0x41, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x53, 0x63, 0x68, 0x6f, 0x6f,
- 0x6c, 0x52, 0x65, 0x73, 0x12, 0x2e, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x18, 0x01,
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d,
- 0x2e, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x52, 0x06, 0x73, 0x63,
- 0x68, 0x6f, 0x6f, 0x6c, 0x22, 0x28, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x41, 0x63,
- 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x12, 0x15, 0x0a, 0x06, 0x73, 0x63, 0x68, 0x5f, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x73, 0x63, 0x68, 0x49, 0x64, 0x22, 0x3c,
- 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65,
- 0x73, 0x12, 0x29, 0x0a, 0x06, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x18, 0x01, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x11, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x41, 0x63,
- 0x74, 0x69, 0x76, 0x65, 0x52, 0x06, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x22, 0x3e, 0x0a, 0x06,
- 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65,
- 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x63, 0x74, 0x69, 0x76,
- 0x65, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x6d, 0x61, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6d, 0x61, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x49, 0x0a, 0x11,
- 0x44, 0x61, 0x74, 0x61, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65,
- 0x71, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x75, 0x6c, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x17,
- 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x94, 0x01, 0x0a, 0x11, 0x44, 0x61, 0x74, 0x61,
- 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x43, 0x0a,
- 0x07, 0x6d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x29,
- 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x50,
- 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70,
- 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x6d, 0x61, 0x70, 0x4c, 0x69,
- 0x73, 0x74, 0x1a, 0x3a, 0x0a, 0x0c, 0x4d, 0x61, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x6e, 0x74,
- 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0xfe,
- 0x04, 0x0a, 0x06, 0x4d, 0x6b, 0x74, 0x52, 0x65, 0x71, 0x12, 0x0e, 0x0a, 0x02, 0x49, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x4d, 0x6b, 0x49,
- 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x4d, 0x6b, 0x49, 0x64, 0x12, 0x26, 0x0a,
- 0x0e, 0x50, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x55,
- 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
- 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a,
- 0x07, 0x53, 0x74, 0x75, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
- 0x53, 0x74, 0x75, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x67, 0x65, 0x47, 0x72,
- 0x6f, 0x75, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x41, 0x67, 0x65, 0x47, 0x72,
- 0x6f, 0x75, 0x70, 0x12, 0x24, 0x0a, 0x0d, 0x53, 0x74, 0x75, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x65,
- 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x53, 0x74, 0x75, 0x4c,
- 0x69, 0x6e, 0x6b, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x53, 0x74, 0x75,
- 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x53, 0x74, 0x75,
- 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x53, 0x63, 0x68, 0x49, 0x64, 0x18, 0x09,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x53, 0x63, 0x68, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x41,
- 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x41, 0x64,
- 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1e, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54,
- 0x69, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x43, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x44, 0x65, 0x6c, 0x46, 0x6c, 0x61, 0x67,
- 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x44, 0x65, 0x6c, 0x46, 0x6c, 0x61, 0x67, 0x12,
- 0x1e, 0x0a, 0x0a, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x65, 0x18, 0x0d, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x0a, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12,
- 0x1c, 0x0a, 0x09, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x09, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a,
- 0x07, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x42, 0x79, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
- 0x43, 0x68, 0x65, 0x63, 0x6b, 0x42, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x4e, 0x65, 0x74, 0x77, 0x6f,
- 0x72, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x49, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x0f, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x49,
- 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x49, 0x64, 0x18, 0x11, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x08, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x49, 0x64, 0x12, 0x1a, 0x0a,
- 0x08, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x08, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x4d, 0x61, 0x54,
- 0x79, 0x70, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x4d, 0x61, 0x54, 0x79, 0x70,
- 0x65, 0x12, 0x18, 0x0a, 0x07, 0x51, 0x75, 0x61, 0x6f, 0x59, 0x6a, 0x69, 0x18, 0x14, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x07, 0x51, 0x75, 0x61, 0x6f, 0x59, 0x6a, 0x69, 0x12, 0x24, 0x0a, 0x0d, 0x4d,
- 0x6b, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49, 0x64, 0x18, 0x15, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x0d, 0x4d, 0x6b, 0x74, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49,
- 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x4c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x49, 0x64, 0x18, 0x16,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x4c, 0x6f, 0x61, 0x64, 0x53, 0x63, 0x68, 0x49, 0x64, 0x22,
- 0x20, 0x0a, 0x06, 0x4d, 0x6b, 0x74, 0x52, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x53, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x22, 0x1c, 0x0a, 0x0a, 0x53, 0x74, 0x75, 0x64, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12,
- 0x0e, 0x0a, 0x02, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x49, 0x64, 0x22,
- 0x38, 0x0a, 0x0a, 0x53, 0x74, 0x75, 0x64, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x12, 0x0e, 0x0a,
- 0x02, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x49, 0x64, 0x12, 0x1a, 0x0a,
- 0x08, 0x53, 0x74, 0x75, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x53, 0x74, 0x75, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x32, 0xf9, 0x08, 0x0a, 0x09, 0x54, 0x72,
- 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x12, 0x3a, 0x0a, 0x07, 0x47, 0x65, 0x74, 0x55, 0x73,
- 0x65, 0x72, 0x12, 0x16, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x55,
- 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x74, 0x72, 0x61,
- 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x12, 0x3f, 0x0a, 0x0a, 0x50, 0x61, 0x72, 0x73, 0x65, 0x54, 0x6f, 0x6b, 0x65,
- 0x6e, 0x12, 0x17, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x54, 0x6f,
- 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x18, 0x2e, 0x74, 0x72, 0x61,
- 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x38, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x43, 0x69,
- 0x74, 0x79, 0x54, 0x72, 0x65, 0x65, 0x12, 0x10, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f,
- 0x72, 0x6d, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73,
- 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x54, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x12, 0x2e,
- 0x0a, 0x06, 0x41, 0x64, 0x64, 0x4d, 0x6b, 0x74, 0x12, 0x11, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73,
- 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x4d, 0x6b, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x11, 0x2e, 0x74, 0x72,
- 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x4d, 0x6b, 0x74, 0x52, 0x65, 0x73, 0x12, 0x41,
- 0x0a, 0x0d, 0x4c, 0x6f, 0x61, 0x64, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x65, 0x74, 0x12,
- 0x17, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x4f, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73,
- 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x65, 0x74, 0x52, 0x65,
- 0x73, 0x12, 0x40, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64,
- 0x73, 0x12, 0x17, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x53, 0x63,
- 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x74, 0x72, 0x61,
- 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x49, 0x64, 0x73,
- 0x52, 0x65, 0x73, 0x12, 0x3a, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x43, 0x69, 0x74, 0x79, 0x49, 0x64,
- 0x73, 0x12, 0x15, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x43, 0x69,
- 0x74, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73,
- 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x43, 0x69, 0x74, 0x79, 0x49, 0x64, 0x73, 0x52, 0x65, 0x73, 0x12,
- 0x3e, 0x0a, 0x0c, 0x50, 0x6f, 0x73, 0x74, 0x45, 0x78, 0x63, 0x65, 0x6c, 0x4c, 0x6f, 0x67, 0x12,
- 0x16, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x45, 0x78, 0x63, 0x65,
- 0x6c, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66,
- 0x6f, 0x72, 0x6d, 0x2e, 0x45, 0x78, 0x63, 0x65, 0x6c, 0x4c, 0x6f, 0x67, 0x52, 0x65, 0x73, 0x12,
- 0x3c, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
- 0x65, 0x74, 0x12, 0x15, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x4f,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x1a, 0x12, 0x2e, 0x74, 0x72, 0x61, 0x6e,
- 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x3a, 0x0a,
- 0x0a, 0x47, 0x65, 0x74, 0x53, 0x74, 0x75, 0x64, 0x65, 0x6e, 0x74, 0x12, 0x15, 0x2e, 0x74, 0x72,
- 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x53, 0x74, 0x75, 0x64, 0x65, 0x6e, 0x74, 0x52,
- 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x53,
- 0x74, 0x75, 0x64, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x12, 0x4f, 0x0a, 0x11, 0x47, 0x65, 0x74,
- 0x44, 0x61, 0x74, 0x61, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1c,
- 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x50,
- 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x1c, 0x2e, 0x74,
- 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x50, 0x65, 0x72,
- 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x44, 0x0a, 0x1a, 0x47, 0x65,
- 0x74, 0x45, 0x72, 0x70, 0x4d, 0x6b, 0x74, 0x4e, 0x65, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x44, 0x65,
- 0x74, 0x61, 0x69, 0x6c, 0x54, 0x72, 0x65, 0x65, 0x12, 0x10, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73,
- 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x14, 0x2e, 0x74, 0x72, 0x61,
- 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x54, 0x72, 0x65, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x73,
- 0x12, 0x6d, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53,
- 0x63, 0x68, 0x50, 0x65, 0x72, 0x42, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x27, 0x2e,
- 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70,
- 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63, 0x68, 0x50, 0x65, 0x72, 0x42, 0x79, 0x55, 0x73, 0x65,
- 0x72, 0x49, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x27, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f,
- 0x72, 0x6d, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63,
- 0x68, 0x50, 0x65, 0x72, 0x42, 0x79, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x52, 0x65, 0x73, 0x12,
- 0x40, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x18, 0x2e,
- 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70,
- 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66,
- 0x6f, 0x72, 0x6d, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65,
- 0x73, 0x12, 0x3c, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x53, 0x63, 0x68, 0x6f, 0x6f,
- 0x6c, 0x12, 0x10, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x45, 0x6d,
- 0x70, 0x74, 0x79, 0x1a, 0x1a, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e,
- 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x53, 0x63, 0x68, 0x6f, 0x6f, 0x6c, 0x52, 0x65, 0x73, 0x12,
- 0x46, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x12,
- 0x1a, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x47, 0x65, 0x74, 0x45,
- 0x72, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x74, 0x72,
- 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x47, 0x65, 0x74, 0x45, 0x72, 0x70, 0x41, 0x63,
- 0x74, 0x69, 0x76, 0x65, 0x52, 0x65, 0x73, 0x12, 0x3c, 0x0a, 0x12, 0x47, 0x65, 0x74, 0x45, 0x72,
- 0x70, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x53, 0x63, 0x68, 0x54, 0x72, 0x65, 0x65, 0x12, 0x10, 0x2e,
- 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
- 0x14, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x6f, 0x72, 0x6d, 0x2e, 0x54, 0x72, 0x65, 0x65,
- 0x4e, 0x6f, 0x64, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
- }
- var (
- file_transform_proto_rawDescOnce sync.Once
- file_transform_proto_rawDescData = file_transform_proto_rawDesc
- )
- func file_transform_proto_rawDescGZIP() []byte {
- file_transform_proto_rawDescOnce.Do(func() {
- file_transform_proto_rawDescData = protoimpl.X.CompressGZIP(file_transform_proto_rawDescData)
- })
- return file_transform_proto_rawDescData
- }
- var file_transform_proto_msgTypes = make([]protoimpl.MessageInfo, 41)
- var file_transform_proto_goTypes = []interface{}{
- (*UserRequest)(nil), // 0: transform.UserRequest
- (*UserResponse)(nil), // 1: transform.UserResponse
- (*TokenRequest)(nil), // 2: transform.TokenRequest
- (*TokenResponse)(nil), // 3: transform.TokenResponse
- (*Empty)(nil), // 4: transform.Empty
- (*TreeNodes)(nil), // 5: transform.TreeNodes
- (*TreeNode)(nil), // 6: transform.TreeNode
- (*Tag)(nil), // 7: transform.Tag
- (*OptionsetReq)(nil), // 8: transform.OptionsetReq
- (*OptionsetRes)(nil), // 9: transform.OptionsetRes
- (*OptionCode)(nil), // 10: transform.OptionCode
- (*Options)(nil), // 11: transform.Options
- (*ResponseByte)(nil), // 12: transform.ResponseByte
- (*ExcelLogReq)(nil), // 13: transform.ExcelLogReq
- (*ExcelLogRes)(nil), // 14: transform.ExcelLogRes
- (*SchoolIdsReq)(nil), // 15: transform.SchoolIdsReq
- (*ListOfInt)(nil), // 16: transform.ListOfInt
- (*SchoolIdsRes)(nil), // 17: transform.SchoolIdsRes
- (*CityIdsReq)(nil), // 18: transform.CityIdsReq
- (*CityIdsRes)(nil), // 19: transform.CityIdsRes
- (*BytesReq)(nil), // 20: transform.BytesReq
- (*BytesResp)(nil), // 21: transform.BytesResp
- (*GetErpRoleRes)(nil), // 22: transform.GetErpRoleRes
- (*GetErpRoleReq)(nil), // 23: transform.GetErpRoleReq
- (*GetErpOrganSchPerByUserIdReq)(nil), // 24: transform.GetErpOrganSchPerByUserIdReq
- (*GetErpOrganSchPerByUserIdRes)(nil), // 25: transform.GetErpOrganSchPerByUserIdRes
- (*OrganSchool)(nil), // 26: transform.OrganSchool
- (*GetErpSchoolRes)(nil), // 27: transform.GetErpSchoolRes
- (*GetErpActiveReq)(nil), // 28: transform.GetErpActiveReq
- (*GetErpActiveRes)(nil), // 29: transform.GetErpActiveRes
- (*Active)(nil), // 30: transform.Active
- (*DataPermissionReq)(nil), // 31: transform.DataPermissionReq
- (*DataPermissionRes)(nil), // 32: transform.DataPermissionRes
- (*MktReq)(nil), // 33: transform.MktReq
- (*MktRes)(nil), // 34: transform.MktRes
- (*StudentReq)(nil), // 35: transform.StudentReq
- (*StudentRes)(nil), // 36: transform.StudentRes
- nil, // 37: transform.OptionsetRes.MapListEntry
- nil, // 38: transform.SchoolIdsRes.MapListEntry
- nil, // 39: transform.CityIdsRes.MapListEntry
- nil, // 40: transform.DataPermissionRes.MapListEntry
- }
- var file_transform_proto_depIdxs = []int32{
- 6, // 0: transform.TreeNodes.nodes:type_name -> transform.TreeNode
- 7, // 1: transform.TreeNode.tag:type_name -> transform.Tag
- 6, // 2: transform.TreeNode.nodes:type_name -> transform.TreeNode
- 37, // 3: transform.OptionsetRes.mapList:type_name -> transform.OptionsetRes.MapListEntry
- 38, // 4: transform.SchoolIdsRes.mapList:type_name -> transform.SchoolIdsRes.MapListEntry
- 39, // 5: transform.CityIdsRes.mapList:type_name -> transform.CityIdsRes.MapListEntry
- 26, // 6: transform.GetErpOrganSchPerByUserIdRes.school:type_name -> transform.OrganSchool
- 26, // 7: transform.GetErpSchoolRes.school:type_name -> transform.OrganSchool
- 30, // 8: transform.GetErpActiveRes.active:type_name -> transform.Active
- 40, // 9: transform.DataPermissionRes.mapList:type_name -> transform.DataPermissionRes.MapListEntry
- 0, // 10: transform.Transform.GetUser:input_type -> transform.UserRequest
- 2, // 11: transform.Transform.ParseToken:input_type -> transform.TokenRequest
- 4, // 12: transform.Transform.GetErpCityTree:input_type -> transform.Empty
- 33, // 13: transform.Transform.AddMkt:input_type -> transform.MktReq
- 8, // 14: transform.Transform.LoadOptionset:input_type -> transform.OptionsetReq
- 15, // 15: transform.Transform.GetSchoolIds:input_type -> transform.SchoolIdsReq
- 18, // 16: transform.Transform.GetCityIds:input_type -> transform.CityIdsReq
- 13, // 17: transform.Transform.PostExcelLog:input_type -> transform.ExcelLogReq
- 10, // 18: transform.Transform.GetErpOptionset:input_type -> transform.OptionCode
- 35, // 19: transform.Transform.GetStudent:input_type -> transform.StudentReq
- 31, // 20: transform.Transform.GetDataPermission:input_type -> transform.DataPermissionReq
- 4, // 21: transform.Transform.GetErpMktNetWorkDetailTree:input_type -> transform.Empty
- 24, // 22: transform.Transform.GetErpOrganSchPerByUserId:input_type -> transform.GetErpOrganSchPerByUserIdReq
- 23, // 23: transform.Transform.GetErpRole:input_type -> transform.GetErpRoleReq
- 4, // 24: transform.Transform.GetErpSchool:input_type -> transform.Empty
- 28, // 25: transform.Transform.GetErpActive:input_type -> transform.GetErpActiveReq
- 4, // 26: transform.Transform.GetErpOrganSchTree:input_type -> transform.Empty
- 1, // 27: transform.Transform.GetUser:output_type -> transform.UserResponse
- 3, // 28: transform.Transform.ParseToken:output_type -> transform.TokenResponse
- 5, // 29: transform.Transform.GetErpCityTree:output_type -> transform.TreeNodes
- 34, // 30: transform.Transform.AddMkt:output_type -> transform.MktRes
- 9, // 31: transform.Transform.LoadOptionset:output_type -> transform.OptionsetRes
- 17, // 32: transform.Transform.GetSchoolIds:output_type -> transform.SchoolIdsRes
- 19, // 33: transform.Transform.GetCityIds:output_type -> transform.CityIdsRes
- 14, // 34: transform.Transform.PostExcelLog:output_type -> transform.ExcelLogRes
- 11, // 35: transform.Transform.GetErpOptionset:output_type -> transform.Options
- 36, // 36: transform.Transform.GetStudent:output_type -> transform.StudentRes
- 32, // 37: transform.Transform.GetDataPermission:output_type -> transform.DataPermissionRes
- 5, // 38: transform.Transform.GetErpMktNetWorkDetailTree:output_type -> transform.TreeNodes
- 25, // 39: transform.Transform.GetErpOrganSchPerByUserId:output_type -> transform.GetErpOrganSchPerByUserIdRes
- 22, // 40: transform.Transform.GetErpRole:output_type -> transform.GetErpRoleRes
- 27, // 41: transform.Transform.GetErpSchool:output_type -> transform.GetErpSchoolRes
- 29, // 42: transform.Transform.GetErpActive:output_type -> transform.GetErpActiveRes
- 5, // 43: transform.Transform.GetErpOrganSchTree:output_type -> transform.TreeNodes
- 27, // [27:44] is the sub-list for method output_type
- 10, // [10:27] is the sub-list for method input_type
- 10, // [10:10] is the sub-list for extension type_name
- 10, // [10:10] is the sub-list for extension extendee
- 0, // [0:10] is the sub-list for field type_name
- }
- func init() { file_transform_proto_init() }
- func file_transform_proto_init() {
- if File_transform_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_transform_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*TokenRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*TokenResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Empty); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*TreeNodes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*TreeNode); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Tag); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OptionsetReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OptionsetRes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OptionCode); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Options); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ResponseByte); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExcelLogReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExcelLogRes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SchoolIdsReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ListOfInt); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SchoolIdsRes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CityIdsReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CityIdsRes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*BytesReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*BytesResp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetErpRoleRes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetErpRoleReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetErpOrganSchPerByUserIdReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetErpOrganSchPerByUserIdRes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrganSchool); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetErpSchoolRes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetErpActiveReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetErpActiveRes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Active); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*DataPermissionReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*DataPermissionRes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MktReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MktRes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*StudentReq); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_transform_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*StudentRes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_transform_proto_rawDesc,
- NumEnums: 0,
- NumMessages: 41,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_transform_proto_goTypes,
- DependencyIndexes: file_transform_proto_depIdxs,
- MessageInfos: file_transform_proto_msgTypes,
- }.Build()
- File_transform_proto = out.File
- file_transform_proto_rawDesc = nil
- file_transform_proto_goTypes = nil
- file_transform_proto_depIdxs = nil
- }
- // Reference imports to suppress errors if they are not otherwise used.
- var _ context.Context
- var _ grpc.ClientConnInterface
- // This is a compile-time assertion to ensure that this generated file
- // is compatible with the grpc package it is being compiled against.
- const _ = grpc.SupportPackageIsVersion6
- // TransformClient is the client API for Transform service.
- //
- // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
- type TransformClient interface {
- GetUser(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error)
- ParseToken(ctx context.Context, in *TokenRequest, opts ...grpc.CallOption) (*TokenResponse, error)
- //获取erp 省、城市树
- GetErpCityTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
- AddMkt(ctx context.Context, in *MktReq, opts ...grpc.CallOption) (*MktRes, error)
- //获取erp 字典
- LoadOptionset(ctx context.Context, in *OptionsetReq, opts ...grpc.CallOption) (*OptionsetRes, error)
- GetSchoolIds(ctx context.Context, in *SchoolIdsReq, opts ...grpc.CallOption) (*SchoolIdsRes, error)
- GetCityIds(ctx context.Context, in *CityIdsReq, opts ...grpc.CallOption) (*CityIdsRes, error)
- PostExcelLog(ctx context.Context, in *ExcelLogReq, opts ...grpc.CallOption) (*ExcelLogRes, error)
- GetErpOptionset(ctx context.Context, in *OptionCode, opts ...grpc.CallOption) (*Options, error)
- GetStudent(ctx context.Context, in *StudentReq, opts ...grpc.CallOption) (*StudentRes, error)
- //获取数据权限
- GetDataPermission(ctx context.Context, in *DataPermissionReq, opts ...grpc.CallOption) (*DataPermissionRes, error)
- //获取erp 渠道细分树
- GetErpMktNetWorkDetailTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
- //获取erp 用户校区权限
- GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error)
- //获取 erp 用户角色
- GetErpRole(ctx context.Context, in *GetErpRoleReq, opts ...grpc.CallOption) (*GetErpRoleRes, error)
- //获取 erp 全部校区
- GetErpSchool(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*GetErpSchoolRes, error)
- //获取 erp 活动
- GetErpActive(ctx context.Context, in *GetErpActiveReq, opts ...grpc.CallOption) (*GetErpActiveRes, error)
- //获取erp 省、城、校区
- GetErpOrganSchTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
- }
- type transformClient struct {
- cc grpc.ClientConnInterface
- }
- func NewTransformClient(cc grpc.ClientConnInterface) TransformClient {
- return &transformClient{cc}
- }
- func (c *transformClient) GetUser(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error) {
- out := new(UserResponse)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetUser", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) ParseToken(ctx context.Context, in *TokenRequest, opts ...grpc.CallOption) (*TokenResponse, error) {
- out := new(TokenResponse)
- err := c.cc.Invoke(ctx, "/transform.Transform/ParseToken", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) GetErpCityTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
- out := new(TreeNodes)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetErpCityTree", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) AddMkt(ctx context.Context, in *MktReq, opts ...grpc.CallOption) (*MktRes, error) {
- out := new(MktRes)
- err := c.cc.Invoke(ctx, "/transform.Transform/AddMkt", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) LoadOptionset(ctx context.Context, in *OptionsetReq, opts ...grpc.CallOption) (*OptionsetRes, error) {
- out := new(OptionsetRes)
- err := c.cc.Invoke(ctx, "/transform.Transform/LoadOptionset", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) GetSchoolIds(ctx context.Context, in *SchoolIdsReq, opts ...grpc.CallOption) (*SchoolIdsRes, error) {
- out := new(SchoolIdsRes)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetSchoolIds", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) GetCityIds(ctx context.Context, in *CityIdsReq, opts ...grpc.CallOption) (*CityIdsRes, error) {
- out := new(CityIdsRes)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetCityIds", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) PostExcelLog(ctx context.Context, in *ExcelLogReq, opts ...grpc.CallOption) (*ExcelLogRes, error) {
- out := new(ExcelLogRes)
- err := c.cc.Invoke(ctx, "/transform.Transform/PostExcelLog", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) GetErpOptionset(ctx context.Context, in *OptionCode, opts ...grpc.CallOption) (*Options, error) {
- out := new(Options)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOptionset", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) GetStudent(ctx context.Context, in *StudentReq, opts ...grpc.CallOption) (*StudentRes, error) {
- out := new(StudentRes)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetStudent", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) GetDataPermission(ctx context.Context, in *DataPermissionReq, opts ...grpc.CallOption) (*DataPermissionRes, error) {
- out := new(DataPermissionRes)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetDataPermission", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) GetErpMktNetWorkDetailTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
- out := new(TreeNodes)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetErpMktNetWorkDetailTree", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error) {
- out := new(GetErpOrganSchPerByUserIdRes)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOrganSchPerByUserId", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) GetErpRole(ctx context.Context, in *GetErpRoleReq, opts ...grpc.CallOption) (*GetErpRoleRes, error) {
- out := new(GetErpRoleRes)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetErpRole", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) GetErpSchool(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*GetErpSchoolRes, error) {
- out := new(GetErpSchoolRes)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetErpSchool", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) GetErpActive(ctx context.Context, in *GetErpActiveReq, opts ...grpc.CallOption) (*GetErpActiveRes, error) {
- out := new(GetErpActiveRes)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetErpActive", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- func (c *transformClient) GetErpOrganSchTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
- out := new(TreeNodes)
- err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOrganSchTree", in, out, opts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- // TransformServer is the server API for Transform service.
- type TransformServer interface {
- GetUser(context.Context, *UserRequest) (*UserResponse, error)
- ParseToken(context.Context, *TokenRequest) (*TokenResponse, error)
- //获取erp 省、城市树
- GetErpCityTree(context.Context, *Empty) (*TreeNodes, error)
- AddMkt(context.Context, *MktReq) (*MktRes, error)
- //获取erp 字典
- LoadOptionset(context.Context, *OptionsetReq) (*OptionsetRes, error)
- GetSchoolIds(context.Context, *SchoolIdsReq) (*SchoolIdsRes, error)
- GetCityIds(context.Context, *CityIdsReq) (*CityIdsRes, error)
- PostExcelLog(context.Context, *ExcelLogReq) (*ExcelLogRes, error)
- GetErpOptionset(context.Context, *OptionCode) (*Options, error)
- GetStudent(context.Context, *StudentReq) (*StudentRes, error)
- //获取数据权限
- GetDataPermission(context.Context, *DataPermissionReq) (*DataPermissionRes, error)
- //获取erp 渠道细分树
- GetErpMktNetWorkDetailTree(context.Context, *Empty) (*TreeNodes, error)
- //获取erp 用户校区权限
- GetErpOrganSchPerByUserId(context.Context, *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error)
- //获取 erp 用户角色
- GetErpRole(context.Context, *GetErpRoleReq) (*GetErpRoleRes, error)
- //获取 erp 全部校区
- GetErpSchool(context.Context, *Empty) (*GetErpSchoolRes, error)
- //获取 erp 活动
- GetErpActive(context.Context, *GetErpActiveReq) (*GetErpActiveRes, error)
- //获取erp 省、城、校区
- GetErpOrganSchTree(context.Context, *Empty) (*TreeNodes, error)
- }
- // UnimplementedTransformServer can be embedded to have forward compatible implementations.
- type UnimplementedTransformServer struct {
- }
- func (*UnimplementedTransformServer) GetUser(context.Context, *UserRequest) (*UserResponse, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetUser not implemented")
- }
- func (*UnimplementedTransformServer) ParseToken(context.Context, *TokenRequest) (*TokenResponse, error) {
- return nil, status.Errorf(codes.Unimplemented, "method ParseToken not implemented")
- }
- func (*UnimplementedTransformServer) GetErpCityTree(context.Context, *Empty) (*TreeNodes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetErpCityTree not implemented")
- }
- func (*UnimplementedTransformServer) AddMkt(context.Context, *MktReq) (*MktRes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method AddMkt not implemented")
- }
- func (*UnimplementedTransformServer) LoadOptionset(context.Context, *OptionsetReq) (*OptionsetRes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method LoadOptionset not implemented")
- }
- func (*UnimplementedTransformServer) GetSchoolIds(context.Context, *SchoolIdsReq) (*SchoolIdsRes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetSchoolIds not implemented")
- }
- func (*UnimplementedTransformServer) GetCityIds(context.Context, *CityIdsReq) (*CityIdsRes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetCityIds not implemented")
- }
- func (*UnimplementedTransformServer) PostExcelLog(context.Context, *ExcelLogReq) (*ExcelLogRes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method PostExcelLog not implemented")
- }
- func (*UnimplementedTransformServer) GetErpOptionset(context.Context, *OptionCode) (*Options, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetErpOptionset not implemented")
- }
- func (*UnimplementedTransformServer) GetStudent(context.Context, *StudentReq) (*StudentRes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetStudent not implemented")
- }
- func (*UnimplementedTransformServer) GetDataPermission(context.Context, *DataPermissionReq) (*DataPermissionRes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetDataPermission not implemented")
- }
- func (*UnimplementedTransformServer) GetErpMktNetWorkDetailTree(context.Context, *Empty) (*TreeNodes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetErpMktNetWorkDetailTree not implemented")
- }
- func (*UnimplementedTransformServer) GetErpOrganSchPerByUserId(context.Context, *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetErpOrganSchPerByUserId not implemented")
- }
- func (*UnimplementedTransformServer) GetErpRole(context.Context, *GetErpRoleReq) (*GetErpRoleRes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetErpRole not implemented")
- }
- func (*UnimplementedTransformServer) GetErpSchool(context.Context, *Empty) (*GetErpSchoolRes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetErpSchool not implemented")
- }
- func (*UnimplementedTransformServer) GetErpActive(context.Context, *GetErpActiveReq) (*GetErpActiveRes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetErpActive not implemented")
- }
- func (*UnimplementedTransformServer) GetErpOrganSchTree(context.Context, *Empty) (*TreeNodes, error) {
- return nil, status.Errorf(codes.Unimplemented, "method GetErpOrganSchTree not implemented")
- }
- func RegisterTransformServer(s *grpc.Server, srv TransformServer) {
- s.RegisterService(&_Transform_serviceDesc, srv)
- }
- func _Transform_GetUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(UserRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetUser(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetUser",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetUser(ctx, req.(*UserRequest))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_ParseToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(TokenRequest)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).ParseToken(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/ParseToken",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).ParseToken(ctx, req.(*TokenRequest))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_GetErpCityTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(Empty)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetErpCityTree(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetErpCityTree",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetErpCityTree(ctx, req.(*Empty))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_AddMkt_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(MktReq)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).AddMkt(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/AddMkt",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).AddMkt(ctx, req.(*MktReq))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_LoadOptionset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(OptionsetReq)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).LoadOptionset(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/LoadOptionset",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).LoadOptionset(ctx, req.(*OptionsetReq))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_GetSchoolIds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(SchoolIdsReq)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetSchoolIds(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetSchoolIds",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetSchoolIds(ctx, req.(*SchoolIdsReq))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_GetCityIds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(CityIdsReq)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetCityIds(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetCityIds",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetCityIds(ctx, req.(*CityIdsReq))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_PostExcelLog_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(ExcelLogReq)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).PostExcelLog(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/PostExcelLog",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).PostExcelLog(ctx, req.(*ExcelLogReq))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_GetErpOptionset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(OptionCode)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetErpOptionset(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetErpOptionset",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetErpOptionset(ctx, req.(*OptionCode))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_GetStudent_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(StudentReq)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetStudent(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetStudent",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetStudent(ctx, req.(*StudentReq))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_GetDataPermission_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(DataPermissionReq)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetDataPermission(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetDataPermission",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetDataPermission(ctx, req.(*DataPermissionReq))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_GetErpMktNetWorkDetailTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(Empty)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetErpMktNetWorkDetailTree(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetErpMktNetWorkDetailTree",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetErpMktNetWorkDetailTree(ctx, req.(*Empty))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_GetErpOrganSchPerByUserId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(GetErpOrganSchPerByUserIdReq)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetErpOrganSchPerByUserId(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetErpOrganSchPerByUserId",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetErpOrganSchPerByUserId(ctx, req.(*GetErpOrganSchPerByUserIdReq))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_GetErpRole_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(GetErpRoleReq)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetErpRole(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetErpRole",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetErpRole(ctx, req.(*GetErpRoleReq))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_GetErpSchool_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(Empty)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetErpSchool(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetErpSchool",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetErpSchool(ctx, req.(*Empty))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_GetErpActive_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(GetErpActiveReq)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetErpActive(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetErpActive",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetErpActive(ctx, req.(*GetErpActiveReq))
- }
- return interceptor(ctx, in, info, handler)
- }
- func _Transform_GetErpOrganSchTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
- in := new(Empty)
- if err := dec(in); err != nil {
- return nil, err
- }
- if interceptor == nil {
- return srv.(TransformServer).GetErpOrganSchTree(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: "/transform.Transform/GetErpOrganSchTree",
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(TransformServer).GetErpOrganSchTree(ctx, req.(*Empty))
- }
- return interceptor(ctx, in, info, handler)
- }
- var _Transform_serviceDesc = grpc.ServiceDesc{
- ServiceName: "transform.Transform",
- HandlerType: (*TransformServer)(nil),
- Methods: []grpc.MethodDesc{
- {
- MethodName: "GetUser",
- Handler: _Transform_GetUser_Handler,
- },
- {
- MethodName: "ParseToken",
- Handler: _Transform_ParseToken_Handler,
- },
- {
- MethodName: "GetErpCityTree",
- Handler: _Transform_GetErpCityTree_Handler,
- },
- {
- MethodName: "AddMkt",
- Handler: _Transform_AddMkt_Handler,
- },
- {
- MethodName: "LoadOptionset",
- Handler: _Transform_LoadOptionset_Handler,
- },
- {
- MethodName: "GetSchoolIds",
- Handler: _Transform_GetSchoolIds_Handler,
- },
- {
- MethodName: "GetCityIds",
- Handler: _Transform_GetCityIds_Handler,
- },
- {
- MethodName: "PostExcelLog",
- Handler: _Transform_PostExcelLog_Handler,
- },
- {
- MethodName: "GetErpOptionset",
- Handler: _Transform_GetErpOptionset_Handler,
- },
- {
- MethodName: "GetStudent",
- Handler: _Transform_GetStudent_Handler,
- },
- {
- MethodName: "GetDataPermission",
- Handler: _Transform_GetDataPermission_Handler,
- },
- {
- MethodName: "GetErpMktNetWorkDetailTree",
- Handler: _Transform_GetErpMktNetWorkDetailTree_Handler,
- },
- {
- MethodName: "GetErpOrganSchPerByUserId",
- Handler: _Transform_GetErpOrganSchPerByUserId_Handler,
- },
- {
- MethodName: "GetErpRole",
- Handler: _Transform_GetErpRole_Handler,
- },
- {
- MethodName: "GetErpSchool",
- Handler: _Transform_GetErpSchool_Handler,
- },
- {
- MethodName: "GetErpActive",
- Handler: _Transform_GetErpActive_Handler,
- },
- {
- MethodName: "GetErpOrganSchTree",
- Handler: _Transform_GetErpOrganSchTree_Handler,
- },
- },
- Streams: []grpc.StreamDesc{},
- Metadata: "transform.proto",
- }
|