transform.pb.go 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: transform.proto
  3. package transform
  4. import (
  5. context "context"
  6. fmt "fmt"
  7. proto "github.com/golang/protobuf/proto"
  8. grpc "google.golang.org/grpc"
  9. codes "google.golang.org/grpc/codes"
  10. status "google.golang.org/grpc/status"
  11. math "math"
  12. )
  13. // Reference imports to suppress errors if they are not otherwise used.
  14. var _ = proto.Marshal
  15. var _ = fmt.Errorf
  16. var _ = math.Inf
  17. // This is a compile-time assertion to ensure that this generated file
  18. // is compatible with the proto package it is being compiled against.
  19. // A compilation error at this line likely means your copy of the
  20. // proto package needs to be updated.
  21. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  22. type UserRequest struct {
  23. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  24. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
  25. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  26. XXX_unrecognized []byte `json:"-"`
  27. XXX_sizecache int32 `json:"-"`
  28. }
  29. func (m *UserRequest) Reset() { *m = UserRequest{} }
  30. func (m *UserRequest) String() string { return proto.CompactTextString(m) }
  31. func (*UserRequest) ProtoMessage() {}
  32. func (*UserRequest) Descriptor() ([]byte, []int) {
  33. return fileDescriptor_cb4a498eeb2ba07d, []int{0}
  34. }
  35. func (m *UserRequest) XXX_Unmarshal(b []byte) error {
  36. return xxx_messageInfo_UserRequest.Unmarshal(m, b)
  37. }
  38. func (m *UserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  39. return xxx_messageInfo_UserRequest.Marshal(b, m, deterministic)
  40. }
  41. func (m *UserRequest) XXX_Merge(src proto.Message) {
  42. xxx_messageInfo_UserRequest.Merge(m, src)
  43. }
  44. func (m *UserRequest) XXX_Size() int {
  45. return xxx_messageInfo_UserRequest.Size(m)
  46. }
  47. func (m *UserRequest) XXX_DiscardUnknown() {
  48. xxx_messageInfo_UserRequest.DiscardUnknown(m)
  49. }
  50. var xxx_messageInfo_UserRequest proto.InternalMessageInfo
  51. func (m *UserRequest) GetId() string {
  52. if m != nil {
  53. return m.Id
  54. }
  55. return ""
  56. }
  57. func (m *UserRequest) GetPhone() string {
  58. if m != nil {
  59. return m.Phone
  60. }
  61. return ""
  62. }
  63. type UserResponse struct {
  64. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  65. Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
  66. Roles string `protobuf:"bytes,3,opt,name=roles,proto3" json:"roles,omitempty"`
  67. Status int64 `protobuf:"varint,4,opt,name=status,proto3" json:"status,omitempty"`
  68. ErpRoleType int64 `protobuf:"varint,5,opt,name=erpRoleType,proto3" json:"erpRoleType,omitempty"`
  69. UserName string `protobuf:"bytes,6,opt,name=userName,proto3" json:"userName,omitempty"`
  70. CityName string `protobuf:"bytes,7,opt,name=cityName,proto3" json:"cityName,omitempty"`
  71. Gender int64 `protobuf:"varint,8,opt,name=gender,proto3" json:"gender,omitempty"`
  72. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  73. XXX_unrecognized []byte `json:"-"`
  74. XXX_sizecache int32 `json:"-"`
  75. }
  76. func (m *UserResponse) Reset() { *m = UserResponse{} }
  77. func (m *UserResponse) String() string { return proto.CompactTextString(m) }
  78. func (*UserResponse) ProtoMessage() {}
  79. func (*UserResponse) Descriptor() ([]byte, []int) {
  80. return fileDescriptor_cb4a498eeb2ba07d, []int{1}
  81. }
  82. func (m *UserResponse) XXX_Unmarshal(b []byte) error {
  83. return xxx_messageInfo_UserResponse.Unmarshal(m, b)
  84. }
  85. func (m *UserResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  86. return xxx_messageInfo_UserResponse.Marshal(b, m, deterministic)
  87. }
  88. func (m *UserResponse) XXX_Merge(src proto.Message) {
  89. xxx_messageInfo_UserResponse.Merge(m, src)
  90. }
  91. func (m *UserResponse) XXX_Size() int {
  92. return xxx_messageInfo_UserResponse.Size(m)
  93. }
  94. func (m *UserResponse) XXX_DiscardUnknown() {
  95. xxx_messageInfo_UserResponse.DiscardUnknown(m)
  96. }
  97. var xxx_messageInfo_UserResponse proto.InternalMessageInfo
  98. func (m *UserResponse) GetId() string {
  99. if m != nil {
  100. return m.Id
  101. }
  102. return ""
  103. }
  104. func (m *UserResponse) GetPhone() string {
  105. if m != nil {
  106. return m.Phone
  107. }
  108. return ""
  109. }
  110. func (m *UserResponse) GetRoles() string {
  111. if m != nil {
  112. return m.Roles
  113. }
  114. return ""
  115. }
  116. func (m *UserResponse) GetStatus() int64 {
  117. if m != nil {
  118. return m.Status
  119. }
  120. return 0
  121. }
  122. func (m *UserResponse) GetErpRoleType() int64 {
  123. if m != nil {
  124. return m.ErpRoleType
  125. }
  126. return 0
  127. }
  128. func (m *UserResponse) GetUserName() string {
  129. if m != nil {
  130. return m.UserName
  131. }
  132. return ""
  133. }
  134. func (m *UserResponse) GetCityName() string {
  135. if m != nil {
  136. return m.CityName
  137. }
  138. return ""
  139. }
  140. func (m *UserResponse) GetGender() int64 {
  141. if m != nil {
  142. return m.Gender
  143. }
  144. return 0
  145. }
  146. type TokenRequest struct {
  147. Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  148. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  149. XXX_unrecognized []byte `json:"-"`
  150. XXX_sizecache int32 `json:"-"`
  151. }
  152. func (m *TokenRequest) Reset() { *m = TokenRequest{} }
  153. func (m *TokenRequest) String() string { return proto.CompactTextString(m) }
  154. func (*TokenRequest) ProtoMessage() {}
  155. func (*TokenRequest) Descriptor() ([]byte, []int) {
  156. return fileDescriptor_cb4a498eeb2ba07d, []int{2}
  157. }
  158. func (m *TokenRequest) XXX_Unmarshal(b []byte) error {
  159. return xxx_messageInfo_TokenRequest.Unmarshal(m, b)
  160. }
  161. func (m *TokenRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  162. return xxx_messageInfo_TokenRequest.Marshal(b, m, deterministic)
  163. }
  164. func (m *TokenRequest) XXX_Merge(src proto.Message) {
  165. xxx_messageInfo_TokenRequest.Merge(m, src)
  166. }
  167. func (m *TokenRequest) XXX_Size() int {
  168. return xxx_messageInfo_TokenRequest.Size(m)
  169. }
  170. func (m *TokenRequest) XXX_DiscardUnknown() {
  171. xxx_messageInfo_TokenRequest.DiscardUnknown(m)
  172. }
  173. var xxx_messageInfo_TokenRequest proto.InternalMessageInfo
  174. func (m *TokenRequest) GetToken() string {
  175. if m != nil {
  176. return m.Token
  177. }
  178. return ""
  179. }
  180. type TokenResponse struct {
  181. UserId string `protobuf:"bytes,1,opt,name=UserId,proto3" json:"UserId,omitempty"`
  182. UserRoleIds string `protobuf:"bytes,2,opt,name=UserRoleIds,proto3" json:"UserRoleIds,omitempty"`
  183. UserSchoolIds string `protobuf:"bytes,3,opt,name=UserSchoolIds,proto3" json:"UserSchoolIds,omitempty"`
  184. UserProvinceIds string `protobuf:"bytes,4,opt,name=UserProvinceIds,proto3" json:"UserProvinceIds,omitempty"`
  185. UserOrganIds string `protobuf:"bytes,5,opt,name=UserOrganIds,proto3" json:"UserOrganIds,omitempty"`
  186. SysSchoolId string `protobuf:"bytes,6,opt,name=SysSchoolId,proto3" json:"SysSchoolId,omitempty"`
  187. SysOrganId string `protobuf:"bytes,7,opt,name=SysOrganId,proto3" json:"SysOrganId,omitempty"`
  188. UserPhone string `protobuf:"bytes,8,opt,name=UserPhone,proto3" json:"UserPhone,omitempty"`
  189. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  190. XXX_unrecognized []byte `json:"-"`
  191. XXX_sizecache int32 `json:"-"`
  192. }
  193. func (m *TokenResponse) Reset() { *m = TokenResponse{} }
  194. func (m *TokenResponse) String() string { return proto.CompactTextString(m) }
  195. func (*TokenResponse) ProtoMessage() {}
  196. func (*TokenResponse) Descriptor() ([]byte, []int) {
  197. return fileDescriptor_cb4a498eeb2ba07d, []int{3}
  198. }
  199. func (m *TokenResponse) XXX_Unmarshal(b []byte) error {
  200. return xxx_messageInfo_TokenResponse.Unmarshal(m, b)
  201. }
  202. func (m *TokenResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  203. return xxx_messageInfo_TokenResponse.Marshal(b, m, deterministic)
  204. }
  205. func (m *TokenResponse) XXX_Merge(src proto.Message) {
  206. xxx_messageInfo_TokenResponse.Merge(m, src)
  207. }
  208. func (m *TokenResponse) XXX_Size() int {
  209. return xxx_messageInfo_TokenResponse.Size(m)
  210. }
  211. func (m *TokenResponse) XXX_DiscardUnknown() {
  212. xxx_messageInfo_TokenResponse.DiscardUnknown(m)
  213. }
  214. var xxx_messageInfo_TokenResponse proto.InternalMessageInfo
  215. func (m *TokenResponse) GetUserId() string {
  216. if m != nil {
  217. return m.UserId
  218. }
  219. return ""
  220. }
  221. func (m *TokenResponse) GetUserRoleIds() string {
  222. if m != nil {
  223. return m.UserRoleIds
  224. }
  225. return ""
  226. }
  227. func (m *TokenResponse) GetUserSchoolIds() string {
  228. if m != nil {
  229. return m.UserSchoolIds
  230. }
  231. return ""
  232. }
  233. func (m *TokenResponse) GetUserProvinceIds() string {
  234. if m != nil {
  235. return m.UserProvinceIds
  236. }
  237. return ""
  238. }
  239. func (m *TokenResponse) GetUserOrganIds() string {
  240. if m != nil {
  241. return m.UserOrganIds
  242. }
  243. return ""
  244. }
  245. func (m *TokenResponse) GetSysSchoolId() string {
  246. if m != nil {
  247. return m.SysSchoolId
  248. }
  249. return ""
  250. }
  251. func (m *TokenResponse) GetSysOrganId() string {
  252. if m != nil {
  253. return m.SysOrganId
  254. }
  255. return ""
  256. }
  257. func (m *TokenResponse) GetUserPhone() string {
  258. if m != nil {
  259. return m.UserPhone
  260. }
  261. return ""
  262. }
  263. type Empty struct {
  264. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  265. XXX_unrecognized []byte `json:"-"`
  266. XXX_sizecache int32 `json:"-"`
  267. }
  268. func (m *Empty) Reset() { *m = Empty{} }
  269. func (m *Empty) String() string { return proto.CompactTextString(m) }
  270. func (*Empty) ProtoMessage() {}
  271. func (*Empty) Descriptor() ([]byte, []int) {
  272. return fileDescriptor_cb4a498eeb2ba07d, []int{4}
  273. }
  274. func (m *Empty) XXX_Unmarshal(b []byte) error {
  275. return xxx_messageInfo_Empty.Unmarshal(m, b)
  276. }
  277. func (m *Empty) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  278. return xxx_messageInfo_Empty.Marshal(b, m, deterministic)
  279. }
  280. func (m *Empty) XXX_Merge(src proto.Message) {
  281. xxx_messageInfo_Empty.Merge(m, src)
  282. }
  283. func (m *Empty) XXX_Size() int {
  284. return xxx_messageInfo_Empty.Size(m)
  285. }
  286. func (m *Empty) XXX_DiscardUnknown() {
  287. xxx_messageInfo_Empty.DiscardUnknown(m)
  288. }
  289. var xxx_messageInfo_Empty proto.InternalMessageInfo
  290. type TreeNodes struct {
  291. Nodes []*TreeNode `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
  292. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  293. XXX_unrecognized []byte `json:"-"`
  294. XXX_sizecache int32 `json:"-"`
  295. }
  296. func (m *TreeNodes) Reset() { *m = TreeNodes{} }
  297. func (m *TreeNodes) String() string { return proto.CompactTextString(m) }
  298. func (*TreeNodes) ProtoMessage() {}
  299. func (*TreeNodes) Descriptor() ([]byte, []int) {
  300. return fileDescriptor_cb4a498eeb2ba07d, []int{5}
  301. }
  302. func (m *TreeNodes) XXX_Unmarshal(b []byte) error {
  303. return xxx_messageInfo_TreeNodes.Unmarshal(m, b)
  304. }
  305. func (m *TreeNodes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  306. return xxx_messageInfo_TreeNodes.Marshal(b, m, deterministic)
  307. }
  308. func (m *TreeNodes) XXX_Merge(src proto.Message) {
  309. xxx_messageInfo_TreeNodes.Merge(m, src)
  310. }
  311. func (m *TreeNodes) XXX_Size() int {
  312. return xxx_messageInfo_TreeNodes.Size(m)
  313. }
  314. func (m *TreeNodes) XXX_DiscardUnknown() {
  315. xxx_messageInfo_TreeNodes.DiscardUnknown(m)
  316. }
  317. var xxx_messageInfo_TreeNodes proto.InternalMessageInfo
  318. func (m *TreeNodes) GetNodes() []*TreeNode {
  319. if m != nil {
  320. return m.Nodes
  321. }
  322. return nil
  323. }
  324. type TreeNode struct {
  325. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  326. Text string `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
  327. Parent int64 `protobuf:"varint,3,opt,name=parent,proto3" json:"parent,omitempty"`
  328. Tag *Tag `protobuf:"bytes,4,opt,name=tag,proto3" json:"tag,omitempty"`
  329. Nodes []*TreeNode `protobuf:"bytes,5,rep,name=nodes,proto3" json:"nodes,omitempty"`
  330. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  331. XXX_unrecognized []byte `json:"-"`
  332. XXX_sizecache int32 `json:"-"`
  333. }
  334. func (m *TreeNode) Reset() { *m = TreeNode{} }
  335. func (m *TreeNode) String() string { return proto.CompactTextString(m) }
  336. func (*TreeNode) ProtoMessage() {}
  337. func (*TreeNode) Descriptor() ([]byte, []int) {
  338. return fileDescriptor_cb4a498eeb2ba07d, []int{6}
  339. }
  340. func (m *TreeNode) XXX_Unmarshal(b []byte) error {
  341. return xxx_messageInfo_TreeNode.Unmarshal(m, b)
  342. }
  343. func (m *TreeNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  344. return xxx_messageInfo_TreeNode.Marshal(b, m, deterministic)
  345. }
  346. func (m *TreeNode) XXX_Merge(src proto.Message) {
  347. xxx_messageInfo_TreeNode.Merge(m, src)
  348. }
  349. func (m *TreeNode) XXX_Size() int {
  350. return xxx_messageInfo_TreeNode.Size(m)
  351. }
  352. func (m *TreeNode) XXX_DiscardUnknown() {
  353. xxx_messageInfo_TreeNode.DiscardUnknown(m)
  354. }
  355. var xxx_messageInfo_TreeNode proto.InternalMessageInfo
  356. func (m *TreeNode) GetId() int64 {
  357. if m != nil {
  358. return m.Id
  359. }
  360. return 0
  361. }
  362. func (m *TreeNode) GetText() string {
  363. if m != nil {
  364. return m.Text
  365. }
  366. return ""
  367. }
  368. func (m *TreeNode) GetParent() int64 {
  369. if m != nil {
  370. return m.Parent
  371. }
  372. return 0
  373. }
  374. func (m *TreeNode) GetTag() *Tag {
  375. if m != nil {
  376. return m.Tag
  377. }
  378. return nil
  379. }
  380. func (m *TreeNode) GetNodes() []*TreeNode {
  381. if m != nil {
  382. return m.Nodes
  383. }
  384. return nil
  385. }
  386. type ErpMktNetWorkDetail struct {
  387. Nodes []*TreeNode `protobuf:"bytes,5,rep,name=nodes,proto3" json:"nodes,omitempty"`
  388. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  389. Text string `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
  390. Parent int64 `protobuf:"varint,3,opt,name=parent,proto3" json:"parent,omitempty"`
  391. Inheritance string `protobuf:"bytes,4,opt,name=inheritance,proto3" json:"inheritance,omitempty"`
  392. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  393. XXX_unrecognized []byte `json:"-"`
  394. XXX_sizecache int32 `json:"-"`
  395. }
  396. func (m *ErpMktNetWorkDetail) Reset() { *m = ErpMktNetWorkDetail{} }
  397. func (m *ErpMktNetWorkDetail) String() string { return proto.CompactTextString(m) }
  398. func (*ErpMktNetWorkDetail) ProtoMessage() {}
  399. func (*ErpMktNetWorkDetail) Descriptor() ([]byte, []int) {
  400. return fileDescriptor_cb4a498eeb2ba07d, []int{7}
  401. }
  402. func (m *ErpMktNetWorkDetail) XXX_Unmarshal(b []byte) error {
  403. return xxx_messageInfo_ErpMktNetWorkDetail.Unmarshal(m, b)
  404. }
  405. func (m *ErpMktNetWorkDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  406. return xxx_messageInfo_ErpMktNetWorkDetail.Marshal(b, m, deterministic)
  407. }
  408. func (m *ErpMktNetWorkDetail) XXX_Merge(src proto.Message) {
  409. xxx_messageInfo_ErpMktNetWorkDetail.Merge(m, src)
  410. }
  411. func (m *ErpMktNetWorkDetail) XXX_Size() int {
  412. return xxx_messageInfo_ErpMktNetWorkDetail.Size(m)
  413. }
  414. func (m *ErpMktNetWorkDetail) XXX_DiscardUnknown() {
  415. xxx_messageInfo_ErpMktNetWorkDetail.DiscardUnknown(m)
  416. }
  417. var xxx_messageInfo_ErpMktNetWorkDetail proto.InternalMessageInfo
  418. func (m *ErpMktNetWorkDetail) GetNodes() []*TreeNode {
  419. if m != nil {
  420. return m.Nodes
  421. }
  422. return nil
  423. }
  424. func (m *ErpMktNetWorkDetail) GetId() int64 {
  425. if m != nil {
  426. return m.Id
  427. }
  428. return 0
  429. }
  430. func (m *ErpMktNetWorkDetail) GetText() string {
  431. if m != nil {
  432. return m.Text
  433. }
  434. return ""
  435. }
  436. func (m *ErpMktNetWorkDetail) GetParent() int64 {
  437. if m != nil {
  438. return m.Parent
  439. }
  440. return 0
  441. }
  442. func (m *ErpMktNetWorkDetail) GetInheritance() string {
  443. if m != nil {
  444. return m.Inheritance
  445. }
  446. return ""
  447. }
  448. type ErpMktNetWorkDetailRes struct {
  449. Items []*ErpMktNetWorkDetail `protobuf:"bytes,5,rep,name=items,proto3" json:"items,omitempty"`
  450. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  451. XXX_unrecognized []byte `json:"-"`
  452. XXX_sizecache int32 `json:"-"`
  453. }
  454. func (m *ErpMktNetWorkDetailRes) Reset() { *m = ErpMktNetWorkDetailRes{} }
  455. func (m *ErpMktNetWorkDetailRes) String() string { return proto.CompactTextString(m) }
  456. func (*ErpMktNetWorkDetailRes) ProtoMessage() {}
  457. func (*ErpMktNetWorkDetailRes) Descriptor() ([]byte, []int) {
  458. return fileDescriptor_cb4a498eeb2ba07d, []int{8}
  459. }
  460. func (m *ErpMktNetWorkDetailRes) XXX_Unmarshal(b []byte) error {
  461. return xxx_messageInfo_ErpMktNetWorkDetailRes.Unmarshal(m, b)
  462. }
  463. func (m *ErpMktNetWorkDetailRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  464. return xxx_messageInfo_ErpMktNetWorkDetailRes.Marshal(b, m, deterministic)
  465. }
  466. func (m *ErpMktNetWorkDetailRes) XXX_Merge(src proto.Message) {
  467. xxx_messageInfo_ErpMktNetWorkDetailRes.Merge(m, src)
  468. }
  469. func (m *ErpMktNetWorkDetailRes) XXX_Size() int {
  470. return xxx_messageInfo_ErpMktNetWorkDetailRes.Size(m)
  471. }
  472. func (m *ErpMktNetWorkDetailRes) XXX_DiscardUnknown() {
  473. xxx_messageInfo_ErpMktNetWorkDetailRes.DiscardUnknown(m)
  474. }
  475. var xxx_messageInfo_ErpMktNetWorkDetailRes proto.InternalMessageInfo
  476. func (m *ErpMktNetWorkDetailRes) GetItems() []*ErpMktNetWorkDetail {
  477. if m != nil {
  478. return m.Items
  479. }
  480. return nil
  481. }
  482. type ErpMktNetWorkDetailReq struct {
  483. Ids string `protobuf:"bytes,1,opt,name=ids,proto3" json:"ids,omitempty"`
  484. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  485. XXX_unrecognized []byte `json:"-"`
  486. XXX_sizecache int32 `json:"-"`
  487. }
  488. func (m *ErpMktNetWorkDetailReq) Reset() { *m = ErpMktNetWorkDetailReq{} }
  489. func (m *ErpMktNetWorkDetailReq) String() string { return proto.CompactTextString(m) }
  490. func (*ErpMktNetWorkDetailReq) ProtoMessage() {}
  491. func (*ErpMktNetWorkDetailReq) Descriptor() ([]byte, []int) {
  492. return fileDescriptor_cb4a498eeb2ba07d, []int{9}
  493. }
  494. func (m *ErpMktNetWorkDetailReq) XXX_Unmarshal(b []byte) error {
  495. return xxx_messageInfo_ErpMktNetWorkDetailReq.Unmarshal(m, b)
  496. }
  497. func (m *ErpMktNetWorkDetailReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  498. return xxx_messageInfo_ErpMktNetWorkDetailReq.Marshal(b, m, deterministic)
  499. }
  500. func (m *ErpMktNetWorkDetailReq) XXX_Merge(src proto.Message) {
  501. xxx_messageInfo_ErpMktNetWorkDetailReq.Merge(m, src)
  502. }
  503. func (m *ErpMktNetWorkDetailReq) XXX_Size() int {
  504. return xxx_messageInfo_ErpMktNetWorkDetailReq.Size(m)
  505. }
  506. func (m *ErpMktNetWorkDetailReq) XXX_DiscardUnknown() {
  507. xxx_messageInfo_ErpMktNetWorkDetailReq.DiscardUnknown(m)
  508. }
  509. var xxx_messageInfo_ErpMktNetWorkDetailReq proto.InternalMessageInfo
  510. func (m *ErpMktNetWorkDetailReq) GetIds() string {
  511. if m != nil {
  512. return m.Ids
  513. }
  514. return ""
  515. }
  516. type Tag struct {
  517. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  518. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  519. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  520. XXX_unrecognized []byte `json:"-"`
  521. XXX_sizecache int32 `json:"-"`
  522. }
  523. func (m *Tag) Reset() { *m = Tag{} }
  524. func (m *Tag) String() string { return proto.CompactTextString(m) }
  525. func (*Tag) ProtoMessage() {}
  526. func (*Tag) Descriptor() ([]byte, []int) {
  527. return fileDescriptor_cb4a498eeb2ba07d, []int{10}
  528. }
  529. func (m *Tag) XXX_Unmarshal(b []byte) error {
  530. return xxx_messageInfo_Tag.Unmarshal(m, b)
  531. }
  532. func (m *Tag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  533. return xxx_messageInfo_Tag.Marshal(b, m, deterministic)
  534. }
  535. func (m *Tag) XXX_Merge(src proto.Message) {
  536. xxx_messageInfo_Tag.Merge(m, src)
  537. }
  538. func (m *Tag) XXX_Size() int {
  539. return xxx_messageInfo_Tag.Size(m)
  540. }
  541. func (m *Tag) XXX_DiscardUnknown() {
  542. xxx_messageInfo_Tag.DiscardUnknown(m)
  543. }
  544. var xxx_messageInfo_Tag proto.InternalMessageInfo
  545. func (m *Tag) GetId() int64 {
  546. if m != nil {
  547. return m.Id
  548. }
  549. return 0
  550. }
  551. func (m *Tag) GetName() string {
  552. if m != nil {
  553. return m.Name
  554. }
  555. return ""
  556. }
  557. type OptionsetReq struct {
  558. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  559. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  560. XXX_unrecognized []byte `json:"-"`
  561. XXX_sizecache int32 `json:"-"`
  562. }
  563. func (m *OptionsetReq) Reset() { *m = OptionsetReq{} }
  564. func (m *OptionsetReq) String() string { return proto.CompactTextString(m) }
  565. func (*OptionsetReq) ProtoMessage() {}
  566. func (*OptionsetReq) Descriptor() ([]byte, []int) {
  567. return fileDescriptor_cb4a498eeb2ba07d, []int{11}
  568. }
  569. func (m *OptionsetReq) XXX_Unmarshal(b []byte) error {
  570. return xxx_messageInfo_OptionsetReq.Unmarshal(m, b)
  571. }
  572. func (m *OptionsetReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  573. return xxx_messageInfo_OptionsetReq.Marshal(b, m, deterministic)
  574. }
  575. func (m *OptionsetReq) XXX_Merge(src proto.Message) {
  576. xxx_messageInfo_OptionsetReq.Merge(m, src)
  577. }
  578. func (m *OptionsetReq) XXX_Size() int {
  579. return xxx_messageInfo_OptionsetReq.Size(m)
  580. }
  581. func (m *OptionsetReq) XXX_DiscardUnknown() {
  582. xxx_messageInfo_OptionsetReq.DiscardUnknown(m)
  583. }
  584. var xxx_messageInfo_OptionsetReq proto.InternalMessageInfo
  585. func (m *OptionsetReq) GetCode() string {
  586. if m != nil {
  587. return m.Code
  588. }
  589. return ""
  590. }
  591. type OptionsetRes struct {
  592. 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"`
  593. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  594. XXX_unrecognized []byte `json:"-"`
  595. XXX_sizecache int32 `json:"-"`
  596. }
  597. func (m *OptionsetRes) Reset() { *m = OptionsetRes{} }
  598. func (m *OptionsetRes) String() string { return proto.CompactTextString(m) }
  599. func (*OptionsetRes) ProtoMessage() {}
  600. func (*OptionsetRes) Descriptor() ([]byte, []int) {
  601. return fileDescriptor_cb4a498eeb2ba07d, []int{12}
  602. }
  603. func (m *OptionsetRes) XXX_Unmarshal(b []byte) error {
  604. return xxx_messageInfo_OptionsetRes.Unmarshal(m, b)
  605. }
  606. func (m *OptionsetRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  607. return xxx_messageInfo_OptionsetRes.Marshal(b, m, deterministic)
  608. }
  609. func (m *OptionsetRes) XXX_Merge(src proto.Message) {
  610. xxx_messageInfo_OptionsetRes.Merge(m, src)
  611. }
  612. func (m *OptionsetRes) XXX_Size() int {
  613. return xxx_messageInfo_OptionsetRes.Size(m)
  614. }
  615. func (m *OptionsetRes) XXX_DiscardUnknown() {
  616. xxx_messageInfo_OptionsetRes.DiscardUnknown(m)
  617. }
  618. var xxx_messageInfo_OptionsetRes proto.InternalMessageInfo
  619. func (m *OptionsetRes) GetMapList() map[string]string {
  620. if m != nil {
  621. return m.MapList
  622. }
  623. return nil
  624. }
  625. type OptionCode struct {
  626. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  627. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  628. XXX_unrecognized []byte `json:"-"`
  629. XXX_sizecache int32 `json:"-"`
  630. }
  631. func (m *OptionCode) Reset() { *m = OptionCode{} }
  632. func (m *OptionCode) String() string { return proto.CompactTextString(m) }
  633. func (*OptionCode) ProtoMessage() {}
  634. func (*OptionCode) Descriptor() ([]byte, []int) {
  635. return fileDescriptor_cb4a498eeb2ba07d, []int{13}
  636. }
  637. func (m *OptionCode) XXX_Unmarshal(b []byte) error {
  638. return xxx_messageInfo_OptionCode.Unmarshal(m, b)
  639. }
  640. func (m *OptionCode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  641. return xxx_messageInfo_OptionCode.Marshal(b, m, deterministic)
  642. }
  643. func (m *OptionCode) XXX_Merge(src proto.Message) {
  644. xxx_messageInfo_OptionCode.Merge(m, src)
  645. }
  646. func (m *OptionCode) XXX_Size() int {
  647. return xxx_messageInfo_OptionCode.Size(m)
  648. }
  649. func (m *OptionCode) XXX_DiscardUnknown() {
  650. xxx_messageInfo_OptionCode.DiscardUnknown(m)
  651. }
  652. var xxx_messageInfo_OptionCode proto.InternalMessageInfo
  653. func (m *OptionCode) GetCode() string {
  654. if m != nil {
  655. return m.Code
  656. }
  657. return ""
  658. }
  659. type Options struct {
  660. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  661. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  662. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  663. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  664. XXX_unrecognized []byte `json:"-"`
  665. XXX_sizecache int32 `json:"-"`
  666. }
  667. func (m *Options) Reset() { *m = Options{} }
  668. func (m *Options) String() string { return proto.CompactTextString(m) }
  669. func (*Options) ProtoMessage() {}
  670. func (*Options) Descriptor() ([]byte, []int) {
  671. return fileDescriptor_cb4a498eeb2ba07d, []int{14}
  672. }
  673. func (m *Options) XXX_Unmarshal(b []byte) error {
  674. return xxx_messageInfo_Options.Unmarshal(m, b)
  675. }
  676. func (m *Options) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  677. return xxx_messageInfo_Options.Marshal(b, m, deterministic)
  678. }
  679. func (m *Options) XXX_Merge(src proto.Message) {
  680. xxx_messageInfo_Options.Merge(m, src)
  681. }
  682. func (m *Options) XXX_Size() int {
  683. return xxx_messageInfo_Options.Size(m)
  684. }
  685. func (m *Options) XXX_DiscardUnknown() {
  686. xxx_messageInfo_Options.DiscardUnknown(m)
  687. }
  688. var xxx_messageInfo_Options proto.InternalMessageInfo
  689. func (m *Options) GetCode() string {
  690. if m != nil {
  691. return m.Code
  692. }
  693. return ""
  694. }
  695. func (m *Options) GetName() string {
  696. if m != nil {
  697. return m.Name
  698. }
  699. return ""
  700. }
  701. func (m *Options) GetValue() string {
  702. if m != nil {
  703. return m.Value
  704. }
  705. return ""
  706. }
  707. type ResponseByte struct {
  708. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  709. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  710. XXX_unrecognized []byte `json:"-"`
  711. XXX_sizecache int32 `json:"-"`
  712. }
  713. func (m *ResponseByte) Reset() { *m = ResponseByte{} }
  714. func (m *ResponseByte) String() string { return proto.CompactTextString(m) }
  715. func (*ResponseByte) ProtoMessage() {}
  716. func (*ResponseByte) Descriptor() ([]byte, []int) {
  717. return fileDescriptor_cb4a498eeb2ba07d, []int{15}
  718. }
  719. func (m *ResponseByte) XXX_Unmarshal(b []byte) error {
  720. return xxx_messageInfo_ResponseByte.Unmarshal(m, b)
  721. }
  722. func (m *ResponseByte) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  723. return xxx_messageInfo_ResponseByte.Marshal(b, m, deterministic)
  724. }
  725. func (m *ResponseByte) XXX_Merge(src proto.Message) {
  726. xxx_messageInfo_ResponseByte.Merge(m, src)
  727. }
  728. func (m *ResponseByte) XXX_Size() int {
  729. return xxx_messageInfo_ResponseByte.Size(m)
  730. }
  731. func (m *ResponseByte) XXX_DiscardUnknown() {
  732. xxx_messageInfo_ResponseByte.DiscardUnknown(m)
  733. }
  734. var xxx_messageInfo_ResponseByte proto.InternalMessageInfo
  735. func (m *ResponseByte) GetData() []byte {
  736. if m != nil {
  737. return m.Data
  738. }
  739. return nil
  740. }
  741. type ExcelLogReq struct {
  742. Module string `protobuf:"bytes,1,opt,name=Module,proto3" json:"Module,omitempty"`
  743. Cond string `protobuf:"bytes,2,opt,name=Cond,proto3" json:"Cond,omitempty"`
  744. CreateBy string `protobuf:"bytes,3,opt,name=CreateBy,proto3" json:"CreateBy,omitempty"`
  745. CreateTime string `protobuf:"bytes,4,opt,name=CreateTime,proto3" json:"CreateTime,omitempty"`
  746. LastUpdateBy string `protobuf:"bytes,5,opt,name=LastUpdateBy,proto3" json:"LastUpdateBy,omitempty"`
  747. LastUpdateTime string `protobuf:"bytes,6,opt,name=LastUpdateTime,proto3" json:"LastUpdateTime,omitempty"`
  748. DelFlag string `protobuf:"bytes,7,opt,name=DelFlag,proto3" json:"DelFlag,omitempty"`
  749. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  750. XXX_unrecognized []byte `json:"-"`
  751. XXX_sizecache int32 `json:"-"`
  752. }
  753. func (m *ExcelLogReq) Reset() { *m = ExcelLogReq{} }
  754. func (m *ExcelLogReq) String() string { return proto.CompactTextString(m) }
  755. func (*ExcelLogReq) ProtoMessage() {}
  756. func (*ExcelLogReq) Descriptor() ([]byte, []int) {
  757. return fileDescriptor_cb4a498eeb2ba07d, []int{16}
  758. }
  759. func (m *ExcelLogReq) XXX_Unmarshal(b []byte) error {
  760. return xxx_messageInfo_ExcelLogReq.Unmarshal(m, b)
  761. }
  762. func (m *ExcelLogReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  763. return xxx_messageInfo_ExcelLogReq.Marshal(b, m, deterministic)
  764. }
  765. func (m *ExcelLogReq) XXX_Merge(src proto.Message) {
  766. xxx_messageInfo_ExcelLogReq.Merge(m, src)
  767. }
  768. func (m *ExcelLogReq) XXX_Size() int {
  769. return xxx_messageInfo_ExcelLogReq.Size(m)
  770. }
  771. func (m *ExcelLogReq) XXX_DiscardUnknown() {
  772. xxx_messageInfo_ExcelLogReq.DiscardUnknown(m)
  773. }
  774. var xxx_messageInfo_ExcelLogReq proto.InternalMessageInfo
  775. func (m *ExcelLogReq) GetModule() string {
  776. if m != nil {
  777. return m.Module
  778. }
  779. return ""
  780. }
  781. func (m *ExcelLogReq) GetCond() string {
  782. if m != nil {
  783. return m.Cond
  784. }
  785. return ""
  786. }
  787. func (m *ExcelLogReq) GetCreateBy() string {
  788. if m != nil {
  789. return m.CreateBy
  790. }
  791. return ""
  792. }
  793. func (m *ExcelLogReq) GetCreateTime() string {
  794. if m != nil {
  795. return m.CreateTime
  796. }
  797. return ""
  798. }
  799. func (m *ExcelLogReq) GetLastUpdateBy() string {
  800. if m != nil {
  801. return m.LastUpdateBy
  802. }
  803. return ""
  804. }
  805. func (m *ExcelLogReq) GetLastUpdateTime() string {
  806. if m != nil {
  807. return m.LastUpdateTime
  808. }
  809. return ""
  810. }
  811. func (m *ExcelLogReq) GetDelFlag() string {
  812. if m != nil {
  813. return m.DelFlag
  814. }
  815. return ""
  816. }
  817. type ExcelLogRes struct {
  818. Status int64 `protobuf:"varint,1,opt,name=Status,proto3" json:"Status,omitempty"`
  819. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  820. XXX_unrecognized []byte `json:"-"`
  821. XXX_sizecache int32 `json:"-"`
  822. }
  823. func (m *ExcelLogRes) Reset() { *m = ExcelLogRes{} }
  824. func (m *ExcelLogRes) String() string { return proto.CompactTextString(m) }
  825. func (*ExcelLogRes) ProtoMessage() {}
  826. func (*ExcelLogRes) Descriptor() ([]byte, []int) {
  827. return fileDescriptor_cb4a498eeb2ba07d, []int{17}
  828. }
  829. func (m *ExcelLogRes) XXX_Unmarshal(b []byte) error {
  830. return xxx_messageInfo_ExcelLogRes.Unmarshal(m, b)
  831. }
  832. func (m *ExcelLogRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  833. return xxx_messageInfo_ExcelLogRes.Marshal(b, m, deterministic)
  834. }
  835. func (m *ExcelLogRes) XXX_Merge(src proto.Message) {
  836. xxx_messageInfo_ExcelLogRes.Merge(m, src)
  837. }
  838. func (m *ExcelLogRes) XXX_Size() int {
  839. return xxx_messageInfo_ExcelLogRes.Size(m)
  840. }
  841. func (m *ExcelLogRes) XXX_DiscardUnknown() {
  842. xxx_messageInfo_ExcelLogRes.DiscardUnknown(m)
  843. }
  844. var xxx_messageInfo_ExcelLogRes proto.InternalMessageInfo
  845. func (m *ExcelLogRes) GetStatus() int64 {
  846. if m != nil {
  847. return m.Status
  848. }
  849. return 0
  850. }
  851. type SchoolIdsReq struct {
  852. Names []string `protobuf:"bytes,1,rep,name=names,proto3" json:"names,omitempty"`
  853. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  854. XXX_unrecognized []byte `json:"-"`
  855. XXX_sizecache int32 `json:"-"`
  856. }
  857. func (m *SchoolIdsReq) Reset() { *m = SchoolIdsReq{} }
  858. func (m *SchoolIdsReq) String() string { return proto.CompactTextString(m) }
  859. func (*SchoolIdsReq) ProtoMessage() {}
  860. func (*SchoolIdsReq) Descriptor() ([]byte, []int) {
  861. return fileDescriptor_cb4a498eeb2ba07d, []int{18}
  862. }
  863. func (m *SchoolIdsReq) XXX_Unmarshal(b []byte) error {
  864. return xxx_messageInfo_SchoolIdsReq.Unmarshal(m, b)
  865. }
  866. func (m *SchoolIdsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  867. return xxx_messageInfo_SchoolIdsReq.Marshal(b, m, deterministic)
  868. }
  869. func (m *SchoolIdsReq) XXX_Merge(src proto.Message) {
  870. xxx_messageInfo_SchoolIdsReq.Merge(m, src)
  871. }
  872. func (m *SchoolIdsReq) XXX_Size() int {
  873. return xxx_messageInfo_SchoolIdsReq.Size(m)
  874. }
  875. func (m *SchoolIdsReq) XXX_DiscardUnknown() {
  876. xxx_messageInfo_SchoolIdsReq.DiscardUnknown(m)
  877. }
  878. var xxx_messageInfo_SchoolIdsReq proto.InternalMessageInfo
  879. func (m *SchoolIdsReq) GetNames() []string {
  880. if m != nil {
  881. return m.Names
  882. }
  883. return nil
  884. }
  885. type ListOfInt struct {
  886. Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
  887. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  888. XXX_unrecognized []byte `json:"-"`
  889. XXX_sizecache int32 `json:"-"`
  890. }
  891. func (m *ListOfInt) Reset() { *m = ListOfInt{} }
  892. func (m *ListOfInt) String() string { return proto.CompactTextString(m) }
  893. func (*ListOfInt) ProtoMessage() {}
  894. func (*ListOfInt) Descriptor() ([]byte, []int) {
  895. return fileDescriptor_cb4a498eeb2ba07d, []int{19}
  896. }
  897. func (m *ListOfInt) XXX_Unmarshal(b []byte) error {
  898. return xxx_messageInfo_ListOfInt.Unmarshal(m, b)
  899. }
  900. func (m *ListOfInt) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  901. return xxx_messageInfo_ListOfInt.Marshal(b, m, deterministic)
  902. }
  903. func (m *ListOfInt) XXX_Merge(src proto.Message) {
  904. xxx_messageInfo_ListOfInt.Merge(m, src)
  905. }
  906. func (m *ListOfInt) XXX_Size() int {
  907. return xxx_messageInfo_ListOfInt.Size(m)
  908. }
  909. func (m *ListOfInt) XXX_DiscardUnknown() {
  910. xxx_messageInfo_ListOfInt.DiscardUnknown(m)
  911. }
  912. var xxx_messageInfo_ListOfInt proto.InternalMessageInfo
  913. func (m *ListOfInt) GetIds() []int64 {
  914. if m != nil {
  915. return m.Ids
  916. }
  917. return nil
  918. }
  919. type SchoolIdsRes struct {
  920. 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"`
  921. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  922. XXX_unrecognized []byte `json:"-"`
  923. XXX_sizecache int32 `json:"-"`
  924. }
  925. func (m *SchoolIdsRes) Reset() { *m = SchoolIdsRes{} }
  926. func (m *SchoolIdsRes) String() string { return proto.CompactTextString(m) }
  927. func (*SchoolIdsRes) ProtoMessage() {}
  928. func (*SchoolIdsRes) Descriptor() ([]byte, []int) {
  929. return fileDescriptor_cb4a498eeb2ba07d, []int{20}
  930. }
  931. func (m *SchoolIdsRes) XXX_Unmarshal(b []byte) error {
  932. return xxx_messageInfo_SchoolIdsRes.Unmarshal(m, b)
  933. }
  934. func (m *SchoolIdsRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  935. return xxx_messageInfo_SchoolIdsRes.Marshal(b, m, deterministic)
  936. }
  937. func (m *SchoolIdsRes) XXX_Merge(src proto.Message) {
  938. xxx_messageInfo_SchoolIdsRes.Merge(m, src)
  939. }
  940. func (m *SchoolIdsRes) XXX_Size() int {
  941. return xxx_messageInfo_SchoolIdsRes.Size(m)
  942. }
  943. func (m *SchoolIdsRes) XXX_DiscardUnknown() {
  944. xxx_messageInfo_SchoolIdsRes.DiscardUnknown(m)
  945. }
  946. var xxx_messageInfo_SchoolIdsRes proto.InternalMessageInfo
  947. func (m *SchoolIdsRes) GetMapList() map[string]int64 {
  948. if m != nil {
  949. return m.MapList
  950. }
  951. return nil
  952. }
  953. type CityIdsReq struct {
  954. Names string `protobuf:"bytes,1,opt,name=names,proto3" json:"names,omitempty"`
  955. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  956. XXX_unrecognized []byte `json:"-"`
  957. XXX_sizecache int32 `json:"-"`
  958. }
  959. func (m *CityIdsReq) Reset() { *m = CityIdsReq{} }
  960. func (m *CityIdsReq) String() string { return proto.CompactTextString(m) }
  961. func (*CityIdsReq) ProtoMessage() {}
  962. func (*CityIdsReq) Descriptor() ([]byte, []int) {
  963. return fileDescriptor_cb4a498eeb2ba07d, []int{21}
  964. }
  965. func (m *CityIdsReq) XXX_Unmarshal(b []byte) error {
  966. return xxx_messageInfo_CityIdsReq.Unmarshal(m, b)
  967. }
  968. func (m *CityIdsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  969. return xxx_messageInfo_CityIdsReq.Marshal(b, m, deterministic)
  970. }
  971. func (m *CityIdsReq) XXX_Merge(src proto.Message) {
  972. xxx_messageInfo_CityIdsReq.Merge(m, src)
  973. }
  974. func (m *CityIdsReq) XXX_Size() int {
  975. return xxx_messageInfo_CityIdsReq.Size(m)
  976. }
  977. func (m *CityIdsReq) XXX_DiscardUnknown() {
  978. xxx_messageInfo_CityIdsReq.DiscardUnknown(m)
  979. }
  980. var xxx_messageInfo_CityIdsReq proto.InternalMessageInfo
  981. func (m *CityIdsReq) GetNames() string {
  982. if m != nil {
  983. return m.Names
  984. }
  985. return ""
  986. }
  987. type CityIdsRes struct {
  988. 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"`
  989. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  990. XXX_unrecognized []byte `json:"-"`
  991. XXX_sizecache int32 `json:"-"`
  992. }
  993. func (m *CityIdsRes) Reset() { *m = CityIdsRes{} }
  994. func (m *CityIdsRes) String() string { return proto.CompactTextString(m) }
  995. func (*CityIdsRes) ProtoMessage() {}
  996. func (*CityIdsRes) Descriptor() ([]byte, []int) {
  997. return fileDescriptor_cb4a498eeb2ba07d, []int{22}
  998. }
  999. func (m *CityIdsRes) XXX_Unmarshal(b []byte) error {
  1000. return xxx_messageInfo_CityIdsRes.Unmarshal(m, b)
  1001. }
  1002. func (m *CityIdsRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1003. return xxx_messageInfo_CityIdsRes.Marshal(b, m, deterministic)
  1004. }
  1005. func (m *CityIdsRes) XXX_Merge(src proto.Message) {
  1006. xxx_messageInfo_CityIdsRes.Merge(m, src)
  1007. }
  1008. func (m *CityIdsRes) XXX_Size() int {
  1009. return xxx_messageInfo_CityIdsRes.Size(m)
  1010. }
  1011. func (m *CityIdsRes) XXX_DiscardUnknown() {
  1012. xxx_messageInfo_CityIdsRes.DiscardUnknown(m)
  1013. }
  1014. var xxx_messageInfo_CityIdsRes proto.InternalMessageInfo
  1015. func (m *CityIdsRes) GetMapList() map[string]int64 {
  1016. if m != nil {
  1017. return m.MapList
  1018. }
  1019. return nil
  1020. }
  1021. type BytesReq struct {
  1022. Req []byte `protobuf:"bytes,1,opt,name=req,proto3" json:"req,omitempty"`
  1023. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1024. XXX_unrecognized []byte `json:"-"`
  1025. XXX_sizecache int32 `json:"-"`
  1026. }
  1027. func (m *BytesReq) Reset() { *m = BytesReq{} }
  1028. func (m *BytesReq) String() string { return proto.CompactTextString(m) }
  1029. func (*BytesReq) ProtoMessage() {}
  1030. func (*BytesReq) Descriptor() ([]byte, []int) {
  1031. return fileDescriptor_cb4a498eeb2ba07d, []int{23}
  1032. }
  1033. func (m *BytesReq) XXX_Unmarshal(b []byte) error {
  1034. return xxx_messageInfo_BytesReq.Unmarshal(m, b)
  1035. }
  1036. func (m *BytesReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1037. return xxx_messageInfo_BytesReq.Marshal(b, m, deterministic)
  1038. }
  1039. func (m *BytesReq) XXX_Merge(src proto.Message) {
  1040. xxx_messageInfo_BytesReq.Merge(m, src)
  1041. }
  1042. func (m *BytesReq) XXX_Size() int {
  1043. return xxx_messageInfo_BytesReq.Size(m)
  1044. }
  1045. func (m *BytesReq) XXX_DiscardUnknown() {
  1046. xxx_messageInfo_BytesReq.DiscardUnknown(m)
  1047. }
  1048. var xxx_messageInfo_BytesReq proto.InternalMessageInfo
  1049. func (m *BytesReq) GetReq() []byte {
  1050. if m != nil {
  1051. return m.Req
  1052. }
  1053. return nil
  1054. }
  1055. type BytesResp struct {
  1056. Resp []byte `protobuf:"bytes,1,opt,name=resp,proto3" json:"resp,omitempty"`
  1057. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1058. XXX_unrecognized []byte `json:"-"`
  1059. XXX_sizecache int32 `json:"-"`
  1060. }
  1061. func (m *BytesResp) Reset() { *m = BytesResp{} }
  1062. func (m *BytesResp) String() string { return proto.CompactTextString(m) }
  1063. func (*BytesResp) ProtoMessage() {}
  1064. func (*BytesResp) Descriptor() ([]byte, []int) {
  1065. return fileDescriptor_cb4a498eeb2ba07d, []int{24}
  1066. }
  1067. func (m *BytesResp) XXX_Unmarshal(b []byte) error {
  1068. return xxx_messageInfo_BytesResp.Unmarshal(m, b)
  1069. }
  1070. func (m *BytesResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1071. return xxx_messageInfo_BytesResp.Marshal(b, m, deterministic)
  1072. }
  1073. func (m *BytesResp) XXX_Merge(src proto.Message) {
  1074. xxx_messageInfo_BytesResp.Merge(m, src)
  1075. }
  1076. func (m *BytesResp) XXX_Size() int {
  1077. return xxx_messageInfo_BytesResp.Size(m)
  1078. }
  1079. func (m *BytesResp) XXX_DiscardUnknown() {
  1080. xxx_messageInfo_BytesResp.DiscardUnknown(m)
  1081. }
  1082. var xxx_messageInfo_BytesResp proto.InternalMessageInfo
  1083. func (m *BytesResp) GetResp() []byte {
  1084. if m != nil {
  1085. return m.Resp
  1086. }
  1087. return nil
  1088. }
  1089. type GetErpRoleRes struct {
  1090. UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1091. Role string `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
  1092. SchId int64 `protobuf:"varint,3,opt,name=sch_id,json=schId,proto3" json:"sch_id,omitempty"`
  1093. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1094. XXX_unrecognized []byte `json:"-"`
  1095. XXX_sizecache int32 `json:"-"`
  1096. }
  1097. func (m *GetErpRoleRes) Reset() { *m = GetErpRoleRes{} }
  1098. func (m *GetErpRoleRes) String() string { return proto.CompactTextString(m) }
  1099. func (*GetErpRoleRes) ProtoMessage() {}
  1100. func (*GetErpRoleRes) Descriptor() ([]byte, []int) {
  1101. return fileDescriptor_cb4a498eeb2ba07d, []int{25}
  1102. }
  1103. func (m *GetErpRoleRes) XXX_Unmarshal(b []byte) error {
  1104. return xxx_messageInfo_GetErpRoleRes.Unmarshal(m, b)
  1105. }
  1106. func (m *GetErpRoleRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1107. return xxx_messageInfo_GetErpRoleRes.Marshal(b, m, deterministic)
  1108. }
  1109. func (m *GetErpRoleRes) XXX_Merge(src proto.Message) {
  1110. xxx_messageInfo_GetErpRoleRes.Merge(m, src)
  1111. }
  1112. func (m *GetErpRoleRes) XXX_Size() int {
  1113. return xxx_messageInfo_GetErpRoleRes.Size(m)
  1114. }
  1115. func (m *GetErpRoleRes) XXX_DiscardUnknown() {
  1116. xxx_messageInfo_GetErpRoleRes.DiscardUnknown(m)
  1117. }
  1118. var xxx_messageInfo_GetErpRoleRes proto.InternalMessageInfo
  1119. func (m *GetErpRoleRes) GetUserId() string {
  1120. if m != nil {
  1121. return m.UserId
  1122. }
  1123. return ""
  1124. }
  1125. func (m *GetErpRoleRes) GetRole() string {
  1126. if m != nil {
  1127. return m.Role
  1128. }
  1129. return ""
  1130. }
  1131. func (m *GetErpRoleRes) GetSchId() int64 {
  1132. if m != nil {
  1133. return m.SchId
  1134. }
  1135. return 0
  1136. }
  1137. type GetErpRoleReq struct {
  1138. Mobile string `protobuf:"bytes,1,opt,name=mobile,proto3" json:"mobile,omitempty"`
  1139. UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1140. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1141. XXX_unrecognized []byte `json:"-"`
  1142. XXX_sizecache int32 `json:"-"`
  1143. }
  1144. func (m *GetErpRoleReq) Reset() { *m = GetErpRoleReq{} }
  1145. func (m *GetErpRoleReq) String() string { return proto.CompactTextString(m) }
  1146. func (*GetErpRoleReq) ProtoMessage() {}
  1147. func (*GetErpRoleReq) Descriptor() ([]byte, []int) {
  1148. return fileDescriptor_cb4a498eeb2ba07d, []int{26}
  1149. }
  1150. func (m *GetErpRoleReq) XXX_Unmarshal(b []byte) error {
  1151. return xxx_messageInfo_GetErpRoleReq.Unmarshal(m, b)
  1152. }
  1153. func (m *GetErpRoleReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1154. return xxx_messageInfo_GetErpRoleReq.Marshal(b, m, deterministic)
  1155. }
  1156. func (m *GetErpRoleReq) XXX_Merge(src proto.Message) {
  1157. xxx_messageInfo_GetErpRoleReq.Merge(m, src)
  1158. }
  1159. func (m *GetErpRoleReq) XXX_Size() int {
  1160. return xxx_messageInfo_GetErpRoleReq.Size(m)
  1161. }
  1162. func (m *GetErpRoleReq) XXX_DiscardUnknown() {
  1163. xxx_messageInfo_GetErpRoleReq.DiscardUnknown(m)
  1164. }
  1165. var xxx_messageInfo_GetErpRoleReq proto.InternalMessageInfo
  1166. func (m *GetErpRoleReq) GetMobile() string {
  1167. if m != nil {
  1168. return m.Mobile
  1169. }
  1170. return ""
  1171. }
  1172. func (m *GetErpRoleReq) GetUserId() string {
  1173. if m != nil {
  1174. return m.UserId
  1175. }
  1176. return ""
  1177. }
  1178. type GetErpOrganSchPerByUserIdReq struct {
  1179. UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1180. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1181. XXX_unrecognized []byte `json:"-"`
  1182. XXX_sizecache int32 `json:"-"`
  1183. }
  1184. func (m *GetErpOrganSchPerByUserIdReq) Reset() { *m = GetErpOrganSchPerByUserIdReq{} }
  1185. func (m *GetErpOrganSchPerByUserIdReq) String() string { return proto.CompactTextString(m) }
  1186. func (*GetErpOrganSchPerByUserIdReq) ProtoMessage() {}
  1187. func (*GetErpOrganSchPerByUserIdReq) Descriptor() ([]byte, []int) {
  1188. return fileDescriptor_cb4a498eeb2ba07d, []int{27}
  1189. }
  1190. func (m *GetErpOrganSchPerByUserIdReq) XXX_Unmarshal(b []byte) error {
  1191. return xxx_messageInfo_GetErpOrganSchPerByUserIdReq.Unmarshal(m, b)
  1192. }
  1193. func (m *GetErpOrganSchPerByUserIdReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1194. return xxx_messageInfo_GetErpOrganSchPerByUserIdReq.Marshal(b, m, deterministic)
  1195. }
  1196. func (m *GetErpOrganSchPerByUserIdReq) XXX_Merge(src proto.Message) {
  1197. xxx_messageInfo_GetErpOrganSchPerByUserIdReq.Merge(m, src)
  1198. }
  1199. func (m *GetErpOrganSchPerByUserIdReq) XXX_Size() int {
  1200. return xxx_messageInfo_GetErpOrganSchPerByUserIdReq.Size(m)
  1201. }
  1202. func (m *GetErpOrganSchPerByUserIdReq) XXX_DiscardUnknown() {
  1203. xxx_messageInfo_GetErpOrganSchPerByUserIdReq.DiscardUnknown(m)
  1204. }
  1205. var xxx_messageInfo_GetErpOrganSchPerByUserIdReq proto.InternalMessageInfo
  1206. func (m *GetErpOrganSchPerByUserIdReq) GetUserId() string {
  1207. if m != nil {
  1208. return m.UserId
  1209. }
  1210. return ""
  1211. }
  1212. type GetErpOrganSchPerByUserIdRes struct {
  1213. School []*OrganSchool `protobuf:"bytes,1,rep,name=school,proto3" json:"school,omitempty"`
  1214. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1215. XXX_unrecognized []byte `json:"-"`
  1216. XXX_sizecache int32 `json:"-"`
  1217. }
  1218. func (m *GetErpOrganSchPerByUserIdRes) Reset() { *m = GetErpOrganSchPerByUserIdRes{} }
  1219. func (m *GetErpOrganSchPerByUserIdRes) String() string { return proto.CompactTextString(m) }
  1220. func (*GetErpOrganSchPerByUserIdRes) ProtoMessage() {}
  1221. func (*GetErpOrganSchPerByUserIdRes) Descriptor() ([]byte, []int) {
  1222. return fileDescriptor_cb4a498eeb2ba07d, []int{28}
  1223. }
  1224. func (m *GetErpOrganSchPerByUserIdRes) XXX_Unmarshal(b []byte) error {
  1225. return xxx_messageInfo_GetErpOrganSchPerByUserIdRes.Unmarshal(m, b)
  1226. }
  1227. func (m *GetErpOrganSchPerByUserIdRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1228. return xxx_messageInfo_GetErpOrganSchPerByUserIdRes.Marshal(b, m, deterministic)
  1229. }
  1230. func (m *GetErpOrganSchPerByUserIdRes) XXX_Merge(src proto.Message) {
  1231. xxx_messageInfo_GetErpOrganSchPerByUserIdRes.Merge(m, src)
  1232. }
  1233. func (m *GetErpOrganSchPerByUserIdRes) XXX_Size() int {
  1234. return xxx_messageInfo_GetErpOrganSchPerByUserIdRes.Size(m)
  1235. }
  1236. func (m *GetErpOrganSchPerByUserIdRes) XXX_DiscardUnknown() {
  1237. xxx_messageInfo_GetErpOrganSchPerByUserIdRes.DiscardUnknown(m)
  1238. }
  1239. var xxx_messageInfo_GetErpOrganSchPerByUserIdRes proto.InternalMessageInfo
  1240. func (m *GetErpOrganSchPerByUserIdRes) GetSchool() []*OrganSchool {
  1241. if m != nil {
  1242. return m.School
  1243. }
  1244. return nil
  1245. }
  1246. type OrganSchool struct {
  1247. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1248. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  1249. OrganId int64 `protobuf:"varint,3,opt,name=organ_id,json=organId,proto3" json:"organ_id,omitempty"`
  1250. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1251. XXX_unrecognized []byte `json:"-"`
  1252. XXX_sizecache int32 `json:"-"`
  1253. }
  1254. func (m *OrganSchool) Reset() { *m = OrganSchool{} }
  1255. func (m *OrganSchool) String() string { return proto.CompactTextString(m) }
  1256. func (*OrganSchool) ProtoMessage() {}
  1257. func (*OrganSchool) Descriptor() ([]byte, []int) {
  1258. return fileDescriptor_cb4a498eeb2ba07d, []int{29}
  1259. }
  1260. func (m *OrganSchool) XXX_Unmarshal(b []byte) error {
  1261. return xxx_messageInfo_OrganSchool.Unmarshal(m, b)
  1262. }
  1263. func (m *OrganSchool) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1264. return xxx_messageInfo_OrganSchool.Marshal(b, m, deterministic)
  1265. }
  1266. func (m *OrganSchool) XXX_Merge(src proto.Message) {
  1267. xxx_messageInfo_OrganSchool.Merge(m, src)
  1268. }
  1269. func (m *OrganSchool) XXX_Size() int {
  1270. return xxx_messageInfo_OrganSchool.Size(m)
  1271. }
  1272. func (m *OrganSchool) XXX_DiscardUnknown() {
  1273. xxx_messageInfo_OrganSchool.DiscardUnknown(m)
  1274. }
  1275. var xxx_messageInfo_OrganSchool proto.InternalMessageInfo
  1276. func (m *OrganSchool) GetId() int64 {
  1277. if m != nil {
  1278. return m.Id
  1279. }
  1280. return 0
  1281. }
  1282. func (m *OrganSchool) GetName() string {
  1283. if m != nil {
  1284. return m.Name
  1285. }
  1286. return ""
  1287. }
  1288. func (m *OrganSchool) GetOrganId() int64 {
  1289. if m != nil {
  1290. return m.OrganId
  1291. }
  1292. return 0
  1293. }
  1294. type GetErpSchoolRes struct {
  1295. School []*OrganSchool `protobuf:"bytes,1,rep,name=school,proto3" json:"school,omitempty"`
  1296. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1297. XXX_unrecognized []byte `json:"-"`
  1298. XXX_sizecache int32 `json:"-"`
  1299. }
  1300. func (m *GetErpSchoolRes) Reset() { *m = GetErpSchoolRes{} }
  1301. func (m *GetErpSchoolRes) String() string { return proto.CompactTextString(m) }
  1302. func (*GetErpSchoolRes) ProtoMessage() {}
  1303. func (*GetErpSchoolRes) Descriptor() ([]byte, []int) {
  1304. return fileDescriptor_cb4a498eeb2ba07d, []int{30}
  1305. }
  1306. func (m *GetErpSchoolRes) XXX_Unmarshal(b []byte) error {
  1307. return xxx_messageInfo_GetErpSchoolRes.Unmarshal(m, b)
  1308. }
  1309. func (m *GetErpSchoolRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1310. return xxx_messageInfo_GetErpSchoolRes.Marshal(b, m, deterministic)
  1311. }
  1312. func (m *GetErpSchoolRes) XXX_Merge(src proto.Message) {
  1313. xxx_messageInfo_GetErpSchoolRes.Merge(m, src)
  1314. }
  1315. func (m *GetErpSchoolRes) XXX_Size() int {
  1316. return xxx_messageInfo_GetErpSchoolRes.Size(m)
  1317. }
  1318. func (m *GetErpSchoolRes) XXX_DiscardUnknown() {
  1319. xxx_messageInfo_GetErpSchoolRes.DiscardUnknown(m)
  1320. }
  1321. var xxx_messageInfo_GetErpSchoolRes proto.InternalMessageInfo
  1322. func (m *GetErpSchoolRes) GetSchool() []*OrganSchool {
  1323. if m != nil {
  1324. return m.School
  1325. }
  1326. return nil
  1327. }
  1328. type GetErpActiveReq struct {
  1329. SchId uint64 `protobuf:"varint,1,opt,name=sch_id,json=schId,proto3" json:"sch_id,omitempty"`
  1330. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1331. XXX_unrecognized []byte `json:"-"`
  1332. XXX_sizecache int32 `json:"-"`
  1333. }
  1334. func (m *GetErpActiveReq) Reset() { *m = GetErpActiveReq{} }
  1335. func (m *GetErpActiveReq) String() string { return proto.CompactTextString(m) }
  1336. func (*GetErpActiveReq) ProtoMessage() {}
  1337. func (*GetErpActiveReq) Descriptor() ([]byte, []int) {
  1338. return fileDescriptor_cb4a498eeb2ba07d, []int{31}
  1339. }
  1340. func (m *GetErpActiveReq) XXX_Unmarshal(b []byte) error {
  1341. return xxx_messageInfo_GetErpActiveReq.Unmarshal(m, b)
  1342. }
  1343. func (m *GetErpActiveReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1344. return xxx_messageInfo_GetErpActiveReq.Marshal(b, m, deterministic)
  1345. }
  1346. func (m *GetErpActiveReq) XXX_Merge(src proto.Message) {
  1347. xxx_messageInfo_GetErpActiveReq.Merge(m, src)
  1348. }
  1349. func (m *GetErpActiveReq) XXX_Size() int {
  1350. return xxx_messageInfo_GetErpActiveReq.Size(m)
  1351. }
  1352. func (m *GetErpActiveReq) XXX_DiscardUnknown() {
  1353. xxx_messageInfo_GetErpActiveReq.DiscardUnknown(m)
  1354. }
  1355. var xxx_messageInfo_GetErpActiveReq proto.InternalMessageInfo
  1356. func (m *GetErpActiveReq) GetSchId() uint64 {
  1357. if m != nil {
  1358. return m.SchId
  1359. }
  1360. return 0
  1361. }
  1362. type GetErpActiveRes struct {
  1363. Active []*Active `protobuf:"bytes,1,rep,name=active,proto3" json:"active,omitempty"`
  1364. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1365. XXX_unrecognized []byte `json:"-"`
  1366. XXX_sizecache int32 `json:"-"`
  1367. }
  1368. func (m *GetErpActiveRes) Reset() { *m = GetErpActiveRes{} }
  1369. func (m *GetErpActiveRes) String() string { return proto.CompactTextString(m) }
  1370. func (*GetErpActiveRes) ProtoMessage() {}
  1371. func (*GetErpActiveRes) Descriptor() ([]byte, []int) {
  1372. return fileDescriptor_cb4a498eeb2ba07d, []int{32}
  1373. }
  1374. func (m *GetErpActiveRes) XXX_Unmarshal(b []byte) error {
  1375. return xxx_messageInfo_GetErpActiveRes.Unmarshal(m, b)
  1376. }
  1377. func (m *GetErpActiveRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1378. return xxx_messageInfo_GetErpActiveRes.Marshal(b, m, deterministic)
  1379. }
  1380. func (m *GetErpActiveRes) XXX_Merge(src proto.Message) {
  1381. xxx_messageInfo_GetErpActiveRes.Merge(m, src)
  1382. }
  1383. func (m *GetErpActiveRes) XXX_Size() int {
  1384. return xxx_messageInfo_GetErpActiveRes.Size(m)
  1385. }
  1386. func (m *GetErpActiveRes) XXX_DiscardUnknown() {
  1387. xxx_messageInfo_GetErpActiveRes.DiscardUnknown(m)
  1388. }
  1389. var xxx_messageInfo_GetErpActiveRes proto.InternalMessageInfo
  1390. func (m *GetErpActiveRes) GetActive() []*Active {
  1391. if m != nil {
  1392. return m.Active
  1393. }
  1394. return nil
  1395. }
  1396. type Active struct {
  1397. ActiveId int64 `protobuf:"varint,1,opt,name=active_id,json=activeId,proto3" json:"active_id,omitempty"`
  1398. MaName string `protobuf:"bytes,2,opt,name=ma_name,json=maName,proto3" json:"ma_name,omitempty"`
  1399. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1400. XXX_unrecognized []byte `json:"-"`
  1401. XXX_sizecache int32 `json:"-"`
  1402. }
  1403. func (m *Active) Reset() { *m = Active{} }
  1404. func (m *Active) String() string { return proto.CompactTextString(m) }
  1405. func (*Active) ProtoMessage() {}
  1406. func (*Active) Descriptor() ([]byte, []int) {
  1407. return fileDescriptor_cb4a498eeb2ba07d, []int{33}
  1408. }
  1409. func (m *Active) XXX_Unmarshal(b []byte) error {
  1410. return xxx_messageInfo_Active.Unmarshal(m, b)
  1411. }
  1412. func (m *Active) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1413. return xxx_messageInfo_Active.Marshal(b, m, deterministic)
  1414. }
  1415. func (m *Active) XXX_Merge(src proto.Message) {
  1416. xxx_messageInfo_Active.Merge(m, src)
  1417. }
  1418. func (m *Active) XXX_Size() int {
  1419. return xxx_messageInfo_Active.Size(m)
  1420. }
  1421. func (m *Active) XXX_DiscardUnknown() {
  1422. xxx_messageInfo_Active.DiscardUnknown(m)
  1423. }
  1424. var xxx_messageInfo_Active proto.InternalMessageInfo
  1425. func (m *Active) GetActiveId() int64 {
  1426. if m != nil {
  1427. return m.ActiveId
  1428. }
  1429. return 0
  1430. }
  1431. func (m *Active) GetMaName() string {
  1432. if m != nil {
  1433. return m.MaName
  1434. }
  1435. return ""
  1436. }
  1437. type DataPermissionReq struct {
  1438. RuleCode string `protobuf:"bytes,1,opt,name=rule_code,json=ruleCode,proto3" json:"rule_code,omitempty"`
  1439. UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1440. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1441. XXX_unrecognized []byte `json:"-"`
  1442. XXX_sizecache int32 `json:"-"`
  1443. }
  1444. func (m *DataPermissionReq) Reset() { *m = DataPermissionReq{} }
  1445. func (m *DataPermissionReq) String() string { return proto.CompactTextString(m) }
  1446. func (*DataPermissionReq) ProtoMessage() {}
  1447. func (*DataPermissionReq) Descriptor() ([]byte, []int) {
  1448. return fileDescriptor_cb4a498eeb2ba07d, []int{34}
  1449. }
  1450. func (m *DataPermissionReq) XXX_Unmarshal(b []byte) error {
  1451. return xxx_messageInfo_DataPermissionReq.Unmarshal(m, b)
  1452. }
  1453. func (m *DataPermissionReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1454. return xxx_messageInfo_DataPermissionReq.Marshal(b, m, deterministic)
  1455. }
  1456. func (m *DataPermissionReq) XXX_Merge(src proto.Message) {
  1457. xxx_messageInfo_DataPermissionReq.Merge(m, src)
  1458. }
  1459. func (m *DataPermissionReq) XXX_Size() int {
  1460. return xxx_messageInfo_DataPermissionReq.Size(m)
  1461. }
  1462. func (m *DataPermissionReq) XXX_DiscardUnknown() {
  1463. xxx_messageInfo_DataPermissionReq.DiscardUnknown(m)
  1464. }
  1465. var xxx_messageInfo_DataPermissionReq proto.InternalMessageInfo
  1466. func (m *DataPermissionReq) GetRuleCode() string {
  1467. if m != nil {
  1468. return m.RuleCode
  1469. }
  1470. return ""
  1471. }
  1472. func (m *DataPermissionReq) GetUserId() string {
  1473. if m != nil {
  1474. return m.UserId
  1475. }
  1476. return ""
  1477. }
  1478. type DataPermissionRes struct {
  1479. 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"`
  1480. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1481. XXX_unrecognized []byte `json:"-"`
  1482. XXX_sizecache int32 `json:"-"`
  1483. }
  1484. func (m *DataPermissionRes) Reset() { *m = DataPermissionRes{} }
  1485. func (m *DataPermissionRes) String() string { return proto.CompactTextString(m) }
  1486. func (*DataPermissionRes) ProtoMessage() {}
  1487. func (*DataPermissionRes) Descriptor() ([]byte, []int) {
  1488. return fileDescriptor_cb4a498eeb2ba07d, []int{35}
  1489. }
  1490. func (m *DataPermissionRes) XXX_Unmarshal(b []byte) error {
  1491. return xxx_messageInfo_DataPermissionRes.Unmarshal(m, b)
  1492. }
  1493. func (m *DataPermissionRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1494. return xxx_messageInfo_DataPermissionRes.Marshal(b, m, deterministic)
  1495. }
  1496. func (m *DataPermissionRes) XXX_Merge(src proto.Message) {
  1497. xxx_messageInfo_DataPermissionRes.Merge(m, src)
  1498. }
  1499. func (m *DataPermissionRes) XXX_Size() int {
  1500. return xxx_messageInfo_DataPermissionRes.Size(m)
  1501. }
  1502. func (m *DataPermissionRes) XXX_DiscardUnknown() {
  1503. xxx_messageInfo_DataPermissionRes.DiscardUnknown(m)
  1504. }
  1505. var xxx_messageInfo_DataPermissionRes proto.InternalMessageInfo
  1506. func (m *DataPermissionRes) GetMapList() map[string]string {
  1507. if m != nil {
  1508. return m.MapList
  1509. }
  1510. return nil
  1511. }
  1512. type MktReq struct {
  1513. Id int64 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
  1514. MkId string `protobuf:"bytes,2,opt,name=MkId,proto3" json:"MkId,omitempty"`
  1515. PartTimeUserId int64 `protobuf:"varint,3,opt,name=PartTimeUserId,proto3" json:"PartTimeUserId,omitempty"`
  1516. UserId int64 `protobuf:"varint,4,opt,name=UserId,proto3" json:"UserId,omitempty"`
  1517. StuName string `protobuf:"bytes,5,opt,name=StuName,proto3" json:"StuName,omitempty"`
  1518. AgeGroup int64 `protobuf:"varint,6,opt,name=AgeGroup,proto3" json:"AgeGroup,omitempty"`
  1519. StuLinkPerson int64 `protobuf:"varint,7,opt,name=StuLinkPerson,proto3" json:"StuLinkPerson,omitempty"`
  1520. StuPhone string `protobuf:"bytes,8,opt,name=StuPhone,proto3" json:"StuPhone,omitempty"`
  1521. SchId int64 `protobuf:"varint,9,opt,name=SchId,proto3" json:"SchId,omitempty"`
  1522. Address string `protobuf:"bytes,10,opt,name=Address,proto3" json:"Address,omitempty"`
  1523. CreateTime string `protobuf:"bytes,11,opt,name=CreateTime,proto3" json:"CreateTime,omitempty"`
  1524. DelFlag int64 `protobuf:"varint,12,opt,name=DelFlag,proto3" json:"DelFlag,omitempty"`
  1525. CheckState int64 `protobuf:"varint,13,opt,name=CheckState,proto3" json:"CheckState,omitempty"`
  1526. CheckTime string `protobuf:"bytes,14,opt,name=CheckTime,proto3" json:"CheckTime,omitempty"`
  1527. CheckBy string `protobuf:"bytes,15,opt,name=CheckBy,proto3" json:"CheckBy,omitempty"`
  1528. NetworkDetailId int64 `protobuf:"varint,16,opt,name=NetworkDetailId,proto3" json:"NetworkDetailId,omitempty"`
  1529. ActiveId int64 `protobuf:"varint,17,opt,name=ActiveId,proto3" json:"ActiveId,omitempty"`
  1530. CallType int64 `protobuf:"varint,18,opt,name=CallType,proto3" json:"CallType,omitempty"`
  1531. MaType int64 `protobuf:"varint,19,opt,name=MaType,proto3" json:"MaType,omitempty"`
  1532. QuaoYji int64 `protobuf:"varint,20,opt,name=QuaoYji,proto3" json:"QuaoYji,omitempty"`
  1533. MktActivityId int64 `protobuf:"varint,21,opt,name=MktActivityId,proto3" json:"MktActivityId,omitempty"`
  1534. LoadSchId int64 `protobuf:"varint,22,opt,name=LoadSchId,proto3" json:"LoadSchId,omitempty"`
  1535. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1536. XXX_unrecognized []byte `json:"-"`
  1537. XXX_sizecache int32 `json:"-"`
  1538. }
  1539. func (m *MktReq) Reset() { *m = MktReq{} }
  1540. func (m *MktReq) String() string { return proto.CompactTextString(m) }
  1541. func (*MktReq) ProtoMessage() {}
  1542. func (*MktReq) Descriptor() ([]byte, []int) {
  1543. return fileDescriptor_cb4a498eeb2ba07d, []int{36}
  1544. }
  1545. func (m *MktReq) XXX_Unmarshal(b []byte) error {
  1546. return xxx_messageInfo_MktReq.Unmarshal(m, b)
  1547. }
  1548. func (m *MktReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1549. return xxx_messageInfo_MktReq.Marshal(b, m, deterministic)
  1550. }
  1551. func (m *MktReq) XXX_Merge(src proto.Message) {
  1552. xxx_messageInfo_MktReq.Merge(m, src)
  1553. }
  1554. func (m *MktReq) XXX_Size() int {
  1555. return xxx_messageInfo_MktReq.Size(m)
  1556. }
  1557. func (m *MktReq) XXX_DiscardUnknown() {
  1558. xxx_messageInfo_MktReq.DiscardUnknown(m)
  1559. }
  1560. var xxx_messageInfo_MktReq proto.InternalMessageInfo
  1561. func (m *MktReq) GetId() int64 {
  1562. if m != nil {
  1563. return m.Id
  1564. }
  1565. return 0
  1566. }
  1567. func (m *MktReq) GetMkId() string {
  1568. if m != nil {
  1569. return m.MkId
  1570. }
  1571. return ""
  1572. }
  1573. func (m *MktReq) GetPartTimeUserId() int64 {
  1574. if m != nil {
  1575. return m.PartTimeUserId
  1576. }
  1577. return 0
  1578. }
  1579. func (m *MktReq) GetUserId() int64 {
  1580. if m != nil {
  1581. return m.UserId
  1582. }
  1583. return 0
  1584. }
  1585. func (m *MktReq) GetStuName() string {
  1586. if m != nil {
  1587. return m.StuName
  1588. }
  1589. return ""
  1590. }
  1591. func (m *MktReq) GetAgeGroup() int64 {
  1592. if m != nil {
  1593. return m.AgeGroup
  1594. }
  1595. return 0
  1596. }
  1597. func (m *MktReq) GetStuLinkPerson() int64 {
  1598. if m != nil {
  1599. return m.StuLinkPerson
  1600. }
  1601. return 0
  1602. }
  1603. func (m *MktReq) GetStuPhone() string {
  1604. if m != nil {
  1605. return m.StuPhone
  1606. }
  1607. return ""
  1608. }
  1609. func (m *MktReq) GetSchId() int64 {
  1610. if m != nil {
  1611. return m.SchId
  1612. }
  1613. return 0
  1614. }
  1615. func (m *MktReq) GetAddress() string {
  1616. if m != nil {
  1617. return m.Address
  1618. }
  1619. return ""
  1620. }
  1621. func (m *MktReq) GetCreateTime() string {
  1622. if m != nil {
  1623. return m.CreateTime
  1624. }
  1625. return ""
  1626. }
  1627. func (m *MktReq) GetDelFlag() int64 {
  1628. if m != nil {
  1629. return m.DelFlag
  1630. }
  1631. return 0
  1632. }
  1633. func (m *MktReq) GetCheckState() int64 {
  1634. if m != nil {
  1635. return m.CheckState
  1636. }
  1637. return 0
  1638. }
  1639. func (m *MktReq) GetCheckTime() string {
  1640. if m != nil {
  1641. return m.CheckTime
  1642. }
  1643. return ""
  1644. }
  1645. func (m *MktReq) GetCheckBy() string {
  1646. if m != nil {
  1647. return m.CheckBy
  1648. }
  1649. return ""
  1650. }
  1651. func (m *MktReq) GetNetworkDetailId() int64 {
  1652. if m != nil {
  1653. return m.NetworkDetailId
  1654. }
  1655. return 0
  1656. }
  1657. func (m *MktReq) GetActiveId() int64 {
  1658. if m != nil {
  1659. return m.ActiveId
  1660. }
  1661. return 0
  1662. }
  1663. func (m *MktReq) GetCallType() int64 {
  1664. if m != nil {
  1665. return m.CallType
  1666. }
  1667. return 0
  1668. }
  1669. func (m *MktReq) GetMaType() int64 {
  1670. if m != nil {
  1671. return m.MaType
  1672. }
  1673. return 0
  1674. }
  1675. func (m *MktReq) GetQuaoYji() int64 {
  1676. if m != nil {
  1677. return m.QuaoYji
  1678. }
  1679. return 0
  1680. }
  1681. func (m *MktReq) GetMktActivityId() int64 {
  1682. if m != nil {
  1683. return m.MktActivityId
  1684. }
  1685. return 0
  1686. }
  1687. func (m *MktReq) GetLoadSchId() int64 {
  1688. if m != nil {
  1689. return m.LoadSchId
  1690. }
  1691. return 0
  1692. }
  1693. type MktRes struct {
  1694. Status int64 `protobuf:"varint,1,opt,name=Status,proto3" json:"Status,omitempty"`
  1695. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1696. XXX_unrecognized []byte `json:"-"`
  1697. XXX_sizecache int32 `json:"-"`
  1698. }
  1699. func (m *MktRes) Reset() { *m = MktRes{} }
  1700. func (m *MktRes) String() string { return proto.CompactTextString(m) }
  1701. func (*MktRes) ProtoMessage() {}
  1702. func (*MktRes) Descriptor() ([]byte, []int) {
  1703. return fileDescriptor_cb4a498eeb2ba07d, []int{37}
  1704. }
  1705. func (m *MktRes) XXX_Unmarshal(b []byte) error {
  1706. return xxx_messageInfo_MktRes.Unmarshal(m, b)
  1707. }
  1708. func (m *MktRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1709. return xxx_messageInfo_MktRes.Marshal(b, m, deterministic)
  1710. }
  1711. func (m *MktRes) XXX_Merge(src proto.Message) {
  1712. xxx_messageInfo_MktRes.Merge(m, src)
  1713. }
  1714. func (m *MktRes) XXX_Size() int {
  1715. return xxx_messageInfo_MktRes.Size(m)
  1716. }
  1717. func (m *MktRes) XXX_DiscardUnknown() {
  1718. xxx_messageInfo_MktRes.DiscardUnknown(m)
  1719. }
  1720. var xxx_messageInfo_MktRes proto.InternalMessageInfo
  1721. func (m *MktRes) GetStatus() int64 {
  1722. if m != nil {
  1723. return m.Status
  1724. }
  1725. return 0
  1726. }
  1727. type StudentReq struct {
  1728. Id int64 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
  1729. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1730. XXX_unrecognized []byte `json:"-"`
  1731. XXX_sizecache int32 `json:"-"`
  1732. }
  1733. func (m *StudentReq) Reset() { *m = StudentReq{} }
  1734. func (m *StudentReq) String() string { return proto.CompactTextString(m) }
  1735. func (*StudentReq) ProtoMessage() {}
  1736. func (*StudentReq) Descriptor() ([]byte, []int) {
  1737. return fileDescriptor_cb4a498eeb2ba07d, []int{38}
  1738. }
  1739. func (m *StudentReq) XXX_Unmarshal(b []byte) error {
  1740. return xxx_messageInfo_StudentReq.Unmarshal(m, b)
  1741. }
  1742. func (m *StudentReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1743. return xxx_messageInfo_StudentReq.Marshal(b, m, deterministic)
  1744. }
  1745. func (m *StudentReq) XXX_Merge(src proto.Message) {
  1746. xxx_messageInfo_StudentReq.Merge(m, src)
  1747. }
  1748. func (m *StudentReq) XXX_Size() int {
  1749. return xxx_messageInfo_StudentReq.Size(m)
  1750. }
  1751. func (m *StudentReq) XXX_DiscardUnknown() {
  1752. xxx_messageInfo_StudentReq.DiscardUnknown(m)
  1753. }
  1754. var xxx_messageInfo_StudentReq proto.InternalMessageInfo
  1755. func (m *StudentReq) GetId() int64 {
  1756. if m != nil {
  1757. return m.Id
  1758. }
  1759. return 0
  1760. }
  1761. type StudentRes struct {
  1762. Id int64 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
  1763. StuPhone string `protobuf:"bytes,2,opt,name=StuPhone,proto3" json:"StuPhone,omitempty"`
  1764. CreateBy string `protobuf:"bytes,3,opt,name=CreateBy,proto3" json:"CreateBy,omitempty"`
  1765. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1766. XXX_unrecognized []byte `json:"-"`
  1767. XXX_sizecache int32 `json:"-"`
  1768. }
  1769. func (m *StudentRes) Reset() { *m = StudentRes{} }
  1770. func (m *StudentRes) String() string { return proto.CompactTextString(m) }
  1771. func (*StudentRes) ProtoMessage() {}
  1772. func (*StudentRes) Descriptor() ([]byte, []int) {
  1773. return fileDescriptor_cb4a498eeb2ba07d, []int{39}
  1774. }
  1775. func (m *StudentRes) XXX_Unmarshal(b []byte) error {
  1776. return xxx_messageInfo_StudentRes.Unmarshal(m, b)
  1777. }
  1778. func (m *StudentRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1779. return xxx_messageInfo_StudentRes.Marshal(b, m, deterministic)
  1780. }
  1781. func (m *StudentRes) XXX_Merge(src proto.Message) {
  1782. xxx_messageInfo_StudentRes.Merge(m, src)
  1783. }
  1784. func (m *StudentRes) XXX_Size() int {
  1785. return xxx_messageInfo_StudentRes.Size(m)
  1786. }
  1787. func (m *StudentRes) XXX_DiscardUnknown() {
  1788. xxx_messageInfo_StudentRes.DiscardUnknown(m)
  1789. }
  1790. var xxx_messageInfo_StudentRes proto.InternalMessageInfo
  1791. func (m *StudentRes) GetId() int64 {
  1792. if m != nil {
  1793. return m.Id
  1794. }
  1795. return 0
  1796. }
  1797. func (m *StudentRes) GetStuPhone() string {
  1798. if m != nil {
  1799. return m.StuPhone
  1800. }
  1801. return ""
  1802. }
  1803. func (m *StudentRes) GetCreateBy() string {
  1804. if m != nil {
  1805. return m.CreateBy
  1806. }
  1807. return ""
  1808. }
  1809. func init() {
  1810. proto.RegisterType((*UserRequest)(nil), "transform.UserRequest")
  1811. proto.RegisterType((*UserResponse)(nil), "transform.UserResponse")
  1812. proto.RegisterType((*TokenRequest)(nil), "transform.TokenRequest")
  1813. proto.RegisterType((*TokenResponse)(nil), "transform.TokenResponse")
  1814. proto.RegisterType((*Empty)(nil), "transform.Empty")
  1815. proto.RegisterType((*TreeNodes)(nil), "transform.TreeNodes")
  1816. proto.RegisterType((*TreeNode)(nil), "transform.TreeNode")
  1817. proto.RegisterType((*ErpMktNetWorkDetail)(nil), "transform.ErpMktNetWorkDetail")
  1818. proto.RegisterType((*ErpMktNetWorkDetailRes)(nil), "transform.ErpMktNetWorkDetailRes")
  1819. proto.RegisterType((*ErpMktNetWorkDetailReq)(nil), "transform.ErpMktNetWorkDetailReq")
  1820. proto.RegisterType((*Tag)(nil), "transform.Tag")
  1821. proto.RegisterType((*OptionsetReq)(nil), "transform.OptionsetReq")
  1822. proto.RegisterType((*OptionsetRes)(nil), "transform.OptionsetRes")
  1823. proto.RegisterMapType((map[string]string)(nil), "transform.OptionsetRes.MapListEntry")
  1824. proto.RegisterType((*OptionCode)(nil), "transform.OptionCode")
  1825. proto.RegisterType((*Options)(nil), "transform.Options")
  1826. proto.RegisterType((*ResponseByte)(nil), "transform.ResponseByte")
  1827. proto.RegisterType((*ExcelLogReq)(nil), "transform.ExcelLogReq")
  1828. proto.RegisterType((*ExcelLogRes)(nil), "transform.ExcelLogRes")
  1829. proto.RegisterType((*SchoolIdsReq)(nil), "transform.SchoolIdsReq")
  1830. proto.RegisterType((*ListOfInt)(nil), "transform.ListOfInt")
  1831. proto.RegisterType((*SchoolIdsRes)(nil), "transform.SchoolIdsRes")
  1832. proto.RegisterMapType((map[string]int64)(nil), "transform.SchoolIdsRes.MapListEntry")
  1833. proto.RegisterType((*CityIdsReq)(nil), "transform.CityIdsReq")
  1834. proto.RegisterType((*CityIdsRes)(nil), "transform.CityIdsRes")
  1835. proto.RegisterMapType((map[string]int64)(nil), "transform.CityIdsRes.MapListEntry")
  1836. proto.RegisterType((*BytesReq)(nil), "transform.BytesReq")
  1837. proto.RegisterType((*BytesResp)(nil), "transform.BytesResp")
  1838. proto.RegisterType((*GetErpRoleRes)(nil), "transform.GetErpRoleRes")
  1839. proto.RegisterType((*GetErpRoleReq)(nil), "transform.GetErpRoleReq")
  1840. proto.RegisterType((*GetErpOrganSchPerByUserIdReq)(nil), "transform.GetErpOrganSchPerByUserIdReq")
  1841. proto.RegisterType((*GetErpOrganSchPerByUserIdRes)(nil), "transform.GetErpOrganSchPerByUserIdRes")
  1842. proto.RegisterType((*OrganSchool)(nil), "transform.OrganSchool")
  1843. proto.RegisterType((*GetErpSchoolRes)(nil), "transform.GetErpSchoolRes")
  1844. proto.RegisterType((*GetErpActiveReq)(nil), "transform.GetErpActiveReq")
  1845. proto.RegisterType((*GetErpActiveRes)(nil), "transform.GetErpActiveRes")
  1846. proto.RegisterType((*Active)(nil), "transform.Active")
  1847. proto.RegisterType((*DataPermissionReq)(nil), "transform.DataPermissionReq")
  1848. proto.RegisterType((*DataPermissionRes)(nil), "transform.DataPermissionRes")
  1849. proto.RegisterMapType((map[string]string)(nil), "transform.DataPermissionRes.MapListEntry")
  1850. proto.RegisterType((*MktReq)(nil), "transform.MktReq")
  1851. proto.RegisterType((*MktRes)(nil), "transform.MktRes")
  1852. proto.RegisterType((*StudentReq)(nil), "transform.StudentReq")
  1853. proto.RegisterType((*StudentRes)(nil), "transform.StudentRes")
  1854. }
  1855. func init() { proto.RegisterFile("transform.proto", fileDescriptor_cb4a498eeb2ba07d) }
  1856. var fileDescriptor_cb4a498eeb2ba07d = []byte{
  1857. // 1666 bytes of a gzipped FileDescriptorProto
  1858. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x4f, 0x6f, 0x1b, 0xb7,
  1859. 0x12, 0x87, 0x24, 0xeb, 0xdf, 0x48, 0xb6, 0x63, 0xc6, 0x76, 0x36, 0xfb, 0xfc, 0xf2, 0xfc, 0x88,
  1860. 0xbc, 0xf7, 0x9c, 0x77, 0xf0, 0x21, 0x29, 0xda, 0xc0, 0x08, 0xd2, 0xf8, 0x5f, 0x0c, 0x01, 0xfe,
  1861. 0x57, 0xc9, 0x41, 0xd1, 0x4b, 0x8d, 0x8d, 0x96, 0x91, 0xb7, 0x5a, 0x2d, 0xe5, 0x25, 0x95, 0x46,
  1862. 0x5f, 0xa0, 0x87, 0x5e, 0xdb, 0x6b, 0xfb, 0xa9, 0x7a, 0x29, 0xfa, 0x5d, 0x8a, 0x62, 0x48, 0xee,
  1863. 0x2e, 0x25, 0xad, 0xec, 0xa4, 0x6d, 0x6e, 0x3b, 0x3f, 0xce, 0x0c, 0x67, 0x86, 0xc3, 0x99, 0xe1,
  1864. 0xc2, 0xb2, 0x8c, 0xbd, 0x48, 0xbc, 0xe1, 0xf1, 0x60, 0x7b, 0x18, 0x73, 0xc9, 0x49, 0x3d, 0x05,
  1865. 0xe8, 0x13, 0x68, 0xbc, 0x12, 0x2c, 0x6e, 0xb3, 0xeb, 0x11, 0x13, 0x92, 0x2c, 0x41, 0x31, 0xf0,
  1866. 0x9d, 0xc2, 0x66, 0x61, 0xab, 0xde, 0x2e, 0x06, 0x3e, 0x59, 0x85, 0xf2, 0xf0, 0x8a, 0x47, 0xcc,
  1867. 0x29, 0x2a, 0x48, 0x13, 0xf4, 0x97, 0x02, 0x34, 0xb5, 0x94, 0x18, 0xf2, 0x48, 0xb0, 0xf7, 0x13,
  1868. 0x43, 0x34, 0xe6, 0x21, 0x13, 0x4e, 0x49, 0xa3, 0x8a, 0x20, 0xeb, 0x50, 0x11, 0xd2, 0x93, 0x23,
  1869. 0xe1, 0x2c, 0x6c, 0x16, 0xb6, 0x4a, 0x6d, 0x43, 0x91, 0x4d, 0x68, 0xb0, 0x78, 0xd8, 0xe6, 0x21,
  1870. 0xbb, 0x18, 0x0f, 0x99, 0x53, 0x56, 0x8b, 0x36, 0x44, 0x5c, 0xa8, 0x8d, 0x04, 0x8b, 0x4f, 0xbd,
  1871. 0x01, 0x73, 0x2a, 0x4a, 0x65, 0x4a, 0xe3, 0x5a, 0x37, 0x90, 0x63, 0xb5, 0x56, 0xd5, 0x6b, 0x09,
  1872. 0x8d, 0x3b, 0xf6, 0x58, 0xe4, 0xb3, 0xd8, 0xa9, 0xe9, 0x1d, 0x35, 0x45, 0x1f, 0x42, 0xf3, 0x82,
  1873. 0xf7, 0x59, 0x94, 0x04, 0x63, 0x15, 0xca, 0x12, 0x69, 0xe3, 0x98, 0x26, 0xe8, 0x4f, 0x45, 0x58,
  1874. 0x34, 0x6c, 0xc6, 0xfb, 0x75, 0xa8, 0x60, 0x34, 0x5a, 0x49, 0x04, 0x0c, 0x85, 0x1e, 0xa8, 0x28,
  1875. 0xf1, 0x90, 0xb5, 0x7c, 0x61, 0x62, 0x61, 0x43, 0xe4, 0x21, 0x2c, 0x22, 0xd9, 0xe9, 0x5e, 0x71,
  1876. 0x1e, 0x22, 0x8f, 0x8e, 0xcc, 0x24, 0x48, 0xb6, 0x60, 0x19, 0x81, 0xf3, 0x98, 0xbf, 0x0d, 0xa2,
  1877. 0xae, 0xd2, 0xb5, 0xa0, 0xf8, 0xa6, 0x61, 0x42, 0xf5, 0xb9, 0x9c, 0xc5, 0x3d, 0x2f, 0x42, 0xb6,
  1878. 0xb2, 0x62, 0x9b, 0xc0, 0xd0, 0xaa, 0xce, 0x58, 0x24, 0xda, 0x4d, 0xe0, 0x6c, 0x88, 0x3c, 0x00,
  1879. 0xe8, 0x8c, 0x85, 0x11, 0x30, 0xd1, 0xb3, 0x10, 0xb2, 0x01, 0x75, 0xb5, 0xb1, 0x3a, 0xe1, 0x9a,
  1880. 0x5a, 0xce, 0x00, 0x5a, 0x85, 0xf2, 0xe1, 0x60, 0x28, 0xc7, 0xf4, 0x53, 0xa8, 0x5f, 0xc4, 0x8c,
  1881. 0x9d, 0x72, 0x9f, 0x09, 0xf2, 0x08, 0xca, 0x11, 0x7e, 0x38, 0x85, 0xcd, 0xd2, 0x56, 0xe3, 0xf1,
  1882. 0xdd, 0xed, 0x2c, 0x27, 0x13, 0xa6, 0xb6, 0xe6, 0xa0, 0x3f, 0x14, 0xa0, 0x96, 0x60, 0x56, 0x66,
  1883. 0x95, 0x54, 0x66, 0x11, 0x58, 0x90, 0xec, 0x9d, 0x34, 0xc1, 0x54, 0xdf, 0x18, 0xff, 0xa1, 0x17,
  1884. 0xb3, 0x48, 0xaa, 0xf0, 0x95, 0xda, 0x86, 0x22, 0x9b, 0x50, 0x92, 0x5e, 0x4f, 0xc5, 0xaa, 0xf1,
  1885. 0x78, 0xc9, 0xde, 0xd1, 0xeb, 0xb5, 0x71, 0x29, 0xb3, 0xaa, 0x7c, 0xab, 0x55, 0x3f, 0x17, 0xe0,
  1886. 0xee, 0x61, 0x3c, 0x3c, 0xe9, 0xcb, 0x53, 0x26, 0xbf, 0xe4, 0x71, 0xff, 0x80, 0x49, 0x2f, 0x08,
  1887. 0x3f, 0x40, 0xc5, 0x5f, 0xf4, 0xa5, 0x11, 0x44, 0x57, 0x2c, 0x0e, 0xa4, 0x17, 0x75, 0x99, 0x39,
  1888. 0x7f, 0x1b, 0xa2, 0xa7, 0xb0, 0x9e, 0x63, 0x5f, 0x9b, 0x09, 0xf2, 0x09, 0x94, 0x03, 0xc9, 0x06,
  1889. 0x89, 0x89, 0x0f, 0x2c, 0x13, 0xf3, 0x24, 0x34, 0x33, 0xfd, 0xff, 0x1c, 0x7d, 0xd7, 0xe4, 0x0e,
  1890. 0x94, 0x02, 0x5f, 0x98, 0x64, 0xc7, 0x4f, 0xfa, 0x08, 0x4a, 0x17, 0x5e, 0x2f, 0xcf, 0xc1, 0x08,
  1891. 0x2f, 0xa0, 0x71, 0x10, 0xbf, 0x29, 0x85, 0xe6, 0xd9, 0x50, 0x06, 0x78, 0x71, 0x24, 0x2a, 0x23,
  1892. 0xb0, 0xd0, 0xe5, 0x3e, 0x33, 0xda, 0xd4, 0x37, 0xfd, 0xbe, 0x30, 0xc1, 0x24, 0xc8, 0x73, 0xa8,
  1893. 0x0e, 0xbc, 0xe1, 0x71, 0x20, 0xa4, 0xc9, 0x9f, 0x87, 0x96, 0x0f, 0x36, 0xe7, 0xf6, 0x89, 0x66,
  1894. 0x3b, 0x8c, 0x64, 0x3c, 0x6e, 0x27, 0x42, 0xee, 0x0e, 0x34, 0xed, 0x05, 0xf4, 0xa0, 0xcf, 0xc6,
  1895. 0x89, 0x07, 0x7d, 0x36, 0xc6, 0xbb, 0xfe, 0xd6, 0x0b, 0x47, 0x69, 0xc5, 0x52, 0xc4, 0x4e, 0xf1,
  1896. 0x69, 0x81, 0x6e, 0x02, 0xe8, 0x1d, 0xf6, 0x31, 0x1f, 0xf3, 0xcc, 0x3d, 0x82, 0xaa, 0xb1, 0x21,
  1897. 0x6f, 0x39, 0x2f, 0x0a, 0xd9, 0x76, 0x25, 0x6b, 0x3b, 0x8c, 0x4d, 0x52, 0x54, 0xf6, 0xc6, 0x52,
  1898. 0x49, 0xfa, 0x9e, 0xf4, 0x94, 0xb6, 0x66, 0x5b, 0x7d, 0xd3, 0xdf, 0x0a, 0xd0, 0x38, 0x7c, 0xd7,
  1899. 0x65, 0xe1, 0x31, 0xef, 0x61, 0xfc, 0xd6, 0xa1, 0x72, 0xc2, 0xfd, 0x51, 0x98, 0xec, 0x69, 0x28,
  1900. 0x94, 0xdd, 0xe7, 0x91, 0x9f, 0xec, 0x8a, 0xdf, 0x58, 0x14, 0xf7, 0x63, 0xe6, 0x49, 0xb6, 0x37,
  1901. 0x36, 0x1b, 0xa7, 0x34, 0x5e, 0x7a, 0xfd, 0x7d, 0x11, 0x0c, 0x92, 0xfc, 0xb2, 0x10, 0x2c, 0x2d,
  1902. 0xc7, 0x9e, 0x90, 0xaf, 0x86, 0xbe, 0x96, 0x37, 0xa5, 0xc5, 0xc6, 0xc8, 0x7f, 0x61, 0x29, 0xa3,
  1903. 0x95, 0x1e, 0x5d, 0x5d, 0xa6, 0x50, 0xe2, 0x40, 0xf5, 0x80, 0x85, 0x2f, 0x43, 0xaf, 0x67, 0xaa,
  1904. 0x4b, 0x42, 0xd2, 0xff, 0xd8, 0xce, 0xa9, 0xde, 0xd0, 0xd1, 0xbd, 0x41, 0x27, 0x95, 0xa1, 0xb0,
  1905. 0x52, 0xa7, 0xe5, 0x11, 0x83, 0xb0, 0x0a, 0x65, 0x0c, 0xab, 0xae, 0x2e, 0xf5, 0xb6, 0x26, 0xe8,
  1906. 0x3f, 0xa1, 0x8e, 0x47, 0x7e, 0xf6, 0xa6, 0x15, 0xc9, 0x2c, 0x69, 0x4b, 0x5b, 0x25, 0x9d, 0xb4,
  1907. 0x98, 0x65, 0x96, 0x96, 0x5b, 0xb2, 0xcc, 0xe6, 0xfc, 0x7b, 0xb2, 0xac, 0x64, 0x67, 0x19, 0x05,
  1908. 0xd8, 0x0f, 0xe4, 0x78, 0xd6, 0x9f, 0x42, 0xe6, 0xcf, 0x77, 0x05, 0x8b, 0x49, 0x90, 0x67, 0xd3,
  1909. 0xe6, 0x52, 0xcb, 0xdc, 0x8c, 0xef, 0x23, 0x18, 0xbb, 0x01, 0x35, 0xcc, 0x4f, 0x61, 0x8a, 0x41,
  1910. 0xcc, 0xae, 0x4d, 0x8a, 0xe2, 0x27, 0xfd, 0x17, 0xd4, 0xcd, 0xaa, 0x18, 0x62, 0x1a, 0xc6, 0x4c,
  1911. 0x0c, 0x93, 0x14, 0xc6, 0x6f, 0xda, 0x81, 0xc5, 0x23, 0x26, 0x0f, 0x75, 0x27, 0x47, 0x4f, 0xee,
  1912. 0x41, 0x15, 0x1b, 0xf7, 0x65, 0x3a, 0x43, 0x54, 0x46, 0xba, 0x83, 0xa2, 0x34, 0x0f, 0xd3, 0xab,
  1913. 0x83, 0xdf, 0x64, 0x0d, 0x2a, 0xa2, 0x7b, 0x85, 0xbc, 0xba, 0x42, 0x96, 0x45, 0xf7, 0xaa, 0xe5,
  1914. 0xd3, 0x17, 0x93, 0x4a, 0xd5, 0xc5, 0x18, 0xf0, 0xd7, 0x41, 0x76, 0x31, 0x34, 0x65, 0x6f, 0x56,
  1915. 0xb4, 0x37, 0xa3, 0x9f, 0xc1, 0x86, 0xd6, 0xa0, 0xfa, 0x5c, 0xa7, 0x7b, 0x75, 0xce, 0xe2, 0xbd,
  1916. 0xb1, 0xee, 0xe5, 0xa8, 0x70, 0x9e, 0x95, 0xf4, 0xf4, 0x46, 0x41, 0x41, 0xb6, 0x95, 0xc5, 0x9c,
  1917. 0x87, 0xe6, 0x9c, 0xd6, 0xed, 0xe2, 0x65, 0x44, 0x38, 0x0f, 0xdb, 0x86, 0x8b, 0x1e, 0x43, 0xc3,
  1918. 0x82, 0xdf, 0xa7, 0xaa, 0x92, 0xfb, 0x50, 0xe3, 0x28, 0x92, 0x85, 0xa5, 0xca, 0x75, 0xb7, 0xa6,
  1919. 0xbb, 0xb0, 0xac, 0xad, 0x33, 0xbb, 0xfc, 0x09, 0x83, 0xb6, 0x12, 0x15, 0xbb, 0x5d, 0x19, 0xbc,
  1920. 0x55, 0xd1, 0xcd, 0x4e, 0x01, 0x0d, 0x5b, 0x48, 0x4e, 0xe1, 0xd9, 0x34, 0x27, 0x76, 0xfe, 0x8a,
  1921. 0xa7, 0x08, 0xb3, 0xd9, 0x8a, 0xb5, 0x99, 0xe1, 0x32, 0x0c, 0xf4, 0x39, 0x54, 0x34, 0x42, 0xfe,
  1922. 0x01, 0x75, 0x8d, 0x5d, 0xa6, 0xae, 0xd7, 0x34, 0xd0, 0xf2, 0xf1, 0x20, 0x06, 0xde, 0xa5, 0x15,
  1923. 0x83, 0xca, 0xc0, 0xc3, 0xc1, 0x8e, 0xb6, 0x60, 0xe5, 0xc0, 0x93, 0xde, 0x39, 0x8b, 0x07, 0x81,
  1924. 0x10, 0x01, 0xc7, 0x49, 0x0e, 0x55, 0xc5, 0xa3, 0x90, 0x5d, 0x5a, 0x75, 0xb9, 0x86, 0x80, 0x2a,
  1925. 0xe7, 0x73, 0x93, 0xe1, 0xc7, 0xc2, 0xac, 0x2e, 0x41, 0xf6, 0xa7, 0xaf, 0xdc, 0x23, 0xcb, 0x99,
  1926. 0x19, 0xf6, 0x8f, 0xd0, 0x8c, 0x7e, 0x5f, 0x80, 0xca, 0x49, 0x5f, 0x35, 0xce, 0x25, 0x28, 0xb6,
  1927. 0xd2, 0xb4, 0xd0, 0x77, 0xe5, 0xa4, 0xdf, 0x4a, 0x0b, 0x3e, 0x7e, 0x63, 0x41, 0x3e, 0xf7, 0x62,
  1928. 0x89, 0x45, 0xd7, 0x4c, 0xa8, 0x3a, 0x39, 0xa6, 0x50, 0x6b, 0x82, 0x35, 0x33, 0xb8, 0xc1, 0x1d,
  1929. 0xa8, 0x76, 0xe4, 0x48, 0x0d, 0xd1, 0xba, 0xde, 0x27, 0x24, 0xb6, 0x92, 0xdd, 0x1e, 0x3b, 0x8a,
  1930. 0xf9, 0x68, 0xa8, 0x8a, 0x7c, 0xa9, 0x9d, 0xd2, 0x38, 0xd5, 0x76, 0xe4, 0xe8, 0x38, 0x88, 0xfa,
  1931. 0xe7, 0x2c, 0x16, 0x3c, 0x52, 0x45, 0xbe, 0xd4, 0x9e, 0x04, 0x51, 0x43, 0x47, 0x8e, 0xec, 0x21,
  1932. 0x32, 0xa5, 0x31, 0x00, 0x1d, 0xcc, 0x27, 0xa7, 0xae, 0xaf, 0xb8, 0x22, 0xd0, 0x9a, 0x5d, 0xdf,
  1933. 0x8f, 0x99, 0x10, 0x0e, 0x68, 0x6b, 0x0c, 0x39, 0xd5, 0xbc, 0x1a, 0x33, 0xcd, 0xcb, 0x6a, 0x38,
  1934. 0x4d, 0x7d, 0x3b, 0x0c, 0xa9, 0x24, 0xaf, 0x58, 0xb7, 0x8f, 0x8d, 0x85, 0x39, 0x8b, 0x6a, 0xd1,
  1935. 0x42, 0x70, 0xd6, 0x55, 0x94, 0x52, 0xbc, 0xa4, 0x67, 0xdd, 0x14, 0x40, 0xbd, 0x8a, 0xd8, 0x1b,
  1936. 0x3b, 0xcb, 0xda, 0x22, 0x43, 0xe2, 0xcc, 0x7e, 0xca, 0xe4, 0xb7, 0xe9, 0xdc, 0xd4, 0xf2, 0x9d,
  1937. 0x3b, 0x4a, 0xf9, 0x34, 0xac, 0x22, 0x69, 0x32, 0xdb, 0x59, 0x31, 0x91, 0x4c, 0x32, 0x1d, 0x1b,
  1938. 0xb6, 0x17, 0x86, 0xea, 0x01, 0x44, 0xf4, 0x5a, 0x42, 0xab, 0xc6, 0xef, 0xa9, 0x95, 0xbb, 0xfa,
  1939. 0xcc, 0x34, 0x85, 0x36, 0x7d, 0x31, 0xf2, 0xf8, 0x57, 0xdf, 0x04, 0xce, 0xaa, 0xf6, 0xd5, 0x90,
  1940. 0x78, 0x2e, 0x27, 0x7d, 0xa9, 0x94, 0xab, 0xee, 0xe0, 0xac, 0xe9, 0x73, 0x99, 0x00, 0xd1, 0xe3,
  1941. 0x63, 0xee, 0xf9, 0x3a, 0xfe, 0xeb, 0x8a, 0x23, 0x03, 0xe8, 0xa6, 0xc9, 0xbf, 0xf9, 0xbd, 0x79,
  1942. 0x03, 0xa0, 0x23, 0x47, 0x3e, 0x8b, 0xf2, 0xb2, 0x94, 0x5e, 0x58, 0xab, 0x62, 0x26, 0x87, 0xed,
  1943. 0x9c, 0x28, 0x4e, 0xe5, 0xc4, 0x0d, 0xc3, 0xcb, 0xe3, 0x5f, 0xeb, 0xf8, 0xd6, 0x30, 0x17, 0x91,
  1944. 0xec, 0x40, 0xf5, 0x88, 0x49, 0x4c, 0x61, 0x62, 0x57, 0x36, 0xeb, 0x9d, 0xeb, 0xde, 0x9b, 0xc1,
  1945. 0xcd, 0x5b, 0xee, 0x73, 0x80, 0x73, 0x2f, 0x16, 0x4c, 0xbd, 0xf0, 0x88, 0xcd, 0x66, 0x3f, 0x0d,
  1946. 0x5d, 0x67, 0x76, 0xc1, 0x28, 0x78, 0x0a, 0x4b, 0xba, 0x02, 0x62, 0x07, 0xc6, 0x17, 0x00, 0xb9,
  1947. 0x63, 0xcf, 0xdb, 0xf8, 0x32, 0x72, 0x57, 0x73, 0x1e, 0x09, 0xaa, 0x2a, 0xef, 0xfa, 0xfe, 0x49,
  1948. 0x5f, 0x12, 0xbb, 0x44, 0xea, 0xdb, 0xee, 0xce, 0x40, 0x82, 0xec, 0xc2, 0x22, 0x9e, 0x4b, 0x3a,
  1949. 0xfe, 0x4e, 0x58, 0x6b, 0xcf, 0xd8, 0xee, 0x9c, 0x05, 0x41, 0x5e, 0x40, 0xf3, 0x88, 0xc9, 0xec,
  1950. 0xa5, 0x79, 0x2f, 0x7f, 0xe0, 0x99, 0xd4, 0x30, 0x31, 0x33, 0xed, 0x00, 0x1c, 0x31, 0x69, 0xa6,
  1951. 0x0d, 0xb2, 0x96, 0x37, 0x81, 0x5c, 0xbb, 0xb9, 0x30, 0xce, 0x5b, 0xcd, 0x73, 0x2e, 0x64, 0x32,
  1952. 0xf0, 0x4d, 0x1c, 0x96, 0x35, 0xe2, 0xba, 0xf9, 0x38, 0x0e, 0x40, 0xa6, 0xd9, 0x64, 0x21, 0x58,
  1953. 0x9b, 0xf1, 0x14, 0xcb, 0xbc, 0x4b, 0x66, 0x03, 0x60, 0x2c, 0x37, 0xc9, 0x38, 0x21, 0x98, 0xa5,
  1954. 0xaf, 0x9b, 0x0b, 0x0b, 0x72, 0x06, 0x2b, 0x47, 0x4c, 0x4e, 0x16, 0x7c, 0xb2, 0x71, 0x43, 0x2f,
  1955. 0xb8, 0x76, 0x6f, 0x5a, 0x15, 0xe4, 0x00, 0x5c, 0xed, 0xca, 0xf4, 0x7b, 0xeb, 0x83, 0x32, 0xe8,
  1956. 0x6b, 0x58, 0xcf, 0xd7, 0x42, 0xfe, 0x7d, 0xcb, 0x9b, 0x8f, 0x5d, 0xbb, 0xb7, 0xb2, 0x08, 0x32,
  1957. 0x80, 0xfb, 0x73, 0x07, 0x1d, 0xf2, 0x3f, 0x4b, 0xfe, 0xa6, 0x39, 0xca, 0x7d, 0x4f, 0x46, 0xcc,
  1958. 0x4e, 0xc8, 0x46, 0x3a, 0xe2, 0xcc, 0x88, 0x99, 0x49, 0xcf, 0x9d, 0xb7, 0x82, 0x19, 0xd2, 0xb4,
  1959. 0x67, 0x9f, 0x9c, 0x40, 0xba, 0x33, 0xb2, 0xd9, 0x98, 0xf4, 0x32, 0x91, 0x36, 0x43, 0xc9, 0x2c,
  1960. 0x6f, 0x3a, 0x0f, 0xb9, 0xf3, 0xd7, 0xd0, 0x0a, 0x32, 0xe9, 0xe7, 0x87, 0x1c, 0xea, 0xeb, 0x8a,
  1961. 0xfa, 0x67, 0xf7, 0xe4, 0x8f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x9e, 0x74, 0x65, 0xb9, 0xc6, 0x13,
  1962. 0x00, 0x00,
  1963. }
  1964. // Reference imports to suppress errors if they are not otherwise used.
  1965. var _ context.Context
  1966. var _ grpc.ClientConn
  1967. // This is a compile-time assertion to ensure that this generated file
  1968. // is compatible with the grpc package it is being compiled against.
  1969. const _ = grpc.SupportPackageIsVersion4
  1970. // TransformClient is the client API for Transform service.
  1971. //
  1972. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  1973. type TransformClient interface {
  1974. GetUser(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error)
  1975. ParseToken(ctx context.Context, in *TokenRequest, opts ...grpc.CallOption) (*TokenResponse, error)
  1976. //获取erp 省、城市树
  1977. GetErpCityTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
  1978. AddMkt(ctx context.Context, in *MktReq, opts ...grpc.CallOption) (*MktRes, error)
  1979. //获取erp 字典
  1980. LoadOptionset(ctx context.Context, in *OptionsetReq, opts ...grpc.CallOption) (*OptionsetRes, error)
  1981. GetSchoolIds(ctx context.Context, in *SchoolIdsReq, opts ...grpc.CallOption) (*SchoolIdsRes, error)
  1982. GetCityIds(ctx context.Context, in *CityIdsReq, opts ...grpc.CallOption) (*CityIdsRes, error)
  1983. PostExcelLog(ctx context.Context, in *ExcelLogReq, opts ...grpc.CallOption) (*ExcelLogRes, error)
  1984. GetErpOptionset(ctx context.Context, in *OptionCode, opts ...grpc.CallOption) (*Options, error)
  1985. GetStudent(ctx context.Context, in *StudentReq, opts ...grpc.CallOption) (*StudentRes, error)
  1986. //获取数据权限
  1987. GetDataPermission(ctx context.Context, in *DataPermissionReq, opts ...grpc.CallOption) (*DataPermissionRes, error)
  1988. //获取erp 渠道细分树
  1989. GetErpMktNetWorkDetailTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
  1990. //获取erp 渠道细分树
  1991. GetErpMktNetWorkDetail(ctx context.Context, in *ErpMktNetWorkDetailReq, opts ...grpc.CallOption) (*ErpMktNetWorkDetailRes, error)
  1992. //获取erp 用户校区权限
  1993. GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error)
  1994. //获取 erp 用户角色
  1995. GetErpRole(ctx context.Context, in *GetErpRoleReq, opts ...grpc.CallOption) (*GetErpRoleRes, error)
  1996. //获取 erp 全部校区
  1997. GetErpSchool(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*GetErpSchoolRes, error)
  1998. //获取 erp 活动
  1999. GetErpActive(ctx context.Context, in *GetErpActiveReq, opts ...grpc.CallOption) (*GetErpActiveRes, error)
  2000. //获取erp 省、城、校区
  2001. GetErpOrganSchTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
  2002. }
  2003. type transformClient struct {
  2004. cc *grpc.ClientConn
  2005. }
  2006. func NewTransformClient(cc *grpc.ClientConn) TransformClient {
  2007. return &transformClient{cc}
  2008. }
  2009. func (c *transformClient) GetUser(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error) {
  2010. out := new(UserResponse)
  2011. err := c.cc.Invoke(ctx, "/transform.Transform/GetUser", in, out, opts...)
  2012. if err != nil {
  2013. return nil, err
  2014. }
  2015. return out, nil
  2016. }
  2017. func (c *transformClient) ParseToken(ctx context.Context, in *TokenRequest, opts ...grpc.CallOption) (*TokenResponse, error) {
  2018. out := new(TokenResponse)
  2019. err := c.cc.Invoke(ctx, "/transform.Transform/ParseToken", in, out, opts...)
  2020. if err != nil {
  2021. return nil, err
  2022. }
  2023. return out, nil
  2024. }
  2025. func (c *transformClient) GetErpCityTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
  2026. out := new(TreeNodes)
  2027. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpCityTree", in, out, opts...)
  2028. if err != nil {
  2029. return nil, err
  2030. }
  2031. return out, nil
  2032. }
  2033. func (c *transformClient) AddMkt(ctx context.Context, in *MktReq, opts ...grpc.CallOption) (*MktRes, error) {
  2034. out := new(MktRes)
  2035. err := c.cc.Invoke(ctx, "/transform.Transform/AddMkt", in, out, opts...)
  2036. if err != nil {
  2037. return nil, err
  2038. }
  2039. return out, nil
  2040. }
  2041. func (c *transformClient) LoadOptionset(ctx context.Context, in *OptionsetReq, opts ...grpc.CallOption) (*OptionsetRes, error) {
  2042. out := new(OptionsetRes)
  2043. err := c.cc.Invoke(ctx, "/transform.Transform/LoadOptionset", in, out, opts...)
  2044. if err != nil {
  2045. return nil, err
  2046. }
  2047. return out, nil
  2048. }
  2049. func (c *transformClient) GetSchoolIds(ctx context.Context, in *SchoolIdsReq, opts ...grpc.CallOption) (*SchoolIdsRes, error) {
  2050. out := new(SchoolIdsRes)
  2051. err := c.cc.Invoke(ctx, "/transform.Transform/GetSchoolIds", in, out, opts...)
  2052. if err != nil {
  2053. return nil, err
  2054. }
  2055. return out, nil
  2056. }
  2057. func (c *transformClient) GetCityIds(ctx context.Context, in *CityIdsReq, opts ...grpc.CallOption) (*CityIdsRes, error) {
  2058. out := new(CityIdsRes)
  2059. err := c.cc.Invoke(ctx, "/transform.Transform/GetCityIds", in, out, opts...)
  2060. if err != nil {
  2061. return nil, err
  2062. }
  2063. return out, nil
  2064. }
  2065. func (c *transformClient) PostExcelLog(ctx context.Context, in *ExcelLogReq, opts ...grpc.CallOption) (*ExcelLogRes, error) {
  2066. out := new(ExcelLogRes)
  2067. err := c.cc.Invoke(ctx, "/transform.Transform/PostExcelLog", in, out, opts...)
  2068. if err != nil {
  2069. return nil, err
  2070. }
  2071. return out, nil
  2072. }
  2073. func (c *transformClient) GetErpOptionset(ctx context.Context, in *OptionCode, opts ...grpc.CallOption) (*Options, error) {
  2074. out := new(Options)
  2075. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOptionset", in, out, opts...)
  2076. if err != nil {
  2077. return nil, err
  2078. }
  2079. return out, nil
  2080. }
  2081. func (c *transformClient) GetStudent(ctx context.Context, in *StudentReq, opts ...grpc.CallOption) (*StudentRes, error) {
  2082. out := new(StudentRes)
  2083. err := c.cc.Invoke(ctx, "/transform.Transform/GetStudent", in, out, opts...)
  2084. if err != nil {
  2085. return nil, err
  2086. }
  2087. return out, nil
  2088. }
  2089. func (c *transformClient) GetDataPermission(ctx context.Context, in *DataPermissionReq, opts ...grpc.CallOption) (*DataPermissionRes, error) {
  2090. out := new(DataPermissionRes)
  2091. err := c.cc.Invoke(ctx, "/transform.Transform/GetDataPermission", in, out, opts...)
  2092. if err != nil {
  2093. return nil, err
  2094. }
  2095. return out, nil
  2096. }
  2097. func (c *transformClient) GetErpMktNetWorkDetailTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
  2098. out := new(TreeNodes)
  2099. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpMktNetWorkDetailTree", in, out, opts...)
  2100. if err != nil {
  2101. return nil, err
  2102. }
  2103. return out, nil
  2104. }
  2105. func (c *transformClient) GetErpMktNetWorkDetail(ctx context.Context, in *ErpMktNetWorkDetailReq, opts ...grpc.CallOption) (*ErpMktNetWorkDetailRes, error) {
  2106. out := new(ErpMktNetWorkDetailRes)
  2107. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpMktNetWorkDetail", in, out, opts...)
  2108. if err != nil {
  2109. return nil, err
  2110. }
  2111. return out, nil
  2112. }
  2113. func (c *transformClient) GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error) {
  2114. out := new(GetErpOrganSchPerByUserIdRes)
  2115. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOrganSchPerByUserId", in, out, opts...)
  2116. if err != nil {
  2117. return nil, err
  2118. }
  2119. return out, nil
  2120. }
  2121. func (c *transformClient) GetErpRole(ctx context.Context, in *GetErpRoleReq, opts ...grpc.CallOption) (*GetErpRoleRes, error) {
  2122. out := new(GetErpRoleRes)
  2123. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpRole", in, out, opts...)
  2124. if err != nil {
  2125. return nil, err
  2126. }
  2127. return out, nil
  2128. }
  2129. func (c *transformClient) GetErpSchool(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*GetErpSchoolRes, error) {
  2130. out := new(GetErpSchoolRes)
  2131. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpSchool", in, out, opts...)
  2132. if err != nil {
  2133. return nil, err
  2134. }
  2135. return out, nil
  2136. }
  2137. func (c *transformClient) GetErpActive(ctx context.Context, in *GetErpActiveReq, opts ...grpc.CallOption) (*GetErpActiveRes, error) {
  2138. out := new(GetErpActiveRes)
  2139. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpActive", in, out, opts...)
  2140. if err != nil {
  2141. return nil, err
  2142. }
  2143. return out, nil
  2144. }
  2145. func (c *transformClient) GetErpOrganSchTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
  2146. out := new(TreeNodes)
  2147. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOrganSchTree", in, out, opts...)
  2148. if err != nil {
  2149. return nil, err
  2150. }
  2151. return out, nil
  2152. }
  2153. // TransformServer is the server API for Transform service.
  2154. type TransformServer interface {
  2155. GetUser(context.Context, *UserRequest) (*UserResponse, error)
  2156. ParseToken(context.Context, *TokenRequest) (*TokenResponse, error)
  2157. //获取erp 省、城市树
  2158. GetErpCityTree(context.Context, *Empty) (*TreeNodes, error)
  2159. AddMkt(context.Context, *MktReq) (*MktRes, error)
  2160. //获取erp 字典
  2161. LoadOptionset(context.Context, *OptionsetReq) (*OptionsetRes, error)
  2162. GetSchoolIds(context.Context, *SchoolIdsReq) (*SchoolIdsRes, error)
  2163. GetCityIds(context.Context, *CityIdsReq) (*CityIdsRes, error)
  2164. PostExcelLog(context.Context, *ExcelLogReq) (*ExcelLogRes, error)
  2165. GetErpOptionset(context.Context, *OptionCode) (*Options, error)
  2166. GetStudent(context.Context, *StudentReq) (*StudentRes, error)
  2167. //获取数据权限
  2168. GetDataPermission(context.Context, *DataPermissionReq) (*DataPermissionRes, error)
  2169. //获取erp 渠道细分树
  2170. GetErpMktNetWorkDetailTree(context.Context, *Empty) (*TreeNodes, error)
  2171. //获取erp 渠道细分树
  2172. GetErpMktNetWorkDetail(context.Context, *ErpMktNetWorkDetailReq) (*ErpMktNetWorkDetailRes, error)
  2173. //获取erp 用户校区权限
  2174. GetErpOrganSchPerByUserId(context.Context, *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error)
  2175. //获取 erp 用户角色
  2176. GetErpRole(context.Context, *GetErpRoleReq) (*GetErpRoleRes, error)
  2177. //获取 erp 全部校区
  2178. GetErpSchool(context.Context, *Empty) (*GetErpSchoolRes, error)
  2179. //获取 erp 活动
  2180. GetErpActive(context.Context, *GetErpActiveReq) (*GetErpActiveRes, error)
  2181. //获取erp 省、城、校区
  2182. GetErpOrganSchTree(context.Context, *Empty) (*TreeNodes, error)
  2183. }
  2184. // UnimplementedTransformServer can be embedded to have forward compatible implementations.
  2185. type UnimplementedTransformServer struct {
  2186. }
  2187. func (*UnimplementedTransformServer) GetUser(ctx context.Context, req *UserRequest) (*UserResponse, error) {
  2188. return nil, status.Errorf(codes.Unimplemented, "method GetUser not implemented")
  2189. }
  2190. func (*UnimplementedTransformServer) ParseToken(ctx context.Context, req *TokenRequest) (*TokenResponse, error) {
  2191. return nil, status.Errorf(codes.Unimplemented, "method ParseToken not implemented")
  2192. }
  2193. func (*UnimplementedTransformServer) GetErpCityTree(ctx context.Context, req *Empty) (*TreeNodes, error) {
  2194. return nil, status.Errorf(codes.Unimplemented, "method GetErpCityTree not implemented")
  2195. }
  2196. func (*UnimplementedTransformServer) AddMkt(ctx context.Context, req *MktReq) (*MktRes, error) {
  2197. return nil, status.Errorf(codes.Unimplemented, "method AddMkt not implemented")
  2198. }
  2199. func (*UnimplementedTransformServer) LoadOptionset(ctx context.Context, req *OptionsetReq) (*OptionsetRes, error) {
  2200. return nil, status.Errorf(codes.Unimplemented, "method LoadOptionset not implemented")
  2201. }
  2202. func (*UnimplementedTransformServer) GetSchoolIds(ctx context.Context, req *SchoolIdsReq) (*SchoolIdsRes, error) {
  2203. return nil, status.Errorf(codes.Unimplemented, "method GetSchoolIds not implemented")
  2204. }
  2205. func (*UnimplementedTransformServer) GetCityIds(ctx context.Context, req *CityIdsReq) (*CityIdsRes, error) {
  2206. return nil, status.Errorf(codes.Unimplemented, "method GetCityIds not implemented")
  2207. }
  2208. func (*UnimplementedTransformServer) PostExcelLog(ctx context.Context, req *ExcelLogReq) (*ExcelLogRes, error) {
  2209. return nil, status.Errorf(codes.Unimplemented, "method PostExcelLog not implemented")
  2210. }
  2211. func (*UnimplementedTransformServer) GetErpOptionset(ctx context.Context, req *OptionCode) (*Options, error) {
  2212. return nil, status.Errorf(codes.Unimplemented, "method GetErpOptionset not implemented")
  2213. }
  2214. func (*UnimplementedTransformServer) GetStudent(ctx context.Context, req *StudentReq) (*StudentRes, error) {
  2215. return nil, status.Errorf(codes.Unimplemented, "method GetStudent not implemented")
  2216. }
  2217. func (*UnimplementedTransformServer) GetDataPermission(ctx context.Context, req *DataPermissionReq) (*DataPermissionRes, error) {
  2218. return nil, status.Errorf(codes.Unimplemented, "method GetDataPermission not implemented")
  2219. }
  2220. func (*UnimplementedTransformServer) GetErpMktNetWorkDetailTree(ctx context.Context, req *Empty) (*TreeNodes, error) {
  2221. return nil, status.Errorf(codes.Unimplemented, "method GetErpMktNetWorkDetailTree not implemented")
  2222. }
  2223. func (*UnimplementedTransformServer) GetErpMktNetWorkDetail(ctx context.Context, req *ErpMktNetWorkDetailReq) (*ErpMktNetWorkDetailRes, error) {
  2224. return nil, status.Errorf(codes.Unimplemented, "method GetErpMktNetWorkDetail not implemented")
  2225. }
  2226. func (*UnimplementedTransformServer) GetErpOrganSchPerByUserId(ctx context.Context, req *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error) {
  2227. return nil, status.Errorf(codes.Unimplemented, "method GetErpOrganSchPerByUserId not implemented")
  2228. }
  2229. func (*UnimplementedTransformServer) GetErpRole(ctx context.Context, req *GetErpRoleReq) (*GetErpRoleRes, error) {
  2230. return nil, status.Errorf(codes.Unimplemented, "method GetErpRole not implemented")
  2231. }
  2232. func (*UnimplementedTransformServer) GetErpSchool(ctx context.Context, req *Empty) (*GetErpSchoolRes, error) {
  2233. return nil, status.Errorf(codes.Unimplemented, "method GetErpSchool not implemented")
  2234. }
  2235. func (*UnimplementedTransformServer) GetErpActive(ctx context.Context, req *GetErpActiveReq) (*GetErpActiveRes, error) {
  2236. return nil, status.Errorf(codes.Unimplemented, "method GetErpActive not implemented")
  2237. }
  2238. func (*UnimplementedTransformServer) GetErpOrganSchTree(ctx context.Context, req *Empty) (*TreeNodes, error) {
  2239. return nil, status.Errorf(codes.Unimplemented, "method GetErpOrganSchTree not implemented")
  2240. }
  2241. func RegisterTransformServer(s *grpc.Server, srv TransformServer) {
  2242. s.RegisterService(&_Transform_serviceDesc, srv)
  2243. }
  2244. func _Transform_GetUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2245. in := new(UserRequest)
  2246. if err := dec(in); err != nil {
  2247. return nil, err
  2248. }
  2249. if interceptor == nil {
  2250. return srv.(TransformServer).GetUser(ctx, in)
  2251. }
  2252. info := &grpc.UnaryServerInfo{
  2253. Server: srv,
  2254. FullMethod: "/transform.Transform/GetUser",
  2255. }
  2256. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2257. return srv.(TransformServer).GetUser(ctx, req.(*UserRequest))
  2258. }
  2259. return interceptor(ctx, in, info, handler)
  2260. }
  2261. func _Transform_ParseToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2262. in := new(TokenRequest)
  2263. if err := dec(in); err != nil {
  2264. return nil, err
  2265. }
  2266. if interceptor == nil {
  2267. return srv.(TransformServer).ParseToken(ctx, in)
  2268. }
  2269. info := &grpc.UnaryServerInfo{
  2270. Server: srv,
  2271. FullMethod: "/transform.Transform/ParseToken",
  2272. }
  2273. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2274. return srv.(TransformServer).ParseToken(ctx, req.(*TokenRequest))
  2275. }
  2276. return interceptor(ctx, in, info, handler)
  2277. }
  2278. func _Transform_GetErpCityTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2279. in := new(Empty)
  2280. if err := dec(in); err != nil {
  2281. return nil, err
  2282. }
  2283. if interceptor == nil {
  2284. return srv.(TransformServer).GetErpCityTree(ctx, in)
  2285. }
  2286. info := &grpc.UnaryServerInfo{
  2287. Server: srv,
  2288. FullMethod: "/transform.Transform/GetErpCityTree",
  2289. }
  2290. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2291. return srv.(TransformServer).GetErpCityTree(ctx, req.(*Empty))
  2292. }
  2293. return interceptor(ctx, in, info, handler)
  2294. }
  2295. func _Transform_AddMkt_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2296. in := new(MktReq)
  2297. if err := dec(in); err != nil {
  2298. return nil, err
  2299. }
  2300. if interceptor == nil {
  2301. return srv.(TransformServer).AddMkt(ctx, in)
  2302. }
  2303. info := &grpc.UnaryServerInfo{
  2304. Server: srv,
  2305. FullMethod: "/transform.Transform/AddMkt",
  2306. }
  2307. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2308. return srv.(TransformServer).AddMkt(ctx, req.(*MktReq))
  2309. }
  2310. return interceptor(ctx, in, info, handler)
  2311. }
  2312. func _Transform_LoadOptionset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2313. in := new(OptionsetReq)
  2314. if err := dec(in); err != nil {
  2315. return nil, err
  2316. }
  2317. if interceptor == nil {
  2318. return srv.(TransformServer).LoadOptionset(ctx, in)
  2319. }
  2320. info := &grpc.UnaryServerInfo{
  2321. Server: srv,
  2322. FullMethod: "/transform.Transform/LoadOptionset",
  2323. }
  2324. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2325. return srv.(TransformServer).LoadOptionset(ctx, req.(*OptionsetReq))
  2326. }
  2327. return interceptor(ctx, in, info, handler)
  2328. }
  2329. func _Transform_GetSchoolIds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2330. in := new(SchoolIdsReq)
  2331. if err := dec(in); err != nil {
  2332. return nil, err
  2333. }
  2334. if interceptor == nil {
  2335. return srv.(TransformServer).GetSchoolIds(ctx, in)
  2336. }
  2337. info := &grpc.UnaryServerInfo{
  2338. Server: srv,
  2339. FullMethod: "/transform.Transform/GetSchoolIds",
  2340. }
  2341. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2342. return srv.(TransformServer).GetSchoolIds(ctx, req.(*SchoolIdsReq))
  2343. }
  2344. return interceptor(ctx, in, info, handler)
  2345. }
  2346. func _Transform_GetCityIds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2347. in := new(CityIdsReq)
  2348. if err := dec(in); err != nil {
  2349. return nil, err
  2350. }
  2351. if interceptor == nil {
  2352. return srv.(TransformServer).GetCityIds(ctx, in)
  2353. }
  2354. info := &grpc.UnaryServerInfo{
  2355. Server: srv,
  2356. FullMethod: "/transform.Transform/GetCityIds",
  2357. }
  2358. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2359. return srv.(TransformServer).GetCityIds(ctx, req.(*CityIdsReq))
  2360. }
  2361. return interceptor(ctx, in, info, handler)
  2362. }
  2363. func _Transform_PostExcelLog_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2364. in := new(ExcelLogReq)
  2365. if err := dec(in); err != nil {
  2366. return nil, err
  2367. }
  2368. if interceptor == nil {
  2369. return srv.(TransformServer).PostExcelLog(ctx, in)
  2370. }
  2371. info := &grpc.UnaryServerInfo{
  2372. Server: srv,
  2373. FullMethod: "/transform.Transform/PostExcelLog",
  2374. }
  2375. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2376. return srv.(TransformServer).PostExcelLog(ctx, req.(*ExcelLogReq))
  2377. }
  2378. return interceptor(ctx, in, info, handler)
  2379. }
  2380. func _Transform_GetErpOptionset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2381. in := new(OptionCode)
  2382. if err := dec(in); err != nil {
  2383. return nil, err
  2384. }
  2385. if interceptor == nil {
  2386. return srv.(TransformServer).GetErpOptionset(ctx, in)
  2387. }
  2388. info := &grpc.UnaryServerInfo{
  2389. Server: srv,
  2390. FullMethod: "/transform.Transform/GetErpOptionset",
  2391. }
  2392. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2393. return srv.(TransformServer).GetErpOptionset(ctx, req.(*OptionCode))
  2394. }
  2395. return interceptor(ctx, in, info, handler)
  2396. }
  2397. func _Transform_GetStudent_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2398. in := new(StudentReq)
  2399. if err := dec(in); err != nil {
  2400. return nil, err
  2401. }
  2402. if interceptor == nil {
  2403. return srv.(TransformServer).GetStudent(ctx, in)
  2404. }
  2405. info := &grpc.UnaryServerInfo{
  2406. Server: srv,
  2407. FullMethod: "/transform.Transform/GetStudent",
  2408. }
  2409. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2410. return srv.(TransformServer).GetStudent(ctx, req.(*StudentReq))
  2411. }
  2412. return interceptor(ctx, in, info, handler)
  2413. }
  2414. func _Transform_GetDataPermission_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2415. in := new(DataPermissionReq)
  2416. if err := dec(in); err != nil {
  2417. return nil, err
  2418. }
  2419. if interceptor == nil {
  2420. return srv.(TransformServer).GetDataPermission(ctx, in)
  2421. }
  2422. info := &grpc.UnaryServerInfo{
  2423. Server: srv,
  2424. FullMethod: "/transform.Transform/GetDataPermission",
  2425. }
  2426. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2427. return srv.(TransformServer).GetDataPermission(ctx, req.(*DataPermissionReq))
  2428. }
  2429. return interceptor(ctx, in, info, handler)
  2430. }
  2431. func _Transform_GetErpMktNetWorkDetailTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2432. in := new(Empty)
  2433. if err := dec(in); err != nil {
  2434. return nil, err
  2435. }
  2436. if interceptor == nil {
  2437. return srv.(TransformServer).GetErpMktNetWorkDetailTree(ctx, in)
  2438. }
  2439. info := &grpc.UnaryServerInfo{
  2440. Server: srv,
  2441. FullMethod: "/transform.Transform/GetErpMktNetWorkDetailTree",
  2442. }
  2443. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2444. return srv.(TransformServer).GetErpMktNetWorkDetailTree(ctx, req.(*Empty))
  2445. }
  2446. return interceptor(ctx, in, info, handler)
  2447. }
  2448. func _Transform_GetErpMktNetWorkDetail_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2449. in := new(ErpMktNetWorkDetailReq)
  2450. if err := dec(in); err != nil {
  2451. return nil, err
  2452. }
  2453. if interceptor == nil {
  2454. return srv.(TransformServer).GetErpMktNetWorkDetail(ctx, in)
  2455. }
  2456. info := &grpc.UnaryServerInfo{
  2457. Server: srv,
  2458. FullMethod: "/transform.Transform/GetErpMktNetWorkDetail",
  2459. }
  2460. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2461. return srv.(TransformServer).GetErpMktNetWorkDetail(ctx, req.(*ErpMktNetWorkDetailReq))
  2462. }
  2463. return interceptor(ctx, in, info, handler)
  2464. }
  2465. func _Transform_GetErpOrganSchPerByUserId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2466. in := new(GetErpOrganSchPerByUserIdReq)
  2467. if err := dec(in); err != nil {
  2468. return nil, err
  2469. }
  2470. if interceptor == nil {
  2471. return srv.(TransformServer).GetErpOrganSchPerByUserId(ctx, in)
  2472. }
  2473. info := &grpc.UnaryServerInfo{
  2474. Server: srv,
  2475. FullMethod: "/transform.Transform/GetErpOrganSchPerByUserId",
  2476. }
  2477. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2478. return srv.(TransformServer).GetErpOrganSchPerByUserId(ctx, req.(*GetErpOrganSchPerByUserIdReq))
  2479. }
  2480. return interceptor(ctx, in, info, handler)
  2481. }
  2482. func _Transform_GetErpRole_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2483. in := new(GetErpRoleReq)
  2484. if err := dec(in); err != nil {
  2485. return nil, err
  2486. }
  2487. if interceptor == nil {
  2488. return srv.(TransformServer).GetErpRole(ctx, in)
  2489. }
  2490. info := &grpc.UnaryServerInfo{
  2491. Server: srv,
  2492. FullMethod: "/transform.Transform/GetErpRole",
  2493. }
  2494. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2495. return srv.(TransformServer).GetErpRole(ctx, req.(*GetErpRoleReq))
  2496. }
  2497. return interceptor(ctx, in, info, handler)
  2498. }
  2499. func _Transform_GetErpSchool_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2500. in := new(Empty)
  2501. if err := dec(in); err != nil {
  2502. return nil, err
  2503. }
  2504. if interceptor == nil {
  2505. return srv.(TransformServer).GetErpSchool(ctx, in)
  2506. }
  2507. info := &grpc.UnaryServerInfo{
  2508. Server: srv,
  2509. FullMethod: "/transform.Transform/GetErpSchool",
  2510. }
  2511. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2512. return srv.(TransformServer).GetErpSchool(ctx, req.(*Empty))
  2513. }
  2514. return interceptor(ctx, in, info, handler)
  2515. }
  2516. func _Transform_GetErpActive_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2517. in := new(GetErpActiveReq)
  2518. if err := dec(in); err != nil {
  2519. return nil, err
  2520. }
  2521. if interceptor == nil {
  2522. return srv.(TransformServer).GetErpActive(ctx, in)
  2523. }
  2524. info := &grpc.UnaryServerInfo{
  2525. Server: srv,
  2526. FullMethod: "/transform.Transform/GetErpActive",
  2527. }
  2528. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2529. return srv.(TransformServer).GetErpActive(ctx, req.(*GetErpActiveReq))
  2530. }
  2531. return interceptor(ctx, in, info, handler)
  2532. }
  2533. func _Transform_GetErpOrganSchTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2534. in := new(Empty)
  2535. if err := dec(in); err != nil {
  2536. return nil, err
  2537. }
  2538. if interceptor == nil {
  2539. return srv.(TransformServer).GetErpOrganSchTree(ctx, in)
  2540. }
  2541. info := &grpc.UnaryServerInfo{
  2542. Server: srv,
  2543. FullMethod: "/transform.Transform/GetErpOrganSchTree",
  2544. }
  2545. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2546. return srv.(TransformServer).GetErpOrganSchTree(ctx, req.(*Empty))
  2547. }
  2548. return interceptor(ctx, in, info, handler)
  2549. }
  2550. var _Transform_serviceDesc = grpc.ServiceDesc{
  2551. ServiceName: "transform.Transform",
  2552. HandlerType: (*TransformServer)(nil),
  2553. Methods: []grpc.MethodDesc{
  2554. {
  2555. MethodName: "GetUser",
  2556. Handler: _Transform_GetUser_Handler,
  2557. },
  2558. {
  2559. MethodName: "ParseToken",
  2560. Handler: _Transform_ParseToken_Handler,
  2561. },
  2562. {
  2563. MethodName: "GetErpCityTree",
  2564. Handler: _Transform_GetErpCityTree_Handler,
  2565. },
  2566. {
  2567. MethodName: "AddMkt",
  2568. Handler: _Transform_AddMkt_Handler,
  2569. },
  2570. {
  2571. MethodName: "LoadOptionset",
  2572. Handler: _Transform_LoadOptionset_Handler,
  2573. },
  2574. {
  2575. MethodName: "GetSchoolIds",
  2576. Handler: _Transform_GetSchoolIds_Handler,
  2577. },
  2578. {
  2579. MethodName: "GetCityIds",
  2580. Handler: _Transform_GetCityIds_Handler,
  2581. },
  2582. {
  2583. MethodName: "PostExcelLog",
  2584. Handler: _Transform_PostExcelLog_Handler,
  2585. },
  2586. {
  2587. MethodName: "GetErpOptionset",
  2588. Handler: _Transform_GetErpOptionset_Handler,
  2589. },
  2590. {
  2591. MethodName: "GetStudent",
  2592. Handler: _Transform_GetStudent_Handler,
  2593. },
  2594. {
  2595. MethodName: "GetDataPermission",
  2596. Handler: _Transform_GetDataPermission_Handler,
  2597. },
  2598. {
  2599. MethodName: "GetErpMktNetWorkDetailTree",
  2600. Handler: _Transform_GetErpMktNetWorkDetailTree_Handler,
  2601. },
  2602. {
  2603. MethodName: "GetErpMktNetWorkDetail",
  2604. Handler: _Transform_GetErpMktNetWorkDetail_Handler,
  2605. },
  2606. {
  2607. MethodName: "GetErpOrganSchPerByUserId",
  2608. Handler: _Transform_GetErpOrganSchPerByUserId_Handler,
  2609. },
  2610. {
  2611. MethodName: "GetErpRole",
  2612. Handler: _Transform_GetErpRole_Handler,
  2613. },
  2614. {
  2615. MethodName: "GetErpSchool",
  2616. Handler: _Transform_GetErpSchool_Handler,
  2617. },
  2618. {
  2619. MethodName: "GetErpActive",
  2620. Handler: _Transform_GetErpActive_Handler,
  2621. },
  2622. {
  2623. MethodName: "GetErpOrganSchTree",
  2624. Handler: _Transform_GetErpOrganSchTree_Handler,
  2625. },
  2626. },
  2627. Streams: []grpc.StreamDesc{},
  2628. Metadata: "transform.proto",
  2629. }