transform.pb.go 90 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604
  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 Tag struct {
  387. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  388. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  389. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  390. XXX_unrecognized []byte `json:"-"`
  391. XXX_sizecache int32 `json:"-"`
  392. }
  393. func (m *Tag) Reset() { *m = Tag{} }
  394. func (m *Tag) String() string { return proto.CompactTextString(m) }
  395. func (*Tag) ProtoMessage() {}
  396. func (*Tag) Descriptor() ([]byte, []int) {
  397. return fileDescriptor_cb4a498eeb2ba07d, []int{7}
  398. }
  399. func (m *Tag) XXX_Unmarshal(b []byte) error {
  400. return xxx_messageInfo_Tag.Unmarshal(m, b)
  401. }
  402. func (m *Tag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  403. return xxx_messageInfo_Tag.Marshal(b, m, deterministic)
  404. }
  405. func (m *Tag) XXX_Merge(src proto.Message) {
  406. xxx_messageInfo_Tag.Merge(m, src)
  407. }
  408. func (m *Tag) XXX_Size() int {
  409. return xxx_messageInfo_Tag.Size(m)
  410. }
  411. func (m *Tag) XXX_DiscardUnknown() {
  412. xxx_messageInfo_Tag.DiscardUnknown(m)
  413. }
  414. var xxx_messageInfo_Tag proto.InternalMessageInfo
  415. func (m *Tag) GetId() int64 {
  416. if m != nil {
  417. return m.Id
  418. }
  419. return 0
  420. }
  421. func (m *Tag) GetName() string {
  422. if m != nil {
  423. return m.Name
  424. }
  425. return ""
  426. }
  427. type OptionsetReq struct {
  428. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  429. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  430. XXX_unrecognized []byte `json:"-"`
  431. XXX_sizecache int32 `json:"-"`
  432. }
  433. func (m *OptionsetReq) Reset() { *m = OptionsetReq{} }
  434. func (m *OptionsetReq) String() string { return proto.CompactTextString(m) }
  435. func (*OptionsetReq) ProtoMessage() {}
  436. func (*OptionsetReq) Descriptor() ([]byte, []int) {
  437. return fileDescriptor_cb4a498eeb2ba07d, []int{8}
  438. }
  439. func (m *OptionsetReq) XXX_Unmarshal(b []byte) error {
  440. return xxx_messageInfo_OptionsetReq.Unmarshal(m, b)
  441. }
  442. func (m *OptionsetReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  443. return xxx_messageInfo_OptionsetReq.Marshal(b, m, deterministic)
  444. }
  445. func (m *OptionsetReq) XXX_Merge(src proto.Message) {
  446. xxx_messageInfo_OptionsetReq.Merge(m, src)
  447. }
  448. func (m *OptionsetReq) XXX_Size() int {
  449. return xxx_messageInfo_OptionsetReq.Size(m)
  450. }
  451. func (m *OptionsetReq) XXX_DiscardUnknown() {
  452. xxx_messageInfo_OptionsetReq.DiscardUnknown(m)
  453. }
  454. var xxx_messageInfo_OptionsetReq proto.InternalMessageInfo
  455. func (m *OptionsetReq) GetCode() string {
  456. if m != nil {
  457. return m.Code
  458. }
  459. return ""
  460. }
  461. type OptionsetRes struct {
  462. 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"`
  463. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  464. XXX_unrecognized []byte `json:"-"`
  465. XXX_sizecache int32 `json:"-"`
  466. }
  467. func (m *OptionsetRes) Reset() { *m = OptionsetRes{} }
  468. func (m *OptionsetRes) String() string { return proto.CompactTextString(m) }
  469. func (*OptionsetRes) ProtoMessage() {}
  470. func (*OptionsetRes) Descriptor() ([]byte, []int) {
  471. return fileDescriptor_cb4a498eeb2ba07d, []int{9}
  472. }
  473. func (m *OptionsetRes) XXX_Unmarshal(b []byte) error {
  474. return xxx_messageInfo_OptionsetRes.Unmarshal(m, b)
  475. }
  476. func (m *OptionsetRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  477. return xxx_messageInfo_OptionsetRes.Marshal(b, m, deterministic)
  478. }
  479. func (m *OptionsetRes) XXX_Merge(src proto.Message) {
  480. xxx_messageInfo_OptionsetRes.Merge(m, src)
  481. }
  482. func (m *OptionsetRes) XXX_Size() int {
  483. return xxx_messageInfo_OptionsetRes.Size(m)
  484. }
  485. func (m *OptionsetRes) XXX_DiscardUnknown() {
  486. xxx_messageInfo_OptionsetRes.DiscardUnknown(m)
  487. }
  488. var xxx_messageInfo_OptionsetRes proto.InternalMessageInfo
  489. func (m *OptionsetRes) GetMapList() map[string]string {
  490. if m != nil {
  491. return m.MapList
  492. }
  493. return nil
  494. }
  495. type OptionCode struct {
  496. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  497. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  498. XXX_unrecognized []byte `json:"-"`
  499. XXX_sizecache int32 `json:"-"`
  500. }
  501. func (m *OptionCode) Reset() { *m = OptionCode{} }
  502. func (m *OptionCode) String() string { return proto.CompactTextString(m) }
  503. func (*OptionCode) ProtoMessage() {}
  504. func (*OptionCode) Descriptor() ([]byte, []int) {
  505. return fileDescriptor_cb4a498eeb2ba07d, []int{10}
  506. }
  507. func (m *OptionCode) XXX_Unmarshal(b []byte) error {
  508. return xxx_messageInfo_OptionCode.Unmarshal(m, b)
  509. }
  510. func (m *OptionCode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  511. return xxx_messageInfo_OptionCode.Marshal(b, m, deterministic)
  512. }
  513. func (m *OptionCode) XXX_Merge(src proto.Message) {
  514. xxx_messageInfo_OptionCode.Merge(m, src)
  515. }
  516. func (m *OptionCode) XXX_Size() int {
  517. return xxx_messageInfo_OptionCode.Size(m)
  518. }
  519. func (m *OptionCode) XXX_DiscardUnknown() {
  520. xxx_messageInfo_OptionCode.DiscardUnknown(m)
  521. }
  522. var xxx_messageInfo_OptionCode proto.InternalMessageInfo
  523. func (m *OptionCode) GetCode() string {
  524. if m != nil {
  525. return m.Code
  526. }
  527. return ""
  528. }
  529. type Options struct {
  530. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  531. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  532. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  533. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  534. XXX_unrecognized []byte `json:"-"`
  535. XXX_sizecache int32 `json:"-"`
  536. }
  537. func (m *Options) Reset() { *m = Options{} }
  538. func (m *Options) String() string { return proto.CompactTextString(m) }
  539. func (*Options) ProtoMessage() {}
  540. func (*Options) Descriptor() ([]byte, []int) {
  541. return fileDescriptor_cb4a498eeb2ba07d, []int{11}
  542. }
  543. func (m *Options) XXX_Unmarshal(b []byte) error {
  544. return xxx_messageInfo_Options.Unmarshal(m, b)
  545. }
  546. func (m *Options) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  547. return xxx_messageInfo_Options.Marshal(b, m, deterministic)
  548. }
  549. func (m *Options) XXX_Merge(src proto.Message) {
  550. xxx_messageInfo_Options.Merge(m, src)
  551. }
  552. func (m *Options) XXX_Size() int {
  553. return xxx_messageInfo_Options.Size(m)
  554. }
  555. func (m *Options) XXX_DiscardUnknown() {
  556. xxx_messageInfo_Options.DiscardUnknown(m)
  557. }
  558. var xxx_messageInfo_Options proto.InternalMessageInfo
  559. func (m *Options) GetCode() string {
  560. if m != nil {
  561. return m.Code
  562. }
  563. return ""
  564. }
  565. func (m *Options) GetName() string {
  566. if m != nil {
  567. return m.Name
  568. }
  569. return ""
  570. }
  571. func (m *Options) GetValue() string {
  572. if m != nil {
  573. return m.Value
  574. }
  575. return ""
  576. }
  577. type ResponseByte struct {
  578. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  579. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  580. XXX_unrecognized []byte `json:"-"`
  581. XXX_sizecache int32 `json:"-"`
  582. }
  583. func (m *ResponseByte) Reset() { *m = ResponseByte{} }
  584. func (m *ResponseByte) String() string { return proto.CompactTextString(m) }
  585. func (*ResponseByte) ProtoMessage() {}
  586. func (*ResponseByte) Descriptor() ([]byte, []int) {
  587. return fileDescriptor_cb4a498eeb2ba07d, []int{12}
  588. }
  589. func (m *ResponseByte) XXX_Unmarshal(b []byte) error {
  590. return xxx_messageInfo_ResponseByte.Unmarshal(m, b)
  591. }
  592. func (m *ResponseByte) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  593. return xxx_messageInfo_ResponseByte.Marshal(b, m, deterministic)
  594. }
  595. func (m *ResponseByte) XXX_Merge(src proto.Message) {
  596. xxx_messageInfo_ResponseByte.Merge(m, src)
  597. }
  598. func (m *ResponseByte) XXX_Size() int {
  599. return xxx_messageInfo_ResponseByte.Size(m)
  600. }
  601. func (m *ResponseByte) XXX_DiscardUnknown() {
  602. xxx_messageInfo_ResponseByte.DiscardUnknown(m)
  603. }
  604. var xxx_messageInfo_ResponseByte proto.InternalMessageInfo
  605. func (m *ResponseByte) GetData() []byte {
  606. if m != nil {
  607. return m.Data
  608. }
  609. return nil
  610. }
  611. type ExcelLogReq struct {
  612. Module string `protobuf:"bytes,1,opt,name=Module,proto3" json:"Module,omitempty"`
  613. Cond string `protobuf:"bytes,2,opt,name=Cond,proto3" json:"Cond,omitempty"`
  614. CreateBy string `protobuf:"bytes,3,opt,name=CreateBy,proto3" json:"CreateBy,omitempty"`
  615. CreateTime string `protobuf:"bytes,4,opt,name=CreateTime,proto3" json:"CreateTime,omitempty"`
  616. LastUpdateBy string `protobuf:"bytes,5,opt,name=LastUpdateBy,proto3" json:"LastUpdateBy,omitempty"`
  617. LastUpdateTime string `protobuf:"bytes,6,opt,name=LastUpdateTime,proto3" json:"LastUpdateTime,omitempty"`
  618. DelFlag string `protobuf:"bytes,7,opt,name=DelFlag,proto3" json:"DelFlag,omitempty"`
  619. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  620. XXX_unrecognized []byte `json:"-"`
  621. XXX_sizecache int32 `json:"-"`
  622. }
  623. func (m *ExcelLogReq) Reset() { *m = ExcelLogReq{} }
  624. func (m *ExcelLogReq) String() string { return proto.CompactTextString(m) }
  625. func (*ExcelLogReq) ProtoMessage() {}
  626. func (*ExcelLogReq) Descriptor() ([]byte, []int) {
  627. return fileDescriptor_cb4a498eeb2ba07d, []int{13}
  628. }
  629. func (m *ExcelLogReq) XXX_Unmarshal(b []byte) error {
  630. return xxx_messageInfo_ExcelLogReq.Unmarshal(m, b)
  631. }
  632. func (m *ExcelLogReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  633. return xxx_messageInfo_ExcelLogReq.Marshal(b, m, deterministic)
  634. }
  635. func (m *ExcelLogReq) XXX_Merge(src proto.Message) {
  636. xxx_messageInfo_ExcelLogReq.Merge(m, src)
  637. }
  638. func (m *ExcelLogReq) XXX_Size() int {
  639. return xxx_messageInfo_ExcelLogReq.Size(m)
  640. }
  641. func (m *ExcelLogReq) XXX_DiscardUnknown() {
  642. xxx_messageInfo_ExcelLogReq.DiscardUnknown(m)
  643. }
  644. var xxx_messageInfo_ExcelLogReq proto.InternalMessageInfo
  645. func (m *ExcelLogReq) GetModule() string {
  646. if m != nil {
  647. return m.Module
  648. }
  649. return ""
  650. }
  651. func (m *ExcelLogReq) GetCond() string {
  652. if m != nil {
  653. return m.Cond
  654. }
  655. return ""
  656. }
  657. func (m *ExcelLogReq) GetCreateBy() string {
  658. if m != nil {
  659. return m.CreateBy
  660. }
  661. return ""
  662. }
  663. func (m *ExcelLogReq) GetCreateTime() string {
  664. if m != nil {
  665. return m.CreateTime
  666. }
  667. return ""
  668. }
  669. func (m *ExcelLogReq) GetLastUpdateBy() string {
  670. if m != nil {
  671. return m.LastUpdateBy
  672. }
  673. return ""
  674. }
  675. func (m *ExcelLogReq) GetLastUpdateTime() string {
  676. if m != nil {
  677. return m.LastUpdateTime
  678. }
  679. return ""
  680. }
  681. func (m *ExcelLogReq) GetDelFlag() string {
  682. if m != nil {
  683. return m.DelFlag
  684. }
  685. return ""
  686. }
  687. type ExcelLogRes struct {
  688. Status int64 `protobuf:"varint,1,opt,name=Status,proto3" json:"Status,omitempty"`
  689. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  690. XXX_unrecognized []byte `json:"-"`
  691. XXX_sizecache int32 `json:"-"`
  692. }
  693. func (m *ExcelLogRes) Reset() { *m = ExcelLogRes{} }
  694. func (m *ExcelLogRes) String() string { return proto.CompactTextString(m) }
  695. func (*ExcelLogRes) ProtoMessage() {}
  696. func (*ExcelLogRes) Descriptor() ([]byte, []int) {
  697. return fileDescriptor_cb4a498eeb2ba07d, []int{14}
  698. }
  699. func (m *ExcelLogRes) XXX_Unmarshal(b []byte) error {
  700. return xxx_messageInfo_ExcelLogRes.Unmarshal(m, b)
  701. }
  702. func (m *ExcelLogRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  703. return xxx_messageInfo_ExcelLogRes.Marshal(b, m, deterministic)
  704. }
  705. func (m *ExcelLogRes) XXX_Merge(src proto.Message) {
  706. xxx_messageInfo_ExcelLogRes.Merge(m, src)
  707. }
  708. func (m *ExcelLogRes) XXX_Size() int {
  709. return xxx_messageInfo_ExcelLogRes.Size(m)
  710. }
  711. func (m *ExcelLogRes) XXX_DiscardUnknown() {
  712. xxx_messageInfo_ExcelLogRes.DiscardUnknown(m)
  713. }
  714. var xxx_messageInfo_ExcelLogRes proto.InternalMessageInfo
  715. func (m *ExcelLogRes) GetStatus() int64 {
  716. if m != nil {
  717. return m.Status
  718. }
  719. return 0
  720. }
  721. type SchoolIdsReq struct {
  722. Names []string `protobuf:"bytes,1,rep,name=names,proto3" json:"names,omitempty"`
  723. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  724. XXX_unrecognized []byte `json:"-"`
  725. XXX_sizecache int32 `json:"-"`
  726. }
  727. func (m *SchoolIdsReq) Reset() { *m = SchoolIdsReq{} }
  728. func (m *SchoolIdsReq) String() string { return proto.CompactTextString(m) }
  729. func (*SchoolIdsReq) ProtoMessage() {}
  730. func (*SchoolIdsReq) Descriptor() ([]byte, []int) {
  731. return fileDescriptor_cb4a498eeb2ba07d, []int{15}
  732. }
  733. func (m *SchoolIdsReq) XXX_Unmarshal(b []byte) error {
  734. return xxx_messageInfo_SchoolIdsReq.Unmarshal(m, b)
  735. }
  736. func (m *SchoolIdsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  737. return xxx_messageInfo_SchoolIdsReq.Marshal(b, m, deterministic)
  738. }
  739. func (m *SchoolIdsReq) XXX_Merge(src proto.Message) {
  740. xxx_messageInfo_SchoolIdsReq.Merge(m, src)
  741. }
  742. func (m *SchoolIdsReq) XXX_Size() int {
  743. return xxx_messageInfo_SchoolIdsReq.Size(m)
  744. }
  745. func (m *SchoolIdsReq) XXX_DiscardUnknown() {
  746. xxx_messageInfo_SchoolIdsReq.DiscardUnknown(m)
  747. }
  748. var xxx_messageInfo_SchoolIdsReq proto.InternalMessageInfo
  749. func (m *SchoolIdsReq) GetNames() []string {
  750. if m != nil {
  751. return m.Names
  752. }
  753. return nil
  754. }
  755. type ListOfInt struct {
  756. Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
  757. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  758. XXX_unrecognized []byte `json:"-"`
  759. XXX_sizecache int32 `json:"-"`
  760. }
  761. func (m *ListOfInt) Reset() { *m = ListOfInt{} }
  762. func (m *ListOfInt) String() string { return proto.CompactTextString(m) }
  763. func (*ListOfInt) ProtoMessage() {}
  764. func (*ListOfInt) Descriptor() ([]byte, []int) {
  765. return fileDescriptor_cb4a498eeb2ba07d, []int{16}
  766. }
  767. func (m *ListOfInt) XXX_Unmarshal(b []byte) error {
  768. return xxx_messageInfo_ListOfInt.Unmarshal(m, b)
  769. }
  770. func (m *ListOfInt) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  771. return xxx_messageInfo_ListOfInt.Marshal(b, m, deterministic)
  772. }
  773. func (m *ListOfInt) XXX_Merge(src proto.Message) {
  774. xxx_messageInfo_ListOfInt.Merge(m, src)
  775. }
  776. func (m *ListOfInt) XXX_Size() int {
  777. return xxx_messageInfo_ListOfInt.Size(m)
  778. }
  779. func (m *ListOfInt) XXX_DiscardUnknown() {
  780. xxx_messageInfo_ListOfInt.DiscardUnknown(m)
  781. }
  782. var xxx_messageInfo_ListOfInt proto.InternalMessageInfo
  783. func (m *ListOfInt) GetIds() []int64 {
  784. if m != nil {
  785. return m.Ids
  786. }
  787. return nil
  788. }
  789. type SchoolIdsRes struct {
  790. 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"`
  791. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  792. XXX_unrecognized []byte `json:"-"`
  793. XXX_sizecache int32 `json:"-"`
  794. }
  795. func (m *SchoolIdsRes) Reset() { *m = SchoolIdsRes{} }
  796. func (m *SchoolIdsRes) String() string { return proto.CompactTextString(m) }
  797. func (*SchoolIdsRes) ProtoMessage() {}
  798. func (*SchoolIdsRes) Descriptor() ([]byte, []int) {
  799. return fileDescriptor_cb4a498eeb2ba07d, []int{17}
  800. }
  801. func (m *SchoolIdsRes) XXX_Unmarshal(b []byte) error {
  802. return xxx_messageInfo_SchoolIdsRes.Unmarshal(m, b)
  803. }
  804. func (m *SchoolIdsRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  805. return xxx_messageInfo_SchoolIdsRes.Marshal(b, m, deterministic)
  806. }
  807. func (m *SchoolIdsRes) XXX_Merge(src proto.Message) {
  808. xxx_messageInfo_SchoolIdsRes.Merge(m, src)
  809. }
  810. func (m *SchoolIdsRes) XXX_Size() int {
  811. return xxx_messageInfo_SchoolIdsRes.Size(m)
  812. }
  813. func (m *SchoolIdsRes) XXX_DiscardUnknown() {
  814. xxx_messageInfo_SchoolIdsRes.DiscardUnknown(m)
  815. }
  816. var xxx_messageInfo_SchoolIdsRes proto.InternalMessageInfo
  817. func (m *SchoolIdsRes) GetMapList() map[string]int64 {
  818. if m != nil {
  819. return m.MapList
  820. }
  821. return nil
  822. }
  823. type CityIdsReq struct {
  824. Names string `protobuf:"bytes,1,opt,name=names,proto3" json:"names,omitempty"`
  825. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  826. XXX_unrecognized []byte `json:"-"`
  827. XXX_sizecache int32 `json:"-"`
  828. }
  829. func (m *CityIdsReq) Reset() { *m = CityIdsReq{} }
  830. func (m *CityIdsReq) String() string { return proto.CompactTextString(m) }
  831. func (*CityIdsReq) ProtoMessage() {}
  832. func (*CityIdsReq) Descriptor() ([]byte, []int) {
  833. return fileDescriptor_cb4a498eeb2ba07d, []int{18}
  834. }
  835. func (m *CityIdsReq) XXX_Unmarshal(b []byte) error {
  836. return xxx_messageInfo_CityIdsReq.Unmarshal(m, b)
  837. }
  838. func (m *CityIdsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  839. return xxx_messageInfo_CityIdsReq.Marshal(b, m, deterministic)
  840. }
  841. func (m *CityIdsReq) XXX_Merge(src proto.Message) {
  842. xxx_messageInfo_CityIdsReq.Merge(m, src)
  843. }
  844. func (m *CityIdsReq) XXX_Size() int {
  845. return xxx_messageInfo_CityIdsReq.Size(m)
  846. }
  847. func (m *CityIdsReq) XXX_DiscardUnknown() {
  848. xxx_messageInfo_CityIdsReq.DiscardUnknown(m)
  849. }
  850. var xxx_messageInfo_CityIdsReq proto.InternalMessageInfo
  851. func (m *CityIdsReq) GetNames() string {
  852. if m != nil {
  853. return m.Names
  854. }
  855. return ""
  856. }
  857. type CityIdsRes struct {
  858. 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"`
  859. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  860. XXX_unrecognized []byte `json:"-"`
  861. XXX_sizecache int32 `json:"-"`
  862. }
  863. func (m *CityIdsRes) Reset() { *m = CityIdsRes{} }
  864. func (m *CityIdsRes) String() string { return proto.CompactTextString(m) }
  865. func (*CityIdsRes) ProtoMessage() {}
  866. func (*CityIdsRes) Descriptor() ([]byte, []int) {
  867. return fileDescriptor_cb4a498eeb2ba07d, []int{19}
  868. }
  869. func (m *CityIdsRes) XXX_Unmarshal(b []byte) error {
  870. return xxx_messageInfo_CityIdsRes.Unmarshal(m, b)
  871. }
  872. func (m *CityIdsRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  873. return xxx_messageInfo_CityIdsRes.Marshal(b, m, deterministic)
  874. }
  875. func (m *CityIdsRes) XXX_Merge(src proto.Message) {
  876. xxx_messageInfo_CityIdsRes.Merge(m, src)
  877. }
  878. func (m *CityIdsRes) XXX_Size() int {
  879. return xxx_messageInfo_CityIdsRes.Size(m)
  880. }
  881. func (m *CityIdsRes) XXX_DiscardUnknown() {
  882. xxx_messageInfo_CityIdsRes.DiscardUnknown(m)
  883. }
  884. var xxx_messageInfo_CityIdsRes proto.InternalMessageInfo
  885. func (m *CityIdsRes) GetMapList() map[string]int64 {
  886. if m != nil {
  887. return m.MapList
  888. }
  889. return nil
  890. }
  891. type BytesReq struct {
  892. Req []byte `protobuf:"bytes,1,opt,name=req,proto3" json:"req,omitempty"`
  893. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  894. XXX_unrecognized []byte `json:"-"`
  895. XXX_sizecache int32 `json:"-"`
  896. }
  897. func (m *BytesReq) Reset() { *m = BytesReq{} }
  898. func (m *BytesReq) String() string { return proto.CompactTextString(m) }
  899. func (*BytesReq) ProtoMessage() {}
  900. func (*BytesReq) Descriptor() ([]byte, []int) {
  901. return fileDescriptor_cb4a498eeb2ba07d, []int{20}
  902. }
  903. func (m *BytesReq) XXX_Unmarshal(b []byte) error {
  904. return xxx_messageInfo_BytesReq.Unmarshal(m, b)
  905. }
  906. func (m *BytesReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  907. return xxx_messageInfo_BytesReq.Marshal(b, m, deterministic)
  908. }
  909. func (m *BytesReq) XXX_Merge(src proto.Message) {
  910. xxx_messageInfo_BytesReq.Merge(m, src)
  911. }
  912. func (m *BytesReq) XXX_Size() int {
  913. return xxx_messageInfo_BytesReq.Size(m)
  914. }
  915. func (m *BytesReq) XXX_DiscardUnknown() {
  916. xxx_messageInfo_BytesReq.DiscardUnknown(m)
  917. }
  918. var xxx_messageInfo_BytesReq proto.InternalMessageInfo
  919. func (m *BytesReq) GetReq() []byte {
  920. if m != nil {
  921. return m.Req
  922. }
  923. return nil
  924. }
  925. type BytesResp struct {
  926. Resp []byte `protobuf:"bytes,1,opt,name=resp,proto3" json:"resp,omitempty"`
  927. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  928. XXX_unrecognized []byte `json:"-"`
  929. XXX_sizecache int32 `json:"-"`
  930. }
  931. func (m *BytesResp) Reset() { *m = BytesResp{} }
  932. func (m *BytesResp) String() string { return proto.CompactTextString(m) }
  933. func (*BytesResp) ProtoMessage() {}
  934. func (*BytesResp) Descriptor() ([]byte, []int) {
  935. return fileDescriptor_cb4a498eeb2ba07d, []int{21}
  936. }
  937. func (m *BytesResp) XXX_Unmarshal(b []byte) error {
  938. return xxx_messageInfo_BytesResp.Unmarshal(m, b)
  939. }
  940. func (m *BytesResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  941. return xxx_messageInfo_BytesResp.Marshal(b, m, deterministic)
  942. }
  943. func (m *BytesResp) XXX_Merge(src proto.Message) {
  944. xxx_messageInfo_BytesResp.Merge(m, src)
  945. }
  946. func (m *BytesResp) XXX_Size() int {
  947. return xxx_messageInfo_BytesResp.Size(m)
  948. }
  949. func (m *BytesResp) XXX_DiscardUnknown() {
  950. xxx_messageInfo_BytesResp.DiscardUnknown(m)
  951. }
  952. var xxx_messageInfo_BytesResp proto.InternalMessageInfo
  953. func (m *BytesResp) GetResp() []byte {
  954. if m != nil {
  955. return m.Resp
  956. }
  957. return nil
  958. }
  959. type GetErpRoleRes struct {
  960. UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  961. Role string `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
  962. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  963. XXX_unrecognized []byte `json:"-"`
  964. XXX_sizecache int32 `json:"-"`
  965. }
  966. func (m *GetErpRoleRes) Reset() { *m = GetErpRoleRes{} }
  967. func (m *GetErpRoleRes) String() string { return proto.CompactTextString(m) }
  968. func (*GetErpRoleRes) ProtoMessage() {}
  969. func (*GetErpRoleRes) Descriptor() ([]byte, []int) {
  970. return fileDescriptor_cb4a498eeb2ba07d, []int{22}
  971. }
  972. func (m *GetErpRoleRes) XXX_Unmarshal(b []byte) error {
  973. return xxx_messageInfo_GetErpRoleRes.Unmarshal(m, b)
  974. }
  975. func (m *GetErpRoleRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  976. return xxx_messageInfo_GetErpRoleRes.Marshal(b, m, deterministic)
  977. }
  978. func (m *GetErpRoleRes) XXX_Merge(src proto.Message) {
  979. xxx_messageInfo_GetErpRoleRes.Merge(m, src)
  980. }
  981. func (m *GetErpRoleRes) XXX_Size() int {
  982. return xxx_messageInfo_GetErpRoleRes.Size(m)
  983. }
  984. func (m *GetErpRoleRes) XXX_DiscardUnknown() {
  985. xxx_messageInfo_GetErpRoleRes.DiscardUnknown(m)
  986. }
  987. var xxx_messageInfo_GetErpRoleRes proto.InternalMessageInfo
  988. func (m *GetErpRoleRes) GetUserId() string {
  989. if m != nil {
  990. return m.UserId
  991. }
  992. return ""
  993. }
  994. func (m *GetErpRoleRes) GetRole() string {
  995. if m != nil {
  996. return m.Role
  997. }
  998. return ""
  999. }
  1000. type GetErpRoleReq struct {
  1001. Mobile string `protobuf:"bytes,1,opt,name=mobile,proto3" json:"mobile,omitempty"`
  1002. UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1003. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1004. XXX_unrecognized []byte `json:"-"`
  1005. XXX_sizecache int32 `json:"-"`
  1006. }
  1007. func (m *GetErpRoleReq) Reset() { *m = GetErpRoleReq{} }
  1008. func (m *GetErpRoleReq) String() string { return proto.CompactTextString(m) }
  1009. func (*GetErpRoleReq) ProtoMessage() {}
  1010. func (*GetErpRoleReq) Descriptor() ([]byte, []int) {
  1011. return fileDescriptor_cb4a498eeb2ba07d, []int{23}
  1012. }
  1013. func (m *GetErpRoleReq) XXX_Unmarshal(b []byte) error {
  1014. return xxx_messageInfo_GetErpRoleReq.Unmarshal(m, b)
  1015. }
  1016. func (m *GetErpRoleReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1017. return xxx_messageInfo_GetErpRoleReq.Marshal(b, m, deterministic)
  1018. }
  1019. func (m *GetErpRoleReq) XXX_Merge(src proto.Message) {
  1020. xxx_messageInfo_GetErpRoleReq.Merge(m, src)
  1021. }
  1022. func (m *GetErpRoleReq) XXX_Size() int {
  1023. return xxx_messageInfo_GetErpRoleReq.Size(m)
  1024. }
  1025. func (m *GetErpRoleReq) XXX_DiscardUnknown() {
  1026. xxx_messageInfo_GetErpRoleReq.DiscardUnknown(m)
  1027. }
  1028. var xxx_messageInfo_GetErpRoleReq proto.InternalMessageInfo
  1029. func (m *GetErpRoleReq) GetMobile() string {
  1030. if m != nil {
  1031. return m.Mobile
  1032. }
  1033. return ""
  1034. }
  1035. func (m *GetErpRoleReq) GetUserId() string {
  1036. if m != nil {
  1037. return m.UserId
  1038. }
  1039. return ""
  1040. }
  1041. type GetErpOrganSchPerByUserIdReq struct {
  1042. UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1043. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1044. XXX_unrecognized []byte `json:"-"`
  1045. XXX_sizecache int32 `json:"-"`
  1046. }
  1047. func (m *GetErpOrganSchPerByUserIdReq) Reset() { *m = GetErpOrganSchPerByUserIdReq{} }
  1048. func (m *GetErpOrganSchPerByUserIdReq) String() string { return proto.CompactTextString(m) }
  1049. func (*GetErpOrganSchPerByUserIdReq) ProtoMessage() {}
  1050. func (*GetErpOrganSchPerByUserIdReq) Descriptor() ([]byte, []int) {
  1051. return fileDescriptor_cb4a498eeb2ba07d, []int{24}
  1052. }
  1053. func (m *GetErpOrganSchPerByUserIdReq) XXX_Unmarshal(b []byte) error {
  1054. return xxx_messageInfo_GetErpOrganSchPerByUserIdReq.Unmarshal(m, b)
  1055. }
  1056. func (m *GetErpOrganSchPerByUserIdReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1057. return xxx_messageInfo_GetErpOrganSchPerByUserIdReq.Marshal(b, m, deterministic)
  1058. }
  1059. func (m *GetErpOrganSchPerByUserIdReq) XXX_Merge(src proto.Message) {
  1060. xxx_messageInfo_GetErpOrganSchPerByUserIdReq.Merge(m, src)
  1061. }
  1062. func (m *GetErpOrganSchPerByUserIdReq) XXX_Size() int {
  1063. return xxx_messageInfo_GetErpOrganSchPerByUserIdReq.Size(m)
  1064. }
  1065. func (m *GetErpOrganSchPerByUserIdReq) XXX_DiscardUnknown() {
  1066. xxx_messageInfo_GetErpOrganSchPerByUserIdReq.DiscardUnknown(m)
  1067. }
  1068. var xxx_messageInfo_GetErpOrganSchPerByUserIdReq proto.InternalMessageInfo
  1069. func (m *GetErpOrganSchPerByUserIdReq) GetUserId() string {
  1070. if m != nil {
  1071. return m.UserId
  1072. }
  1073. return ""
  1074. }
  1075. type GetErpOrganSchPerByUserIdRes struct {
  1076. School []*OrganSchool `protobuf:"bytes,1,rep,name=school,proto3" json:"school,omitempty"`
  1077. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1078. XXX_unrecognized []byte `json:"-"`
  1079. XXX_sizecache int32 `json:"-"`
  1080. }
  1081. func (m *GetErpOrganSchPerByUserIdRes) Reset() { *m = GetErpOrganSchPerByUserIdRes{} }
  1082. func (m *GetErpOrganSchPerByUserIdRes) String() string { return proto.CompactTextString(m) }
  1083. func (*GetErpOrganSchPerByUserIdRes) ProtoMessage() {}
  1084. func (*GetErpOrganSchPerByUserIdRes) Descriptor() ([]byte, []int) {
  1085. return fileDescriptor_cb4a498eeb2ba07d, []int{25}
  1086. }
  1087. func (m *GetErpOrganSchPerByUserIdRes) XXX_Unmarshal(b []byte) error {
  1088. return xxx_messageInfo_GetErpOrganSchPerByUserIdRes.Unmarshal(m, b)
  1089. }
  1090. func (m *GetErpOrganSchPerByUserIdRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1091. return xxx_messageInfo_GetErpOrganSchPerByUserIdRes.Marshal(b, m, deterministic)
  1092. }
  1093. func (m *GetErpOrganSchPerByUserIdRes) XXX_Merge(src proto.Message) {
  1094. xxx_messageInfo_GetErpOrganSchPerByUserIdRes.Merge(m, src)
  1095. }
  1096. func (m *GetErpOrganSchPerByUserIdRes) XXX_Size() int {
  1097. return xxx_messageInfo_GetErpOrganSchPerByUserIdRes.Size(m)
  1098. }
  1099. func (m *GetErpOrganSchPerByUserIdRes) XXX_DiscardUnknown() {
  1100. xxx_messageInfo_GetErpOrganSchPerByUserIdRes.DiscardUnknown(m)
  1101. }
  1102. var xxx_messageInfo_GetErpOrganSchPerByUserIdRes proto.InternalMessageInfo
  1103. func (m *GetErpOrganSchPerByUserIdRes) GetSchool() []*OrganSchool {
  1104. if m != nil {
  1105. return m.School
  1106. }
  1107. return nil
  1108. }
  1109. type OrganSchool struct {
  1110. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1111. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  1112. OrganId int64 `protobuf:"varint,3,opt,name=organ_id,json=organId,proto3" json:"organ_id,omitempty"`
  1113. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1114. XXX_unrecognized []byte `json:"-"`
  1115. XXX_sizecache int32 `json:"-"`
  1116. }
  1117. func (m *OrganSchool) Reset() { *m = OrganSchool{} }
  1118. func (m *OrganSchool) String() string { return proto.CompactTextString(m) }
  1119. func (*OrganSchool) ProtoMessage() {}
  1120. func (*OrganSchool) Descriptor() ([]byte, []int) {
  1121. return fileDescriptor_cb4a498eeb2ba07d, []int{26}
  1122. }
  1123. func (m *OrganSchool) XXX_Unmarshal(b []byte) error {
  1124. return xxx_messageInfo_OrganSchool.Unmarshal(m, b)
  1125. }
  1126. func (m *OrganSchool) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1127. return xxx_messageInfo_OrganSchool.Marshal(b, m, deterministic)
  1128. }
  1129. func (m *OrganSchool) XXX_Merge(src proto.Message) {
  1130. xxx_messageInfo_OrganSchool.Merge(m, src)
  1131. }
  1132. func (m *OrganSchool) XXX_Size() int {
  1133. return xxx_messageInfo_OrganSchool.Size(m)
  1134. }
  1135. func (m *OrganSchool) XXX_DiscardUnknown() {
  1136. xxx_messageInfo_OrganSchool.DiscardUnknown(m)
  1137. }
  1138. var xxx_messageInfo_OrganSchool proto.InternalMessageInfo
  1139. func (m *OrganSchool) GetId() int64 {
  1140. if m != nil {
  1141. return m.Id
  1142. }
  1143. return 0
  1144. }
  1145. func (m *OrganSchool) GetName() string {
  1146. if m != nil {
  1147. return m.Name
  1148. }
  1149. return ""
  1150. }
  1151. func (m *OrganSchool) GetOrganId() int64 {
  1152. if m != nil {
  1153. return m.OrganId
  1154. }
  1155. return 0
  1156. }
  1157. type GetErpSchoolRes struct {
  1158. School []*OrganSchool `protobuf:"bytes,1,rep,name=school,proto3" json:"school,omitempty"`
  1159. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1160. XXX_unrecognized []byte `json:"-"`
  1161. XXX_sizecache int32 `json:"-"`
  1162. }
  1163. func (m *GetErpSchoolRes) Reset() { *m = GetErpSchoolRes{} }
  1164. func (m *GetErpSchoolRes) String() string { return proto.CompactTextString(m) }
  1165. func (*GetErpSchoolRes) ProtoMessage() {}
  1166. func (*GetErpSchoolRes) Descriptor() ([]byte, []int) {
  1167. return fileDescriptor_cb4a498eeb2ba07d, []int{27}
  1168. }
  1169. func (m *GetErpSchoolRes) XXX_Unmarshal(b []byte) error {
  1170. return xxx_messageInfo_GetErpSchoolRes.Unmarshal(m, b)
  1171. }
  1172. func (m *GetErpSchoolRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1173. return xxx_messageInfo_GetErpSchoolRes.Marshal(b, m, deterministic)
  1174. }
  1175. func (m *GetErpSchoolRes) XXX_Merge(src proto.Message) {
  1176. xxx_messageInfo_GetErpSchoolRes.Merge(m, src)
  1177. }
  1178. func (m *GetErpSchoolRes) XXX_Size() int {
  1179. return xxx_messageInfo_GetErpSchoolRes.Size(m)
  1180. }
  1181. func (m *GetErpSchoolRes) XXX_DiscardUnknown() {
  1182. xxx_messageInfo_GetErpSchoolRes.DiscardUnknown(m)
  1183. }
  1184. var xxx_messageInfo_GetErpSchoolRes proto.InternalMessageInfo
  1185. func (m *GetErpSchoolRes) GetSchool() []*OrganSchool {
  1186. if m != nil {
  1187. return m.School
  1188. }
  1189. return nil
  1190. }
  1191. type GetErpActiveReq struct {
  1192. SchId uint64 `protobuf:"varint,1,opt,name=sch_id,json=schId,proto3" json:"sch_id,omitempty"`
  1193. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1194. XXX_unrecognized []byte `json:"-"`
  1195. XXX_sizecache int32 `json:"-"`
  1196. }
  1197. func (m *GetErpActiveReq) Reset() { *m = GetErpActiveReq{} }
  1198. func (m *GetErpActiveReq) String() string { return proto.CompactTextString(m) }
  1199. func (*GetErpActiveReq) ProtoMessage() {}
  1200. func (*GetErpActiveReq) Descriptor() ([]byte, []int) {
  1201. return fileDescriptor_cb4a498eeb2ba07d, []int{28}
  1202. }
  1203. func (m *GetErpActiveReq) XXX_Unmarshal(b []byte) error {
  1204. return xxx_messageInfo_GetErpActiveReq.Unmarshal(m, b)
  1205. }
  1206. func (m *GetErpActiveReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1207. return xxx_messageInfo_GetErpActiveReq.Marshal(b, m, deterministic)
  1208. }
  1209. func (m *GetErpActiveReq) XXX_Merge(src proto.Message) {
  1210. xxx_messageInfo_GetErpActiveReq.Merge(m, src)
  1211. }
  1212. func (m *GetErpActiveReq) XXX_Size() int {
  1213. return xxx_messageInfo_GetErpActiveReq.Size(m)
  1214. }
  1215. func (m *GetErpActiveReq) XXX_DiscardUnknown() {
  1216. xxx_messageInfo_GetErpActiveReq.DiscardUnknown(m)
  1217. }
  1218. var xxx_messageInfo_GetErpActiveReq proto.InternalMessageInfo
  1219. func (m *GetErpActiveReq) GetSchId() uint64 {
  1220. if m != nil {
  1221. return m.SchId
  1222. }
  1223. return 0
  1224. }
  1225. type GetErpActiveRes struct {
  1226. Active []*Active `protobuf:"bytes,1,rep,name=active,proto3" json:"active,omitempty"`
  1227. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1228. XXX_unrecognized []byte `json:"-"`
  1229. XXX_sizecache int32 `json:"-"`
  1230. }
  1231. func (m *GetErpActiveRes) Reset() { *m = GetErpActiveRes{} }
  1232. func (m *GetErpActiveRes) String() string { return proto.CompactTextString(m) }
  1233. func (*GetErpActiveRes) ProtoMessage() {}
  1234. func (*GetErpActiveRes) Descriptor() ([]byte, []int) {
  1235. return fileDescriptor_cb4a498eeb2ba07d, []int{29}
  1236. }
  1237. func (m *GetErpActiveRes) XXX_Unmarshal(b []byte) error {
  1238. return xxx_messageInfo_GetErpActiveRes.Unmarshal(m, b)
  1239. }
  1240. func (m *GetErpActiveRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1241. return xxx_messageInfo_GetErpActiveRes.Marshal(b, m, deterministic)
  1242. }
  1243. func (m *GetErpActiveRes) XXX_Merge(src proto.Message) {
  1244. xxx_messageInfo_GetErpActiveRes.Merge(m, src)
  1245. }
  1246. func (m *GetErpActiveRes) XXX_Size() int {
  1247. return xxx_messageInfo_GetErpActiveRes.Size(m)
  1248. }
  1249. func (m *GetErpActiveRes) XXX_DiscardUnknown() {
  1250. xxx_messageInfo_GetErpActiveRes.DiscardUnknown(m)
  1251. }
  1252. var xxx_messageInfo_GetErpActiveRes proto.InternalMessageInfo
  1253. func (m *GetErpActiveRes) GetActive() []*Active {
  1254. if m != nil {
  1255. return m.Active
  1256. }
  1257. return nil
  1258. }
  1259. type Active struct {
  1260. ActiveId int64 `protobuf:"varint,1,opt,name=active_id,json=activeId,proto3" json:"active_id,omitempty"`
  1261. MaName string `protobuf:"bytes,2,opt,name=ma_name,json=maName,proto3" json:"ma_name,omitempty"`
  1262. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1263. XXX_unrecognized []byte `json:"-"`
  1264. XXX_sizecache int32 `json:"-"`
  1265. }
  1266. func (m *Active) Reset() { *m = Active{} }
  1267. func (m *Active) String() string { return proto.CompactTextString(m) }
  1268. func (*Active) ProtoMessage() {}
  1269. func (*Active) Descriptor() ([]byte, []int) {
  1270. return fileDescriptor_cb4a498eeb2ba07d, []int{30}
  1271. }
  1272. func (m *Active) XXX_Unmarshal(b []byte) error {
  1273. return xxx_messageInfo_Active.Unmarshal(m, b)
  1274. }
  1275. func (m *Active) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1276. return xxx_messageInfo_Active.Marshal(b, m, deterministic)
  1277. }
  1278. func (m *Active) XXX_Merge(src proto.Message) {
  1279. xxx_messageInfo_Active.Merge(m, src)
  1280. }
  1281. func (m *Active) XXX_Size() int {
  1282. return xxx_messageInfo_Active.Size(m)
  1283. }
  1284. func (m *Active) XXX_DiscardUnknown() {
  1285. xxx_messageInfo_Active.DiscardUnknown(m)
  1286. }
  1287. var xxx_messageInfo_Active proto.InternalMessageInfo
  1288. func (m *Active) GetActiveId() int64 {
  1289. if m != nil {
  1290. return m.ActiveId
  1291. }
  1292. return 0
  1293. }
  1294. func (m *Active) GetMaName() string {
  1295. if m != nil {
  1296. return m.MaName
  1297. }
  1298. return ""
  1299. }
  1300. type DataPermissionReq struct {
  1301. RuleCode string `protobuf:"bytes,1,opt,name=rule_code,json=ruleCode,proto3" json:"rule_code,omitempty"`
  1302. UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1303. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1304. XXX_unrecognized []byte `json:"-"`
  1305. XXX_sizecache int32 `json:"-"`
  1306. }
  1307. func (m *DataPermissionReq) Reset() { *m = DataPermissionReq{} }
  1308. func (m *DataPermissionReq) String() string { return proto.CompactTextString(m) }
  1309. func (*DataPermissionReq) ProtoMessage() {}
  1310. func (*DataPermissionReq) Descriptor() ([]byte, []int) {
  1311. return fileDescriptor_cb4a498eeb2ba07d, []int{31}
  1312. }
  1313. func (m *DataPermissionReq) XXX_Unmarshal(b []byte) error {
  1314. return xxx_messageInfo_DataPermissionReq.Unmarshal(m, b)
  1315. }
  1316. func (m *DataPermissionReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1317. return xxx_messageInfo_DataPermissionReq.Marshal(b, m, deterministic)
  1318. }
  1319. func (m *DataPermissionReq) XXX_Merge(src proto.Message) {
  1320. xxx_messageInfo_DataPermissionReq.Merge(m, src)
  1321. }
  1322. func (m *DataPermissionReq) XXX_Size() int {
  1323. return xxx_messageInfo_DataPermissionReq.Size(m)
  1324. }
  1325. func (m *DataPermissionReq) XXX_DiscardUnknown() {
  1326. xxx_messageInfo_DataPermissionReq.DiscardUnknown(m)
  1327. }
  1328. var xxx_messageInfo_DataPermissionReq proto.InternalMessageInfo
  1329. func (m *DataPermissionReq) GetRuleCode() string {
  1330. if m != nil {
  1331. return m.RuleCode
  1332. }
  1333. return ""
  1334. }
  1335. func (m *DataPermissionReq) GetUserId() string {
  1336. if m != nil {
  1337. return m.UserId
  1338. }
  1339. return ""
  1340. }
  1341. type DataPermissionRes struct {
  1342. 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"`
  1343. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1344. XXX_unrecognized []byte `json:"-"`
  1345. XXX_sizecache int32 `json:"-"`
  1346. }
  1347. func (m *DataPermissionRes) Reset() { *m = DataPermissionRes{} }
  1348. func (m *DataPermissionRes) String() string { return proto.CompactTextString(m) }
  1349. func (*DataPermissionRes) ProtoMessage() {}
  1350. func (*DataPermissionRes) Descriptor() ([]byte, []int) {
  1351. return fileDescriptor_cb4a498eeb2ba07d, []int{32}
  1352. }
  1353. func (m *DataPermissionRes) XXX_Unmarshal(b []byte) error {
  1354. return xxx_messageInfo_DataPermissionRes.Unmarshal(m, b)
  1355. }
  1356. func (m *DataPermissionRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1357. return xxx_messageInfo_DataPermissionRes.Marshal(b, m, deterministic)
  1358. }
  1359. func (m *DataPermissionRes) XXX_Merge(src proto.Message) {
  1360. xxx_messageInfo_DataPermissionRes.Merge(m, src)
  1361. }
  1362. func (m *DataPermissionRes) XXX_Size() int {
  1363. return xxx_messageInfo_DataPermissionRes.Size(m)
  1364. }
  1365. func (m *DataPermissionRes) XXX_DiscardUnknown() {
  1366. xxx_messageInfo_DataPermissionRes.DiscardUnknown(m)
  1367. }
  1368. var xxx_messageInfo_DataPermissionRes proto.InternalMessageInfo
  1369. func (m *DataPermissionRes) GetMapList() map[string]string {
  1370. if m != nil {
  1371. return m.MapList
  1372. }
  1373. return nil
  1374. }
  1375. type MktReq struct {
  1376. Id int64 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
  1377. MkId string `protobuf:"bytes,2,opt,name=MkId,proto3" json:"MkId,omitempty"`
  1378. PartTimeUserId int64 `protobuf:"varint,3,opt,name=PartTimeUserId,proto3" json:"PartTimeUserId,omitempty"`
  1379. UserId int64 `protobuf:"varint,4,opt,name=UserId,proto3" json:"UserId,omitempty"`
  1380. StuName string `protobuf:"bytes,5,opt,name=StuName,proto3" json:"StuName,omitempty"`
  1381. AgeGroup int64 `protobuf:"varint,6,opt,name=AgeGroup,proto3" json:"AgeGroup,omitempty"`
  1382. StuLinkPerson string `protobuf:"bytes,7,opt,name=StuLinkPerson,proto3" json:"StuLinkPerson,omitempty"`
  1383. StuPhone string `protobuf:"bytes,8,opt,name=StuPhone,proto3" json:"StuPhone,omitempty"`
  1384. SchId int64 `protobuf:"varint,9,opt,name=SchId,proto3" json:"SchId,omitempty"`
  1385. Address string `protobuf:"bytes,10,opt,name=Address,proto3" json:"Address,omitempty"`
  1386. CreateTime string `protobuf:"bytes,11,opt,name=CreateTime,proto3" json:"CreateTime,omitempty"`
  1387. DelFlag int64 `protobuf:"varint,12,opt,name=DelFlag,proto3" json:"DelFlag,omitempty"`
  1388. CheckState int64 `protobuf:"varint,13,opt,name=CheckState,proto3" json:"CheckState,omitempty"`
  1389. CheckTime string `protobuf:"bytes,14,opt,name=CheckTime,proto3" json:"CheckTime,omitempty"`
  1390. CheckBy string `protobuf:"bytes,15,opt,name=CheckBy,proto3" json:"CheckBy,omitempty"`
  1391. NetworkDetailId int64 `protobuf:"varint,16,opt,name=NetworkDetailId,proto3" json:"NetworkDetailId,omitempty"`
  1392. ActiveId int64 `protobuf:"varint,17,opt,name=ActiveId,proto3" json:"ActiveId,omitempty"`
  1393. CallType int64 `protobuf:"varint,18,opt,name=CallType,proto3" json:"CallType,omitempty"`
  1394. MaType int64 `protobuf:"varint,19,opt,name=MaType,proto3" json:"MaType,omitempty"`
  1395. QuaoYji int64 `protobuf:"varint,20,opt,name=QuaoYji,proto3" json:"QuaoYji,omitempty"`
  1396. MktActivityId int64 `protobuf:"varint,21,opt,name=MktActivityId,proto3" json:"MktActivityId,omitempty"`
  1397. LoadSchId int64 `protobuf:"varint,22,opt,name=LoadSchId,proto3" json:"LoadSchId,omitempty"`
  1398. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1399. XXX_unrecognized []byte `json:"-"`
  1400. XXX_sizecache int32 `json:"-"`
  1401. }
  1402. func (m *MktReq) Reset() { *m = MktReq{} }
  1403. func (m *MktReq) String() string { return proto.CompactTextString(m) }
  1404. func (*MktReq) ProtoMessage() {}
  1405. func (*MktReq) Descriptor() ([]byte, []int) {
  1406. return fileDescriptor_cb4a498eeb2ba07d, []int{33}
  1407. }
  1408. func (m *MktReq) XXX_Unmarshal(b []byte) error {
  1409. return xxx_messageInfo_MktReq.Unmarshal(m, b)
  1410. }
  1411. func (m *MktReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1412. return xxx_messageInfo_MktReq.Marshal(b, m, deterministic)
  1413. }
  1414. func (m *MktReq) XXX_Merge(src proto.Message) {
  1415. xxx_messageInfo_MktReq.Merge(m, src)
  1416. }
  1417. func (m *MktReq) XXX_Size() int {
  1418. return xxx_messageInfo_MktReq.Size(m)
  1419. }
  1420. func (m *MktReq) XXX_DiscardUnknown() {
  1421. xxx_messageInfo_MktReq.DiscardUnknown(m)
  1422. }
  1423. var xxx_messageInfo_MktReq proto.InternalMessageInfo
  1424. func (m *MktReq) GetId() int64 {
  1425. if m != nil {
  1426. return m.Id
  1427. }
  1428. return 0
  1429. }
  1430. func (m *MktReq) GetMkId() string {
  1431. if m != nil {
  1432. return m.MkId
  1433. }
  1434. return ""
  1435. }
  1436. func (m *MktReq) GetPartTimeUserId() int64 {
  1437. if m != nil {
  1438. return m.PartTimeUserId
  1439. }
  1440. return 0
  1441. }
  1442. func (m *MktReq) GetUserId() int64 {
  1443. if m != nil {
  1444. return m.UserId
  1445. }
  1446. return 0
  1447. }
  1448. func (m *MktReq) GetStuName() string {
  1449. if m != nil {
  1450. return m.StuName
  1451. }
  1452. return ""
  1453. }
  1454. func (m *MktReq) GetAgeGroup() int64 {
  1455. if m != nil {
  1456. return m.AgeGroup
  1457. }
  1458. return 0
  1459. }
  1460. func (m *MktReq) GetStuLinkPerson() string {
  1461. if m != nil {
  1462. return m.StuLinkPerson
  1463. }
  1464. return ""
  1465. }
  1466. func (m *MktReq) GetStuPhone() string {
  1467. if m != nil {
  1468. return m.StuPhone
  1469. }
  1470. return ""
  1471. }
  1472. func (m *MktReq) GetSchId() int64 {
  1473. if m != nil {
  1474. return m.SchId
  1475. }
  1476. return 0
  1477. }
  1478. func (m *MktReq) GetAddress() string {
  1479. if m != nil {
  1480. return m.Address
  1481. }
  1482. return ""
  1483. }
  1484. func (m *MktReq) GetCreateTime() string {
  1485. if m != nil {
  1486. return m.CreateTime
  1487. }
  1488. return ""
  1489. }
  1490. func (m *MktReq) GetDelFlag() int64 {
  1491. if m != nil {
  1492. return m.DelFlag
  1493. }
  1494. return 0
  1495. }
  1496. func (m *MktReq) GetCheckState() int64 {
  1497. if m != nil {
  1498. return m.CheckState
  1499. }
  1500. return 0
  1501. }
  1502. func (m *MktReq) GetCheckTime() string {
  1503. if m != nil {
  1504. return m.CheckTime
  1505. }
  1506. return ""
  1507. }
  1508. func (m *MktReq) GetCheckBy() string {
  1509. if m != nil {
  1510. return m.CheckBy
  1511. }
  1512. return ""
  1513. }
  1514. func (m *MktReq) GetNetworkDetailId() int64 {
  1515. if m != nil {
  1516. return m.NetworkDetailId
  1517. }
  1518. return 0
  1519. }
  1520. func (m *MktReq) GetActiveId() int64 {
  1521. if m != nil {
  1522. return m.ActiveId
  1523. }
  1524. return 0
  1525. }
  1526. func (m *MktReq) GetCallType() int64 {
  1527. if m != nil {
  1528. return m.CallType
  1529. }
  1530. return 0
  1531. }
  1532. func (m *MktReq) GetMaType() int64 {
  1533. if m != nil {
  1534. return m.MaType
  1535. }
  1536. return 0
  1537. }
  1538. func (m *MktReq) GetQuaoYji() int64 {
  1539. if m != nil {
  1540. return m.QuaoYji
  1541. }
  1542. return 0
  1543. }
  1544. func (m *MktReq) GetMktActivityId() int64 {
  1545. if m != nil {
  1546. return m.MktActivityId
  1547. }
  1548. return 0
  1549. }
  1550. func (m *MktReq) GetLoadSchId() int64 {
  1551. if m != nil {
  1552. return m.LoadSchId
  1553. }
  1554. return 0
  1555. }
  1556. type MktRes struct {
  1557. Status int64 `protobuf:"varint,1,opt,name=Status,proto3" json:"Status,omitempty"`
  1558. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1559. XXX_unrecognized []byte `json:"-"`
  1560. XXX_sizecache int32 `json:"-"`
  1561. }
  1562. func (m *MktRes) Reset() { *m = MktRes{} }
  1563. func (m *MktRes) String() string { return proto.CompactTextString(m) }
  1564. func (*MktRes) ProtoMessage() {}
  1565. func (*MktRes) Descriptor() ([]byte, []int) {
  1566. return fileDescriptor_cb4a498eeb2ba07d, []int{34}
  1567. }
  1568. func (m *MktRes) XXX_Unmarshal(b []byte) error {
  1569. return xxx_messageInfo_MktRes.Unmarshal(m, b)
  1570. }
  1571. func (m *MktRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1572. return xxx_messageInfo_MktRes.Marshal(b, m, deterministic)
  1573. }
  1574. func (m *MktRes) XXX_Merge(src proto.Message) {
  1575. xxx_messageInfo_MktRes.Merge(m, src)
  1576. }
  1577. func (m *MktRes) XXX_Size() int {
  1578. return xxx_messageInfo_MktRes.Size(m)
  1579. }
  1580. func (m *MktRes) XXX_DiscardUnknown() {
  1581. xxx_messageInfo_MktRes.DiscardUnknown(m)
  1582. }
  1583. var xxx_messageInfo_MktRes proto.InternalMessageInfo
  1584. func (m *MktRes) GetStatus() int64 {
  1585. if m != nil {
  1586. return m.Status
  1587. }
  1588. return 0
  1589. }
  1590. func init() {
  1591. proto.RegisterType((*UserRequest)(nil), "transform.UserRequest")
  1592. proto.RegisterType((*UserResponse)(nil), "transform.UserResponse")
  1593. proto.RegisterType((*TokenRequest)(nil), "transform.TokenRequest")
  1594. proto.RegisterType((*TokenResponse)(nil), "transform.TokenResponse")
  1595. proto.RegisterType((*Empty)(nil), "transform.Empty")
  1596. proto.RegisterType((*TreeNodes)(nil), "transform.TreeNodes")
  1597. proto.RegisterType((*TreeNode)(nil), "transform.TreeNode")
  1598. proto.RegisterType((*Tag)(nil), "transform.Tag")
  1599. proto.RegisterType((*OptionsetReq)(nil), "transform.OptionsetReq")
  1600. proto.RegisterType((*OptionsetRes)(nil), "transform.OptionsetRes")
  1601. proto.RegisterMapType((map[string]string)(nil), "transform.OptionsetRes.MapListEntry")
  1602. proto.RegisterType((*OptionCode)(nil), "transform.OptionCode")
  1603. proto.RegisterType((*Options)(nil), "transform.Options")
  1604. proto.RegisterType((*ResponseByte)(nil), "transform.ResponseByte")
  1605. proto.RegisterType((*ExcelLogReq)(nil), "transform.ExcelLogReq")
  1606. proto.RegisterType((*ExcelLogRes)(nil), "transform.ExcelLogRes")
  1607. proto.RegisterType((*SchoolIdsReq)(nil), "transform.SchoolIdsReq")
  1608. proto.RegisterType((*ListOfInt)(nil), "transform.ListOfInt")
  1609. proto.RegisterType((*SchoolIdsRes)(nil), "transform.SchoolIdsRes")
  1610. proto.RegisterMapType((map[string]int64)(nil), "transform.SchoolIdsRes.MapListEntry")
  1611. proto.RegisterType((*CityIdsReq)(nil), "transform.CityIdsReq")
  1612. proto.RegisterType((*CityIdsRes)(nil), "transform.CityIdsRes")
  1613. proto.RegisterMapType((map[string]int64)(nil), "transform.CityIdsRes.MapListEntry")
  1614. proto.RegisterType((*BytesReq)(nil), "transform.BytesReq")
  1615. proto.RegisterType((*BytesResp)(nil), "transform.BytesResp")
  1616. proto.RegisterType((*GetErpRoleRes)(nil), "transform.GetErpRoleRes")
  1617. proto.RegisterType((*GetErpRoleReq)(nil), "transform.GetErpRoleReq")
  1618. proto.RegisterType((*GetErpOrganSchPerByUserIdReq)(nil), "transform.GetErpOrganSchPerByUserIdReq")
  1619. proto.RegisterType((*GetErpOrganSchPerByUserIdRes)(nil), "transform.GetErpOrganSchPerByUserIdRes")
  1620. proto.RegisterType((*OrganSchool)(nil), "transform.OrganSchool")
  1621. proto.RegisterType((*GetErpSchoolRes)(nil), "transform.GetErpSchoolRes")
  1622. proto.RegisterType((*GetErpActiveReq)(nil), "transform.GetErpActiveReq")
  1623. proto.RegisterType((*GetErpActiveRes)(nil), "transform.GetErpActiveRes")
  1624. proto.RegisterType((*Active)(nil), "transform.Active")
  1625. proto.RegisterType((*DataPermissionReq)(nil), "transform.DataPermissionReq")
  1626. proto.RegisterType((*DataPermissionRes)(nil), "transform.DataPermissionRes")
  1627. proto.RegisterMapType((map[string]string)(nil), "transform.DataPermissionRes.MapListEntry")
  1628. proto.RegisterType((*MktReq)(nil), "transform.MktReq")
  1629. proto.RegisterType((*MktRes)(nil), "transform.MktRes")
  1630. }
  1631. func init() { proto.RegisterFile("transform.proto", fileDescriptor_cb4a498eeb2ba07d) }
  1632. var fileDescriptor_cb4a498eeb2ba07d = []byte{
  1633. // 1532 bytes of a gzipped FileDescriptorProto
  1634. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x58, 0x4b, 0x6f, 0x1b, 0xb7,
  1635. 0x13, 0x87, 0x2c, 0xeb, 0x35, 0x92, 0x5f, 0x8c, 0xed, 0x6c, 0xf6, 0xef, 0x7f, 0x2b, 0x10, 0x69,
  1636. 0xeb, 0x5c, 0x7c, 0x48, 0x80, 0x36, 0x30, 0x82, 0x34, 0x7e, 0x45, 0x10, 0x60, 0xd9, 0xea, 0xca,
  1637. 0x41, 0xd1, 0x93, 0xb1, 0xd1, 0x32, 0xf2, 0x56, 0xab, 0xa5, 0xbc, 0xa4, 0xd2, 0xe8, 0x0b, 0xf4,
  1638. 0xd0, 0x6b, 0x7b, 0xed, 0x47, 0xe9, 0xb7, 0xe8, 0xad, 0xdf, 0xa5, 0x28, 0x86, 0xe4, 0xae, 0xa8,
  1639. 0x97, 0x93, 0x14, 0xcd, 0x8d, 0xf3, 0x9b, 0x07, 0x87, 0xb3, 0xf3, 0x92, 0x60, 0x43, 0x26, 0x7e,
  1640. 0x2c, 0xde, 0xf0, 0x64, 0x70, 0x30, 0x4c, 0xb8, 0xe4, 0xa4, 0x92, 0x01, 0xf4, 0x09, 0x54, 0x5f,
  1641. 0x09, 0x96, 0x78, 0xec, 0x76, 0xc4, 0x84, 0x24, 0xeb, 0xb0, 0x12, 0x06, 0x4e, 0xae, 0x9e, 0xdb,
  1642. 0xaf, 0x78, 0x2b, 0x61, 0x40, 0xb6, 0xa1, 0x30, 0xbc, 0xe1, 0x31, 0x73, 0x56, 0x14, 0xa4, 0x09,
  1643. 0xfa, 0x67, 0x0e, 0x6a, 0x5a, 0x4b, 0x0c, 0x79, 0x2c, 0xd8, 0x87, 0xa9, 0x21, 0x9a, 0xf0, 0x88,
  1644. 0x09, 0x27, 0xaf, 0x51, 0x45, 0x90, 0x5d, 0x28, 0x0a, 0xe9, 0xcb, 0x91, 0x70, 0x56, 0xeb, 0xb9,
  1645. 0xfd, 0xbc, 0x67, 0x28, 0x52, 0x87, 0x2a, 0x4b, 0x86, 0x1e, 0x8f, 0xd8, 0xd5, 0x78, 0xc8, 0x9c,
  1646. 0x82, 0x62, 0xda, 0x10, 0x71, 0xa1, 0x3c, 0x12, 0x2c, 0xb9, 0xf0, 0x07, 0xcc, 0x29, 0x2a, 0x93,
  1647. 0x19, 0x8d, 0xbc, 0x6e, 0x28, 0xc7, 0x8a, 0x57, 0xd2, 0xbc, 0x94, 0xc6, 0x1b, 0x7b, 0x2c, 0x0e,
  1648. 0x58, 0xe2, 0x94, 0xf5, 0x8d, 0x9a, 0xa2, 0x0f, 0xa1, 0x76, 0xc5, 0xfb, 0x2c, 0x4e, 0x83, 0xb1,
  1649. 0x0d, 0x05, 0x89, 0xb4, 0x79, 0x98, 0x26, 0xe8, 0xef, 0x2b, 0xb0, 0x66, 0xc4, 0xcc, 0xeb, 0x77,
  1650. 0xa1, 0x88, 0xd1, 0x68, 0xa6, 0x11, 0x30, 0x14, 0xbe, 0x40, 0x45, 0x89, 0x47, 0xac, 0x19, 0x08,
  1651. 0x13, 0x0b, 0x1b, 0x22, 0x0f, 0x61, 0x0d, 0xc9, 0x4e, 0xf7, 0x86, 0xf3, 0x08, 0x65, 0x74, 0x64,
  1652. 0xa6, 0x41, 0xb2, 0x0f, 0x1b, 0x08, 0xb4, 0x13, 0xfe, 0x36, 0x8c, 0xbb, 0xca, 0xd6, 0xaa, 0x92,
  1653. 0x9b, 0x85, 0x09, 0xd5, 0xdf, 0xe5, 0x32, 0xe9, 0xf9, 0x31, 0x8a, 0x15, 0x94, 0xd8, 0x14, 0x86,
  1654. 0x5e, 0x75, 0xc6, 0x22, 0xb5, 0x6e, 0x02, 0x67, 0x43, 0xe4, 0x33, 0x80, 0xce, 0x58, 0x18, 0x05,
  1655. 0x13, 0x3d, 0x0b, 0x21, 0x7b, 0x50, 0x51, 0x17, 0xab, 0x2f, 0x5c, 0x56, 0xec, 0x09, 0x40, 0x4b,
  1656. 0x50, 0x38, 0x1b, 0x0c, 0xe5, 0x98, 0x7e, 0x0d, 0x95, 0xab, 0x84, 0xb1, 0x0b, 0x1e, 0x30, 0x41,
  1657. 0x1e, 0x41, 0x21, 0xc6, 0x83, 0x93, 0xab, 0xe7, 0xf7, 0xab, 0x8f, 0xef, 0x1d, 0x4c, 0x72, 0x32,
  1658. 0x15, 0xf2, 0xb4, 0x04, 0xfd, 0x35, 0x07, 0xe5, 0x14, 0xb3, 0x32, 0x2b, 0xaf, 0x32, 0x8b, 0xc0,
  1659. 0xaa, 0x64, 0xef, 0xa4, 0x09, 0xa6, 0x3a, 0x63, 0xfc, 0x87, 0x7e, 0xc2, 0x62, 0xa9, 0xc2, 0x97,
  1660. 0xf7, 0x0c, 0x45, 0xea, 0x90, 0x97, 0x7e, 0x4f, 0xc5, 0xaa, 0xfa, 0x78, 0xdd, 0xbe, 0xd1, 0xef,
  1661. 0x79, 0xc8, 0x9a, 0x78, 0x55, 0x78, 0xaf, 0x57, 0x8f, 0x20, 0x7f, 0xe5, 0xf7, 0x16, 0xf9, 0x13,
  1662. 0x63, 0x8e, 0x19, 0x7f, 0xf0, 0x4c, 0x29, 0xd4, 0x2e, 0x87, 0x32, 0xc4, 0xdc, 0x90, 0x1e, 0xbb,
  1663. 0x45, 0x99, 0x2e, 0x0f, 0x98, 0xc9, 0x0e, 0x75, 0xa6, 0xbf, 0xe4, 0xa6, 0x84, 0x04, 0x79, 0x0e,
  1664. 0xa5, 0x81, 0x3f, 0x3c, 0x0f, 0x85, 0x34, 0x21, 0x7a, 0x68, 0x39, 0x63, 0x4b, 0x1e, 0xb4, 0xb4,
  1665. 0xd8, 0x59, 0x2c, 0x93, 0xb1, 0x97, 0x2a, 0xb9, 0x87, 0x50, 0xb3, 0x19, 0x64, 0x13, 0xf2, 0x7d,
  1666. 0x36, 0x36, 0x77, 0xe2, 0x11, 0xd3, 0xf9, 0xad, 0x1f, 0x8d, 0xb2, 0xa2, 0x54, 0xc4, 0xe1, 0xca,
  1667. 0xd3, 0x1c, 0xad, 0x03, 0xe8, 0x1b, 0x4e, 0x30, 0xe4, 0x8b, 0xdc, 0x6d, 0x40, 0xc9, 0xf8, 0xb0,
  1668. 0x88, 0xbd, 0x28, 0x0a, 0x93, 0xeb, 0xf2, 0xd6, 0x75, 0x18, 0x9b, 0xb4, 0x6e, 0x8e, 0xc7, 0x52,
  1669. 0x69, 0x06, 0xbe, 0xf4, 0x95, 0xb5, 0x9a, 0xa7, 0xce, 0xf4, 0xaf, 0x1c, 0x54, 0xcf, 0xde, 0x75,
  1670. 0x59, 0x74, 0xce, 0x7b, 0x18, 0xbf, 0x5d, 0x28, 0xb6, 0x78, 0x30, 0x8a, 0xd2, 0x3b, 0x0d, 0x85,
  1671. 0xba, 0x27, 0x3c, 0x0e, 0xd2, 0x5b, 0xf1, 0x8c, 0x75, 0x7f, 0x92, 0x30, 0x5f, 0xb2, 0xe3, 0xb1,
  1672. 0xb9, 0x38, 0xa3, 0x31, 0xaf, 0xf5, 0xf9, 0x2a, 0x1c, 0x30, 0x53, 0x42, 0x16, 0x82, 0xd5, 0x73,
  1673. 0xee, 0x0b, 0xf9, 0x6a, 0x18, 0x68, 0x7d, 0x53, 0x3d, 0x36, 0x46, 0xbe, 0x84, 0xf5, 0x09, 0xad,
  1674. 0xec, 0xe8, 0x02, 0x9a, 0x41, 0x89, 0x03, 0xa5, 0x53, 0x16, 0xbd, 0x8c, 0xfc, 0x9e, 0x29, 0xa0,
  1675. 0x94, 0xa4, 0x5f, 0xd8, 0x8f, 0x53, 0xed, 0xaf, 0xa3, 0xdb, 0x9f, 0x4e, 0x2a, 0x43, 0x61, 0x33,
  1676. 0xca, 0x3a, 0x00, 0x06, 0x61, 0x1b, 0x0a, 0x18, 0x56, 0x5d, 0x40, 0x15, 0x4f, 0x13, 0xf4, 0xff,
  1677. 0x50, 0xc1, 0x4f, 0x7e, 0xf9, 0xa6, 0x19, 0x4b, 0xfc, 0xe4, 0x61, 0xa0, 0x05, 0xf2, 0x1e, 0x1e,
  1678. 0x55, 0x96, 0x59, 0x56, 0xde, 0x93, 0x65, 0xb6, 0xe4, 0x7f, 0x93, 0x65, 0x79, 0x3b, 0xcb, 0x28,
  1679. 0xc0, 0x49, 0x28, 0xc7, 0xf3, 0xef, 0xc9, 0x4d, 0xde, 0xf3, 0x73, 0xce, 0x12, 0x12, 0xe4, 0xd9,
  1680. 0xac, 0xbb, 0xd4, 0x72, 0x77, 0x22, 0xf7, 0x09, 0x9c, 0xdd, 0x83, 0x32, 0xe6, 0xa7, 0x72, 0x75,
  1681. 0x13, 0xf2, 0x09, 0xbb, 0x35, 0x29, 0x8a, 0x47, 0xfa, 0x39, 0x54, 0x0c, 0x57, 0x0c, 0x31, 0x0d,
  1682. 0x13, 0x26, 0x86, 0x69, 0x0a, 0xe3, 0x99, 0x3e, 0x83, 0xb5, 0x06, 0x93, 0x67, 0x7a, 0x58, 0xe1,
  1683. 0x4b, 0xee, 0x43, 0x09, 0x67, 0xd3, 0x75, 0x36, 0x26, 0x8b, 0x23, 0x3d, 0x24, 0x50, 0x9b, 0x47,
  1684. 0x59, 0xe9, 0xe0, 0x99, 0xbe, 0x98, 0xd6, 0x56, 0x15, 0x30, 0xe0, 0xaf, 0xc3, 0x49, 0x05, 0x68,
  1685. 0xca, 0xb6, 0xba, 0x62, 0x5b, 0xa5, 0xdf, 0xc0, 0x9e, 0xb6, 0xa0, 0x7a, 0x76, 0xa7, 0x7b, 0xd3,
  1686. 0x66, 0xc9, 0xf1, 0x58, 0xcf, 0x25, 0x34, 0xb8, 0xcc, 0x1d, 0x7a, 0x71, 0xa7, 0xa2, 0x20, 0x07,
  1687. 0x50, 0x14, 0x2a, 0x4d, 0xcc, 0x07, 0xd9, 0xb5, 0xbb, 0x94, 0x51, 0xe1, 0x3c, 0xf2, 0x8c, 0x14,
  1688. 0x3d, 0x87, 0xaa, 0x05, 0x7f, 0x48, 0xfb, 0x24, 0x0f, 0xa0, 0xcc, 0x51, 0x05, 0x9d, 0xd3, 0x0d,
  1689. 0xbd, 0xc4, 0xf5, 0xe4, 0xa1, 0x47, 0xb0, 0xa1, 0xbd, 0x33, 0xb7, 0xfc, 0x0b, 0x87, 0xf6, 0x53,
  1690. 0x13, 0x47, 0x5d, 0x19, 0xbe, 0x55, 0xd1, 0xdd, 0x51, 0x26, 0xd2, 0x58, 0xac, 0x7a, 0x05, 0xd1,
  1691. 0xbd, 0x69, 0x06, 0xf4, 0xd9, 0xac, 0x24, 0x4e, 0xb1, 0xa2, 0xaf, 0x08, 0x73, 0xd9, 0x96, 0x75,
  1692. 0x99, 0x91, 0x32, 0x02, 0xf4, 0x39, 0x14, 0x35, 0x42, 0xfe, 0x07, 0x15, 0x8d, 0x5d, 0x67, 0x4f,
  1693. 0x2f, 0x6b, 0xa0, 0x19, 0xe0, 0x87, 0x18, 0xf8, 0xd7, 0x56, 0x0c, 0x8a, 0x03, 0x1f, 0x97, 0x14,
  1694. 0xda, 0x84, 0xad, 0x53, 0x5f, 0xfa, 0x6d, 0x96, 0x0c, 0x42, 0x21, 0x42, 0x8e, 0x5b, 0x09, 0x9a,
  1695. 0x4a, 0x46, 0x11, 0xbb, 0xb6, 0x1a, 0x70, 0x19, 0x01, 0xd5, 0xb7, 0x97, 0x26, 0xc3, 0x6f, 0xb9,
  1696. 0x79, 0x5b, 0x82, 0x9c, 0xcc, 0xd6, 0xd6, 0x23, 0xeb, 0x31, 0x73, 0xe2, 0x9f, 0x60, 0xea, 0xfc,
  1697. 0xbd, 0x0a, 0xc5, 0x56, 0x5f, 0x4d, 0xc8, 0x75, 0x58, 0x69, 0x66, 0x69, 0xa1, 0x8b, 0xa2, 0xd5,
  1698. 0x6f, 0x66, 0x9d, 0x1d, 0xcf, 0xd8, 0x79, 0xdb, 0x7e, 0x22, 0xb1, 0xbb, 0x9a, 0x6d, 0x4b, 0x27,
  1699. 0xc7, 0x0c, 0x6a, 0x6d, 0x63, 0x66, 0x9f, 0x34, 0xb8, 0x03, 0xa5, 0x8e, 0x1c, 0xa9, 0x85, 0x50,
  1700. 0x37, 0xf6, 0x94, 0xc4, 0x99, 0x71, 0xd4, 0x63, 0x8d, 0x84, 0x8f, 0x86, 0xaa, 0x9b, 0xe7, 0xbd,
  1701. 0x8c, 0xc6, 0x0d, 0xad, 0x23, 0x47, 0xe7, 0x61, 0xdc, 0x6f, 0xb3, 0x44, 0xf0, 0xd8, 0x74, 0xf3,
  1702. 0x69, 0x10, 0x2d, 0x74, 0xe4, 0xc8, 0x5e, 0x88, 0x32, 0x1a, 0x03, 0xd0, 0xc1, 0x7c, 0x72, 0x2a,
  1703. 0xba, 0xc7, 0x28, 0x02, 0xbd, 0x39, 0x0a, 0x82, 0x84, 0x09, 0xe1, 0x80, 0xf6, 0xc6, 0x90, 0x33,
  1704. 0x53, 0xaa, 0x3a, 0x37, 0xa5, 0xac, 0xc9, 0x52, 0xd3, 0xd5, 0x61, 0x48, 0xa5, 0x79, 0xc3, 0xba,
  1705. 0x7d, 0x9c, 0x20, 0xcc, 0x59, 0x53, 0x4c, 0x0b, 0xc1, 0xbd, 0x4d, 0x51, 0xca, 0xf0, 0xba, 0xde,
  1706. 0xdb, 0x32, 0x00, 0xed, 0x2a, 0xe2, 0x78, 0xec, 0x6c, 0x68, 0x8f, 0x0c, 0x89, 0xfb, 0xe7, 0x05,
  1707. 0x93, 0x3f, 0xf1, 0xa4, 0x7f, 0xca, 0xa4, 0x1f, 0xe2, 0xd6, 0xb8, 0xa9, 0x8c, 0xcf, 0xc2, 0x2a,
  1708. 0x92, 0x26, 0xb3, 0x9d, 0x2d, 0x13, 0xc9, 0x34, 0xd3, 0x71, 0x32, 0xfb, 0x51, 0xa4, 0x96, 0x79,
  1709. 0xa2, 0x79, 0x29, 0xad, 0x26, 0xbc, 0xaf, 0x38, 0xf7, 0xf4, 0x37, 0xd3, 0x14, 0xfa, 0xf4, 0xdd,
  1710. 0xc8, 0xe7, 0x3f, 0xfc, 0x18, 0x3a, 0xdb, 0xfa, 0xad, 0x86, 0xc4, 0xef, 0xd2, 0xea, 0x4b, 0x65,
  1711. 0x5c, 0x8d, 0x01, 0x67, 0x47, 0xf1, 0xa7, 0x41, 0x7c, 0xf1, 0x39, 0xf7, 0x03, 0x1d, 0xff, 0x5d,
  1712. 0x25, 0x31, 0x01, 0x68, 0xdd, 0xe4, 0xdf, 0xd2, 0x21, 0xfc, 0xf8, 0x8f, 0x32, 0xee, 0xb0, 0xa6,
  1713. 0x28, 0xc8, 0x21, 0x94, 0x1a, 0x4c, 0x62, 0x3a, 0x11, 0xbb, 0xcb, 0x58, 0xbf, 0x9f, 0xdc, 0xfb,
  1714. 0x73, 0xb8, 0xf9, 0x8d, 0xf0, 0x2d, 0x40, 0xdb, 0x4f, 0x04, 0x53, 0xbf, 0x1c, 0x88, 0x2d, 0x66,
  1715. 0xff, 0xe4, 0x70, 0x9d, 0x79, 0x86, 0x31, 0xf0, 0x14, 0xd6, 0x75, 0x37, 0xc2, 0xb1, 0x87, 0xcb,
  1716. 0x29, 0xd9, 0xb4, 0x64, 0xd5, 0xc6, 0xed, 0x6e, 0x2f, 0xd8, 0x5f, 0x55, 0x87, 0x3c, 0x0a, 0x82,
  1717. 0x56, 0x5f, 0x12, 0xbb, 0x5d, 0xe9, 0xca, 0x73, 0xe7, 0x20, 0x41, 0x8e, 0x60, 0x0d, 0x63, 0x94,
  1718. 0xed, 0x9c, 0x53, 0xde, 0xda, 0x8b, 0xad, 0xbb, 0x84, 0x21, 0xc8, 0x0b, 0xa8, 0x35, 0x98, 0x9c,
  1719. 0xfc, 0x82, 0xb9, 0xbf, 0x78, 0xcb, 0x98, 0xb6, 0x30, 0xb5, 0xa8, 0x1c, 0x02, 0x34, 0x98, 0x34,
  1720. 0x23, 0x9e, 0xec, 0x2c, 0x1a, 0xfb, 0xb7, 0xee, 0x42, 0x18, 0x97, 0x9c, 0x5a, 0x9b, 0x0b, 0x99,
  1721. 0x6e, 0x59, 0x53, 0x1f, 0xcb, 0xda, 0x2b, 0xdd, 0xc5, 0x38, 0x6e, 0x1d, 0xa6, 0xf1, 0x4f, 0x42,
  1722. 0xb0, 0x33, 0xf7, 0x52, 0x6c, 0xb9, 0x2e, 0x99, 0x0f, 0x00, 0xb9, 0x84, 0xad, 0x06, 0x93, 0xd3,
  1723. 0x0d, 0x94, 0xec, 0xdd, 0xd1, 0x5b, 0x6f, 0xdd, 0xbb, 0xb8, 0x82, 0x9c, 0x82, 0xab, 0xdd, 0x69,
  1724. 0xf5, 0xe5, 0x05, 0x93, 0xdf, 0x67, 0x05, 0xf7, 0x51, 0x59, 0x30, 0x80, 0x07, 0x4b, 0x07, 0x3b,
  1725. 0xf9, 0xca, 0x52, 0xb9, 0x6b, 0x6f, 0x70, 0x3f, 0x50, 0x10, 0x33, 0x00, 0x26, 0x2b, 0x0c, 0x71,
  1726. 0xe6, 0xd4, 0xcc, 0x66, 0xe3, 0x2e, 0xe3, 0xe0, 0x57, 0xa8, 0xd9, 0xb3, 0x7e, 0xc1, 0x43, 0xdd,
  1727. 0x39, 0xdd, 0xc9, 0x5a, 0xf0, 0x32, 0xd5, 0x36, 0x43, 0x78, 0x5e, 0x36, 0x9b, 0xff, 0xee, 0x72,
  1728. 0x1e, 0x7a, 0x41, 0xa6, 0xdf, 0xf9, 0x31, 0x41, 0x7f, 0x5d, 0x54, 0xff, 0xb7, 0x3c, 0xf9, 0x27,
  1729. 0x00, 0x00, 0xff, 0xff, 0x49, 0x1d, 0x86, 0xf0, 0x82, 0x11, 0x00, 0x00,
  1730. }
  1731. // Reference imports to suppress errors if they are not otherwise used.
  1732. var _ context.Context
  1733. var _ grpc.ClientConn
  1734. // This is a compile-time assertion to ensure that this generated file
  1735. // is compatible with the grpc package it is being compiled against.
  1736. const _ = grpc.SupportPackageIsVersion4
  1737. // TransformClient is the client API for Transform service.
  1738. //
  1739. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  1740. type TransformClient interface {
  1741. GetUser(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error)
  1742. ParseToken(ctx context.Context, in *TokenRequest, opts ...grpc.CallOption) (*TokenResponse, error)
  1743. //获取erp 省、城市树
  1744. GetErpCityTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
  1745. AddMkt(ctx context.Context, in *MktReq, opts ...grpc.CallOption) (*MktRes, error)
  1746. //获取erp 字典
  1747. LoadOptionset(ctx context.Context, in *OptionsetReq, opts ...grpc.CallOption) (*OptionsetRes, error)
  1748. GetSchoolIds(ctx context.Context, in *SchoolIdsReq, opts ...grpc.CallOption) (*SchoolIdsRes, error)
  1749. GetCityIds(ctx context.Context, in *CityIdsReq, opts ...grpc.CallOption) (*CityIdsRes, error)
  1750. PostExcelLog(ctx context.Context, in *ExcelLogReq, opts ...grpc.CallOption) (*ExcelLogRes, error)
  1751. GetErpOptionset(ctx context.Context, in *OptionCode, opts ...grpc.CallOption) (*Options, error)
  1752. //获取数据权限
  1753. GetDataPermission(ctx context.Context, in *DataPermissionReq, opts ...grpc.CallOption) (*DataPermissionRes, error)
  1754. //获取erp 渠道细分树
  1755. GetErpMktNetWorkDetailTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
  1756. //获取erp 用户校区权限
  1757. GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error)
  1758. //获取 erp 用户角色
  1759. GetErpRole(ctx context.Context, in *GetErpRoleReq, opts ...grpc.CallOption) (*GetErpRoleRes, error)
  1760. //获取 erp 全部校区
  1761. GetErpSchool(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*GetErpSchoolRes, error)
  1762. //获取 erp 活动
  1763. GetErpActive(ctx context.Context, in *GetErpActiveReq, opts ...grpc.CallOption) (*GetErpActiveRes, error)
  1764. //获取erp 省、城、校区
  1765. GetErpOrganSchTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
  1766. }
  1767. type transformClient struct {
  1768. cc *grpc.ClientConn
  1769. }
  1770. func NewTransformClient(cc *grpc.ClientConn) TransformClient {
  1771. return &transformClient{cc}
  1772. }
  1773. func (c *transformClient) GetUser(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error) {
  1774. out := new(UserResponse)
  1775. err := c.cc.Invoke(ctx, "/transform.Transform/GetUser", in, out, opts...)
  1776. if err != nil {
  1777. return nil, err
  1778. }
  1779. return out, nil
  1780. }
  1781. func (c *transformClient) ParseToken(ctx context.Context, in *TokenRequest, opts ...grpc.CallOption) (*TokenResponse, error) {
  1782. out := new(TokenResponse)
  1783. err := c.cc.Invoke(ctx, "/transform.Transform/ParseToken", in, out, opts...)
  1784. if err != nil {
  1785. return nil, err
  1786. }
  1787. return out, nil
  1788. }
  1789. func (c *transformClient) GetErpCityTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
  1790. out := new(TreeNodes)
  1791. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpCityTree", in, out, opts...)
  1792. if err != nil {
  1793. return nil, err
  1794. }
  1795. return out, nil
  1796. }
  1797. func (c *transformClient) AddMkt(ctx context.Context, in *MktReq, opts ...grpc.CallOption) (*MktRes, error) {
  1798. out := new(MktRes)
  1799. err := c.cc.Invoke(ctx, "/transform.Transform/AddMkt", in, out, opts...)
  1800. if err != nil {
  1801. return nil, err
  1802. }
  1803. return out, nil
  1804. }
  1805. func (c *transformClient) LoadOptionset(ctx context.Context, in *OptionsetReq, opts ...grpc.CallOption) (*OptionsetRes, error) {
  1806. out := new(OptionsetRes)
  1807. err := c.cc.Invoke(ctx, "/transform.Transform/LoadOptionset", in, out, opts...)
  1808. if err != nil {
  1809. return nil, err
  1810. }
  1811. return out, nil
  1812. }
  1813. func (c *transformClient) GetSchoolIds(ctx context.Context, in *SchoolIdsReq, opts ...grpc.CallOption) (*SchoolIdsRes, error) {
  1814. out := new(SchoolIdsRes)
  1815. err := c.cc.Invoke(ctx, "/transform.Transform/GetSchoolIds", in, out, opts...)
  1816. if err != nil {
  1817. return nil, err
  1818. }
  1819. return out, nil
  1820. }
  1821. func (c *transformClient) GetCityIds(ctx context.Context, in *CityIdsReq, opts ...grpc.CallOption) (*CityIdsRes, error) {
  1822. out := new(CityIdsRes)
  1823. err := c.cc.Invoke(ctx, "/transform.Transform/GetCityIds", in, out, opts...)
  1824. if err != nil {
  1825. return nil, err
  1826. }
  1827. return out, nil
  1828. }
  1829. func (c *transformClient) PostExcelLog(ctx context.Context, in *ExcelLogReq, opts ...grpc.CallOption) (*ExcelLogRes, error) {
  1830. out := new(ExcelLogRes)
  1831. err := c.cc.Invoke(ctx, "/transform.Transform/PostExcelLog", in, out, opts...)
  1832. if err != nil {
  1833. return nil, err
  1834. }
  1835. return out, nil
  1836. }
  1837. func (c *transformClient) GetErpOptionset(ctx context.Context, in *OptionCode, opts ...grpc.CallOption) (*Options, error) {
  1838. out := new(Options)
  1839. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOptionset", in, out, opts...)
  1840. if err != nil {
  1841. return nil, err
  1842. }
  1843. return out, nil
  1844. }
  1845. func (c *transformClient) GetDataPermission(ctx context.Context, in *DataPermissionReq, opts ...grpc.CallOption) (*DataPermissionRes, error) {
  1846. out := new(DataPermissionRes)
  1847. err := c.cc.Invoke(ctx, "/transform.Transform/GetDataPermission", in, out, opts...)
  1848. if err != nil {
  1849. return nil, err
  1850. }
  1851. return out, nil
  1852. }
  1853. func (c *transformClient) GetErpMktNetWorkDetailTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
  1854. out := new(TreeNodes)
  1855. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpMktNetWorkDetailTree", in, out, opts...)
  1856. if err != nil {
  1857. return nil, err
  1858. }
  1859. return out, nil
  1860. }
  1861. func (c *transformClient) GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error) {
  1862. out := new(GetErpOrganSchPerByUserIdRes)
  1863. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOrganSchPerByUserId", in, out, opts...)
  1864. if err != nil {
  1865. return nil, err
  1866. }
  1867. return out, nil
  1868. }
  1869. func (c *transformClient) GetErpRole(ctx context.Context, in *GetErpRoleReq, opts ...grpc.CallOption) (*GetErpRoleRes, error) {
  1870. out := new(GetErpRoleRes)
  1871. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpRole", in, out, opts...)
  1872. if err != nil {
  1873. return nil, err
  1874. }
  1875. return out, nil
  1876. }
  1877. func (c *transformClient) GetErpSchool(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*GetErpSchoolRes, error) {
  1878. out := new(GetErpSchoolRes)
  1879. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpSchool", in, out, opts...)
  1880. if err != nil {
  1881. return nil, err
  1882. }
  1883. return out, nil
  1884. }
  1885. func (c *transformClient) GetErpActive(ctx context.Context, in *GetErpActiveReq, opts ...grpc.CallOption) (*GetErpActiveRes, error) {
  1886. out := new(GetErpActiveRes)
  1887. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpActive", in, out, opts...)
  1888. if err != nil {
  1889. return nil, err
  1890. }
  1891. return out, nil
  1892. }
  1893. func (c *transformClient) GetErpOrganSchTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
  1894. out := new(TreeNodes)
  1895. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOrganSchTree", in, out, opts...)
  1896. if err != nil {
  1897. return nil, err
  1898. }
  1899. return out, nil
  1900. }
  1901. // TransformServer is the server API for Transform service.
  1902. type TransformServer interface {
  1903. GetUser(context.Context, *UserRequest) (*UserResponse, error)
  1904. ParseToken(context.Context, *TokenRequest) (*TokenResponse, error)
  1905. //获取erp 省、城市树
  1906. GetErpCityTree(context.Context, *Empty) (*TreeNodes, error)
  1907. AddMkt(context.Context, *MktReq) (*MktRes, error)
  1908. //获取erp 字典
  1909. LoadOptionset(context.Context, *OptionsetReq) (*OptionsetRes, error)
  1910. GetSchoolIds(context.Context, *SchoolIdsReq) (*SchoolIdsRes, error)
  1911. GetCityIds(context.Context, *CityIdsReq) (*CityIdsRes, error)
  1912. PostExcelLog(context.Context, *ExcelLogReq) (*ExcelLogRes, error)
  1913. GetErpOptionset(context.Context, *OptionCode) (*Options, error)
  1914. //获取数据权限
  1915. GetDataPermission(context.Context, *DataPermissionReq) (*DataPermissionRes, error)
  1916. //获取erp 渠道细分树
  1917. GetErpMktNetWorkDetailTree(context.Context, *Empty) (*TreeNodes, error)
  1918. //获取erp 用户校区权限
  1919. GetErpOrganSchPerByUserId(context.Context, *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error)
  1920. //获取 erp 用户角色
  1921. GetErpRole(context.Context, *GetErpRoleReq) (*GetErpRoleRes, error)
  1922. //获取 erp 全部校区
  1923. GetErpSchool(context.Context, *Empty) (*GetErpSchoolRes, error)
  1924. //获取 erp 活动
  1925. GetErpActive(context.Context, *GetErpActiveReq) (*GetErpActiveRes, error)
  1926. //获取erp 省、城、校区
  1927. GetErpOrganSchTree(context.Context, *Empty) (*TreeNodes, error)
  1928. }
  1929. // UnimplementedTransformServer can be embedded to have forward compatible implementations.
  1930. type UnimplementedTransformServer struct {
  1931. }
  1932. func (*UnimplementedTransformServer) GetUser(ctx context.Context, req *UserRequest) (*UserResponse, error) {
  1933. return nil, status.Errorf(codes.Unimplemented, "method GetUser not implemented")
  1934. }
  1935. func (*UnimplementedTransformServer) ParseToken(ctx context.Context, req *TokenRequest) (*TokenResponse, error) {
  1936. return nil, status.Errorf(codes.Unimplemented, "method ParseToken not implemented")
  1937. }
  1938. func (*UnimplementedTransformServer) GetErpCityTree(ctx context.Context, req *Empty) (*TreeNodes, error) {
  1939. return nil, status.Errorf(codes.Unimplemented, "method GetErpCityTree not implemented")
  1940. }
  1941. func (*UnimplementedTransformServer) AddMkt(ctx context.Context, req *MktReq) (*MktRes, error) {
  1942. return nil, status.Errorf(codes.Unimplemented, "method AddMkt not implemented")
  1943. }
  1944. func (*UnimplementedTransformServer) LoadOptionset(ctx context.Context, req *OptionsetReq) (*OptionsetRes, error) {
  1945. return nil, status.Errorf(codes.Unimplemented, "method LoadOptionset not implemented")
  1946. }
  1947. func (*UnimplementedTransformServer) GetSchoolIds(ctx context.Context, req *SchoolIdsReq) (*SchoolIdsRes, error) {
  1948. return nil, status.Errorf(codes.Unimplemented, "method GetSchoolIds not implemented")
  1949. }
  1950. func (*UnimplementedTransformServer) GetCityIds(ctx context.Context, req *CityIdsReq) (*CityIdsRes, error) {
  1951. return nil, status.Errorf(codes.Unimplemented, "method GetCityIds not implemented")
  1952. }
  1953. func (*UnimplementedTransformServer) PostExcelLog(ctx context.Context, req *ExcelLogReq) (*ExcelLogRes, error) {
  1954. return nil, status.Errorf(codes.Unimplemented, "method PostExcelLog not implemented")
  1955. }
  1956. func (*UnimplementedTransformServer) GetErpOptionset(ctx context.Context, req *OptionCode) (*Options, error) {
  1957. return nil, status.Errorf(codes.Unimplemented, "method GetErpOptionset not implemented")
  1958. }
  1959. func (*UnimplementedTransformServer) GetDataPermission(ctx context.Context, req *DataPermissionReq) (*DataPermissionRes, error) {
  1960. return nil, status.Errorf(codes.Unimplemented, "method GetDataPermission not implemented")
  1961. }
  1962. func (*UnimplementedTransformServer) GetErpMktNetWorkDetailTree(ctx context.Context, req *Empty) (*TreeNodes, error) {
  1963. return nil, status.Errorf(codes.Unimplemented, "method GetErpMktNetWorkDetailTree not implemented")
  1964. }
  1965. func (*UnimplementedTransformServer) GetErpOrganSchPerByUserId(ctx context.Context, req *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error) {
  1966. return nil, status.Errorf(codes.Unimplemented, "method GetErpOrganSchPerByUserId not implemented")
  1967. }
  1968. func (*UnimplementedTransformServer) GetErpRole(ctx context.Context, req *GetErpRoleReq) (*GetErpRoleRes, error) {
  1969. return nil, status.Errorf(codes.Unimplemented, "method GetErpRole not implemented")
  1970. }
  1971. func (*UnimplementedTransformServer) GetErpSchool(ctx context.Context, req *Empty) (*GetErpSchoolRes, error) {
  1972. return nil, status.Errorf(codes.Unimplemented, "method GetErpSchool not implemented")
  1973. }
  1974. func (*UnimplementedTransformServer) GetErpActive(ctx context.Context, req *GetErpActiveReq) (*GetErpActiveRes, error) {
  1975. return nil, status.Errorf(codes.Unimplemented, "method GetErpActive not implemented")
  1976. }
  1977. func (*UnimplementedTransformServer) GetErpOrganSchTree(ctx context.Context, req *Empty) (*TreeNodes, error) {
  1978. return nil, status.Errorf(codes.Unimplemented, "method GetErpOrganSchTree not implemented")
  1979. }
  1980. func RegisterTransformServer(s *grpc.Server, srv TransformServer) {
  1981. s.RegisterService(&_Transform_serviceDesc, srv)
  1982. }
  1983. func _Transform_GetUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1984. in := new(UserRequest)
  1985. if err := dec(in); err != nil {
  1986. return nil, err
  1987. }
  1988. if interceptor == nil {
  1989. return srv.(TransformServer).GetUser(ctx, in)
  1990. }
  1991. info := &grpc.UnaryServerInfo{
  1992. Server: srv,
  1993. FullMethod: "/transform.Transform/GetUser",
  1994. }
  1995. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1996. return srv.(TransformServer).GetUser(ctx, req.(*UserRequest))
  1997. }
  1998. return interceptor(ctx, in, info, handler)
  1999. }
  2000. func _Transform_ParseToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2001. in := new(TokenRequest)
  2002. if err := dec(in); err != nil {
  2003. return nil, err
  2004. }
  2005. if interceptor == nil {
  2006. return srv.(TransformServer).ParseToken(ctx, in)
  2007. }
  2008. info := &grpc.UnaryServerInfo{
  2009. Server: srv,
  2010. FullMethod: "/transform.Transform/ParseToken",
  2011. }
  2012. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2013. return srv.(TransformServer).ParseToken(ctx, req.(*TokenRequest))
  2014. }
  2015. return interceptor(ctx, in, info, handler)
  2016. }
  2017. func _Transform_GetErpCityTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2018. in := new(Empty)
  2019. if err := dec(in); err != nil {
  2020. return nil, err
  2021. }
  2022. if interceptor == nil {
  2023. return srv.(TransformServer).GetErpCityTree(ctx, in)
  2024. }
  2025. info := &grpc.UnaryServerInfo{
  2026. Server: srv,
  2027. FullMethod: "/transform.Transform/GetErpCityTree",
  2028. }
  2029. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2030. return srv.(TransformServer).GetErpCityTree(ctx, req.(*Empty))
  2031. }
  2032. return interceptor(ctx, in, info, handler)
  2033. }
  2034. func _Transform_AddMkt_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2035. in := new(MktReq)
  2036. if err := dec(in); err != nil {
  2037. return nil, err
  2038. }
  2039. if interceptor == nil {
  2040. return srv.(TransformServer).AddMkt(ctx, in)
  2041. }
  2042. info := &grpc.UnaryServerInfo{
  2043. Server: srv,
  2044. FullMethod: "/transform.Transform/AddMkt",
  2045. }
  2046. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2047. return srv.(TransformServer).AddMkt(ctx, req.(*MktReq))
  2048. }
  2049. return interceptor(ctx, in, info, handler)
  2050. }
  2051. func _Transform_LoadOptionset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2052. in := new(OptionsetReq)
  2053. if err := dec(in); err != nil {
  2054. return nil, err
  2055. }
  2056. if interceptor == nil {
  2057. return srv.(TransformServer).LoadOptionset(ctx, in)
  2058. }
  2059. info := &grpc.UnaryServerInfo{
  2060. Server: srv,
  2061. FullMethod: "/transform.Transform/LoadOptionset",
  2062. }
  2063. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2064. return srv.(TransformServer).LoadOptionset(ctx, req.(*OptionsetReq))
  2065. }
  2066. return interceptor(ctx, in, info, handler)
  2067. }
  2068. func _Transform_GetSchoolIds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2069. in := new(SchoolIdsReq)
  2070. if err := dec(in); err != nil {
  2071. return nil, err
  2072. }
  2073. if interceptor == nil {
  2074. return srv.(TransformServer).GetSchoolIds(ctx, in)
  2075. }
  2076. info := &grpc.UnaryServerInfo{
  2077. Server: srv,
  2078. FullMethod: "/transform.Transform/GetSchoolIds",
  2079. }
  2080. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2081. return srv.(TransformServer).GetSchoolIds(ctx, req.(*SchoolIdsReq))
  2082. }
  2083. return interceptor(ctx, in, info, handler)
  2084. }
  2085. func _Transform_GetCityIds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2086. in := new(CityIdsReq)
  2087. if err := dec(in); err != nil {
  2088. return nil, err
  2089. }
  2090. if interceptor == nil {
  2091. return srv.(TransformServer).GetCityIds(ctx, in)
  2092. }
  2093. info := &grpc.UnaryServerInfo{
  2094. Server: srv,
  2095. FullMethod: "/transform.Transform/GetCityIds",
  2096. }
  2097. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2098. return srv.(TransformServer).GetCityIds(ctx, req.(*CityIdsReq))
  2099. }
  2100. return interceptor(ctx, in, info, handler)
  2101. }
  2102. func _Transform_PostExcelLog_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2103. in := new(ExcelLogReq)
  2104. if err := dec(in); err != nil {
  2105. return nil, err
  2106. }
  2107. if interceptor == nil {
  2108. return srv.(TransformServer).PostExcelLog(ctx, in)
  2109. }
  2110. info := &grpc.UnaryServerInfo{
  2111. Server: srv,
  2112. FullMethod: "/transform.Transform/PostExcelLog",
  2113. }
  2114. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2115. return srv.(TransformServer).PostExcelLog(ctx, req.(*ExcelLogReq))
  2116. }
  2117. return interceptor(ctx, in, info, handler)
  2118. }
  2119. func _Transform_GetErpOptionset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2120. in := new(OptionCode)
  2121. if err := dec(in); err != nil {
  2122. return nil, err
  2123. }
  2124. if interceptor == nil {
  2125. return srv.(TransformServer).GetErpOptionset(ctx, in)
  2126. }
  2127. info := &grpc.UnaryServerInfo{
  2128. Server: srv,
  2129. FullMethod: "/transform.Transform/GetErpOptionset",
  2130. }
  2131. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2132. return srv.(TransformServer).GetErpOptionset(ctx, req.(*OptionCode))
  2133. }
  2134. return interceptor(ctx, in, info, handler)
  2135. }
  2136. func _Transform_GetDataPermission_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2137. in := new(DataPermissionReq)
  2138. if err := dec(in); err != nil {
  2139. return nil, err
  2140. }
  2141. if interceptor == nil {
  2142. return srv.(TransformServer).GetDataPermission(ctx, in)
  2143. }
  2144. info := &grpc.UnaryServerInfo{
  2145. Server: srv,
  2146. FullMethod: "/transform.Transform/GetDataPermission",
  2147. }
  2148. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2149. return srv.(TransformServer).GetDataPermission(ctx, req.(*DataPermissionReq))
  2150. }
  2151. return interceptor(ctx, in, info, handler)
  2152. }
  2153. func _Transform_GetErpMktNetWorkDetailTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2154. in := new(Empty)
  2155. if err := dec(in); err != nil {
  2156. return nil, err
  2157. }
  2158. if interceptor == nil {
  2159. return srv.(TransformServer).GetErpMktNetWorkDetailTree(ctx, in)
  2160. }
  2161. info := &grpc.UnaryServerInfo{
  2162. Server: srv,
  2163. FullMethod: "/transform.Transform/GetErpMktNetWorkDetailTree",
  2164. }
  2165. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2166. return srv.(TransformServer).GetErpMktNetWorkDetailTree(ctx, req.(*Empty))
  2167. }
  2168. return interceptor(ctx, in, info, handler)
  2169. }
  2170. func _Transform_GetErpOrganSchPerByUserId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2171. in := new(GetErpOrganSchPerByUserIdReq)
  2172. if err := dec(in); err != nil {
  2173. return nil, err
  2174. }
  2175. if interceptor == nil {
  2176. return srv.(TransformServer).GetErpOrganSchPerByUserId(ctx, in)
  2177. }
  2178. info := &grpc.UnaryServerInfo{
  2179. Server: srv,
  2180. FullMethod: "/transform.Transform/GetErpOrganSchPerByUserId",
  2181. }
  2182. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2183. return srv.(TransformServer).GetErpOrganSchPerByUserId(ctx, req.(*GetErpOrganSchPerByUserIdReq))
  2184. }
  2185. return interceptor(ctx, in, info, handler)
  2186. }
  2187. func _Transform_GetErpRole_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2188. in := new(GetErpRoleReq)
  2189. if err := dec(in); err != nil {
  2190. return nil, err
  2191. }
  2192. if interceptor == nil {
  2193. return srv.(TransformServer).GetErpRole(ctx, in)
  2194. }
  2195. info := &grpc.UnaryServerInfo{
  2196. Server: srv,
  2197. FullMethod: "/transform.Transform/GetErpRole",
  2198. }
  2199. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2200. return srv.(TransformServer).GetErpRole(ctx, req.(*GetErpRoleReq))
  2201. }
  2202. return interceptor(ctx, in, info, handler)
  2203. }
  2204. func _Transform_GetErpSchool_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2205. in := new(Empty)
  2206. if err := dec(in); err != nil {
  2207. return nil, err
  2208. }
  2209. if interceptor == nil {
  2210. return srv.(TransformServer).GetErpSchool(ctx, in)
  2211. }
  2212. info := &grpc.UnaryServerInfo{
  2213. Server: srv,
  2214. FullMethod: "/transform.Transform/GetErpSchool",
  2215. }
  2216. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2217. return srv.(TransformServer).GetErpSchool(ctx, req.(*Empty))
  2218. }
  2219. return interceptor(ctx, in, info, handler)
  2220. }
  2221. func _Transform_GetErpActive_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2222. in := new(GetErpActiveReq)
  2223. if err := dec(in); err != nil {
  2224. return nil, err
  2225. }
  2226. if interceptor == nil {
  2227. return srv.(TransformServer).GetErpActive(ctx, in)
  2228. }
  2229. info := &grpc.UnaryServerInfo{
  2230. Server: srv,
  2231. FullMethod: "/transform.Transform/GetErpActive",
  2232. }
  2233. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2234. return srv.(TransformServer).GetErpActive(ctx, req.(*GetErpActiveReq))
  2235. }
  2236. return interceptor(ctx, in, info, handler)
  2237. }
  2238. func _Transform_GetErpOrganSchTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  2239. in := new(Empty)
  2240. if err := dec(in); err != nil {
  2241. return nil, err
  2242. }
  2243. if interceptor == nil {
  2244. return srv.(TransformServer).GetErpOrganSchTree(ctx, in)
  2245. }
  2246. info := &grpc.UnaryServerInfo{
  2247. Server: srv,
  2248. FullMethod: "/transform.Transform/GetErpOrganSchTree",
  2249. }
  2250. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  2251. return srv.(TransformServer).GetErpOrganSchTree(ctx, req.(*Empty))
  2252. }
  2253. return interceptor(ctx, in, info, handler)
  2254. }
  2255. var _Transform_serviceDesc = grpc.ServiceDesc{
  2256. ServiceName: "transform.Transform",
  2257. HandlerType: (*TransformServer)(nil),
  2258. Methods: []grpc.MethodDesc{
  2259. {
  2260. MethodName: "GetUser",
  2261. Handler: _Transform_GetUser_Handler,
  2262. },
  2263. {
  2264. MethodName: "ParseToken",
  2265. Handler: _Transform_ParseToken_Handler,
  2266. },
  2267. {
  2268. MethodName: "GetErpCityTree",
  2269. Handler: _Transform_GetErpCityTree_Handler,
  2270. },
  2271. {
  2272. MethodName: "AddMkt",
  2273. Handler: _Transform_AddMkt_Handler,
  2274. },
  2275. {
  2276. MethodName: "LoadOptionset",
  2277. Handler: _Transform_LoadOptionset_Handler,
  2278. },
  2279. {
  2280. MethodName: "GetSchoolIds",
  2281. Handler: _Transform_GetSchoolIds_Handler,
  2282. },
  2283. {
  2284. MethodName: "GetCityIds",
  2285. Handler: _Transform_GetCityIds_Handler,
  2286. },
  2287. {
  2288. MethodName: "PostExcelLog",
  2289. Handler: _Transform_PostExcelLog_Handler,
  2290. },
  2291. {
  2292. MethodName: "GetErpOptionset",
  2293. Handler: _Transform_GetErpOptionset_Handler,
  2294. },
  2295. {
  2296. MethodName: "GetDataPermission",
  2297. Handler: _Transform_GetDataPermission_Handler,
  2298. },
  2299. {
  2300. MethodName: "GetErpMktNetWorkDetailTree",
  2301. Handler: _Transform_GetErpMktNetWorkDetailTree_Handler,
  2302. },
  2303. {
  2304. MethodName: "GetErpOrganSchPerByUserId",
  2305. Handler: _Transform_GetErpOrganSchPerByUserId_Handler,
  2306. },
  2307. {
  2308. MethodName: "GetErpRole",
  2309. Handler: _Transform_GetErpRole_Handler,
  2310. },
  2311. {
  2312. MethodName: "GetErpSchool",
  2313. Handler: _Transform_GetErpSchool_Handler,
  2314. },
  2315. {
  2316. MethodName: "GetErpActive",
  2317. Handler: _Transform_GetErpActive_Handler,
  2318. },
  2319. {
  2320. MethodName: "GetErpOrganSchTree",
  2321. Handler: _Transform_GetErpOrganSchTree_Handler,
  2322. },
  2323. },
  2324. Streams: []grpc.StreamDesc{},
  2325. Metadata: "transform.proto",
  2326. }