transform.pb.go 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256
  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. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  189. XXX_unrecognized []byte `json:"-"`
  190. XXX_sizecache int32 `json:"-"`
  191. }
  192. func (m *TokenResponse) Reset() { *m = TokenResponse{} }
  193. func (m *TokenResponse) String() string { return proto.CompactTextString(m) }
  194. func (*TokenResponse) ProtoMessage() {}
  195. func (*TokenResponse) Descriptor() ([]byte, []int) {
  196. return fileDescriptor_cb4a498eeb2ba07d, []int{3}
  197. }
  198. func (m *TokenResponse) XXX_Unmarshal(b []byte) error {
  199. return xxx_messageInfo_TokenResponse.Unmarshal(m, b)
  200. }
  201. func (m *TokenResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  202. return xxx_messageInfo_TokenResponse.Marshal(b, m, deterministic)
  203. }
  204. func (m *TokenResponse) XXX_Merge(src proto.Message) {
  205. xxx_messageInfo_TokenResponse.Merge(m, src)
  206. }
  207. func (m *TokenResponse) XXX_Size() int {
  208. return xxx_messageInfo_TokenResponse.Size(m)
  209. }
  210. func (m *TokenResponse) XXX_DiscardUnknown() {
  211. xxx_messageInfo_TokenResponse.DiscardUnknown(m)
  212. }
  213. var xxx_messageInfo_TokenResponse proto.InternalMessageInfo
  214. func (m *TokenResponse) GetUserId() string {
  215. if m != nil {
  216. return m.UserId
  217. }
  218. return ""
  219. }
  220. func (m *TokenResponse) GetUserRoleIds() string {
  221. if m != nil {
  222. return m.UserRoleIds
  223. }
  224. return ""
  225. }
  226. func (m *TokenResponse) GetUserSchoolIds() string {
  227. if m != nil {
  228. return m.UserSchoolIds
  229. }
  230. return ""
  231. }
  232. func (m *TokenResponse) GetUserProvinceIds() string {
  233. if m != nil {
  234. return m.UserProvinceIds
  235. }
  236. return ""
  237. }
  238. func (m *TokenResponse) GetUserOrganIds() string {
  239. if m != nil {
  240. return m.UserOrganIds
  241. }
  242. return ""
  243. }
  244. func (m *TokenResponse) GetSysSchoolId() string {
  245. if m != nil {
  246. return m.SysSchoolId
  247. }
  248. return ""
  249. }
  250. func (m *TokenResponse) GetSysOrganId() string {
  251. if m != nil {
  252. return m.SysOrganId
  253. }
  254. return ""
  255. }
  256. type Empty struct {
  257. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  258. XXX_unrecognized []byte `json:"-"`
  259. XXX_sizecache int32 `json:"-"`
  260. }
  261. func (m *Empty) Reset() { *m = Empty{} }
  262. func (m *Empty) String() string { return proto.CompactTextString(m) }
  263. func (*Empty) ProtoMessage() {}
  264. func (*Empty) Descriptor() ([]byte, []int) {
  265. return fileDescriptor_cb4a498eeb2ba07d, []int{4}
  266. }
  267. func (m *Empty) XXX_Unmarshal(b []byte) error {
  268. return xxx_messageInfo_Empty.Unmarshal(m, b)
  269. }
  270. func (m *Empty) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  271. return xxx_messageInfo_Empty.Marshal(b, m, deterministic)
  272. }
  273. func (m *Empty) XXX_Merge(src proto.Message) {
  274. xxx_messageInfo_Empty.Merge(m, src)
  275. }
  276. func (m *Empty) XXX_Size() int {
  277. return xxx_messageInfo_Empty.Size(m)
  278. }
  279. func (m *Empty) XXX_DiscardUnknown() {
  280. xxx_messageInfo_Empty.DiscardUnknown(m)
  281. }
  282. var xxx_messageInfo_Empty proto.InternalMessageInfo
  283. type TreeNodes struct {
  284. Nodes []*TreeNode `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
  285. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  286. XXX_unrecognized []byte `json:"-"`
  287. XXX_sizecache int32 `json:"-"`
  288. }
  289. func (m *TreeNodes) Reset() { *m = TreeNodes{} }
  290. func (m *TreeNodes) String() string { return proto.CompactTextString(m) }
  291. func (*TreeNodes) ProtoMessage() {}
  292. func (*TreeNodes) Descriptor() ([]byte, []int) {
  293. return fileDescriptor_cb4a498eeb2ba07d, []int{5}
  294. }
  295. func (m *TreeNodes) XXX_Unmarshal(b []byte) error {
  296. return xxx_messageInfo_TreeNodes.Unmarshal(m, b)
  297. }
  298. func (m *TreeNodes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  299. return xxx_messageInfo_TreeNodes.Marshal(b, m, deterministic)
  300. }
  301. func (m *TreeNodes) XXX_Merge(src proto.Message) {
  302. xxx_messageInfo_TreeNodes.Merge(m, src)
  303. }
  304. func (m *TreeNodes) XXX_Size() int {
  305. return xxx_messageInfo_TreeNodes.Size(m)
  306. }
  307. func (m *TreeNodes) XXX_DiscardUnknown() {
  308. xxx_messageInfo_TreeNodes.DiscardUnknown(m)
  309. }
  310. var xxx_messageInfo_TreeNodes proto.InternalMessageInfo
  311. func (m *TreeNodes) GetNodes() []*TreeNode {
  312. if m != nil {
  313. return m.Nodes
  314. }
  315. return nil
  316. }
  317. type TreeNode struct {
  318. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  319. Text string `protobuf:"bytes,2,opt,name=text,proto3" json:"text,omitempty"`
  320. Parent int64 `protobuf:"varint,3,opt,name=parent,proto3" json:"parent,omitempty"`
  321. Tag *Tag `protobuf:"bytes,4,opt,name=tag,proto3" json:"tag,omitempty"`
  322. Nodes []*TreeNode `protobuf:"bytes,5,rep,name=nodes,proto3" json:"nodes,omitempty"`
  323. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  324. XXX_unrecognized []byte `json:"-"`
  325. XXX_sizecache int32 `json:"-"`
  326. }
  327. func (m *TreeNode) Reset() { *m = TreeNode{} }
  328. func (m *TreeNode) String() string { return proto.CompactTextString(m) }
  329. func (*TreeNode) ProtoMessage() {}
  330. func (*TreeNode) Descriptor() ([]byte, []int) {
  331. return fileDescriptor_cb4a498eeb2ba07d, []int{6}
  332. }
  333. func (m *TreeNode) XXX_Unmarshal(b []byte) error {
  334. return xxx_messageInfo_TreeNode.Unmarshal(m, b)
  335. }
  336. func (m *TreeNode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  337. return xxx_messageInfo_TreeNode.Marshal(b, m, deterministic)
  338. }
  339. func (m *TreeNode) XXX_Merge(src proto.Message) {
  340. xxx_messageInfo_TreeNode.Merge(m, src)
  341. }
  342. func (m *TreeNode) XXX_Size() int {
  343. return xxx_messageInfo_TreeNode.Size(m)
  344. }
  345. func (m *TreeNode) XXX_DiscardUnknown() {
  346. xxx_messageInfo_TreeNode.DiscardUnknown(m)
  347. }
  348. var xxx_messageInfo_TreeNode proto.InternalMessageInfo
  349. func (m *TreeNode) GetId() int64 {
  350. if m != nil {
  351. return m.Id
  352. }
  353. return 0
  354. }
  355. func (m *TreeNode) GetText() string {
  356. if m != nil {
  357. return m.Text
  358. }
  359. return ""
  360. }
  361. func (m *TreeNode) GetParent() int64 {
  362. if m != nil {
  363. return m.Parent
  364. }
  365. return 0
  366. }
  367. func (m *TreeNode) GetTag() *Tag {
  368. if m != nil {
  369. return m.Tag
  370. }
  371. return nil
  372. }
  373. func (m *TreeNode) GetNodes() []*TreeNode {
  374. if m != nil {
  375. return m.Nodes
  376. }
  377. return nil
  378. }
  379. type Tag struct {
  380. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  381. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  382. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  383. XXX_unrecognized []byte `json:"-"`
  384. XXX_sizecache int32 `json:"-"`
  385. }
  386. func (m *Tag) Reset() { *m = Tag{} }
  387. func (m *Tag) String() string { return proto.CompactTextString(m) }
  388. func (*Tag) ProtoMessage() {}
  389. func (*Tag) Descriptor() ([]byte, []int) {
  390. return fileDescriptor_cb4a498eeb2ba07d, []int{7}
  391. }
  392. func (m *Tag) XXX_Unmarshal(b []byte) error {
  393. return xxx_messageInfo_Tag.Unmarshal(m, b)
  394. }
  395. func (m *Tag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  396. return xxx_messageInfo_Tag.Marshal(b, m, deterministic)
  397. }
  398. func (m *Tag) XXX_Merge(src proto.Message) {
  399. xxx_messageInfo_Tag.Merge(m, src)
  400. }
  401. func (m *Tag) XXX_Size() int {
  402. return xxx_messageInfo_Tag.Size(m)
  403. }
  404. func (m *Tag) XXX_DiscardUnknown() {
  405. xxx_messageInfo_Tag.DiscardUnknown(m)
  406. }
  407. var xxx_messageInfo_Tag proto.InternalMessageInfo
  408. func (m *Tag) GetId() int64 {
  409. if m != nil {
  410. return m.Id
  411. }
  412. return 0
  413. }
  414. func (m *Tag) GetName() string {
  415. if m != nil {
  416. return m.Name
  417. }
  418. return ""
  419. }
  420. type OptionsetReq struct {
  421. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  422. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  423. XXX_unrecognized []byte `json:"-"`
  424. XXX_sizecache int32 `json:"-"`
  425. }
  426. func (m *OptionsetReq) Reset() { *m = OptionsetReq{} }
  427. func (m *OptionsetReq) String() string { return proto.CompactTextString(m) }
  428. func (*OptionsetReq) ProtoMessage() {}
  429. func (*OptionsetReq) Descriptor() ([]byte, []int) {
  430. return fileDescriptor_cb4a498eeb2ba07d, []int{8}
  431. }
  432. func (m *OptionsetReq) XXX_Unmarshal(b []byte) error {
  433. return xxx_messageInfo_OptionsetReq.Unmarshal(m, b)
  434. }
  435. func (m *OptionsetReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  436. return xxx_messageInfo_OptionsetReq.Marshal(b, m, deterministic)
  437. }
  438. func (m *OptionsetReq) XXX_Merge(src proto.Message) {
  439. xxx_messageInfo_OptionsetReq.Merge(m, src)
  440. }
  441. func (m *OptionsetReq) XXX_Size() int {
  442. return xxx_messageInfo_OptionsetReq.Size(m)
  443. }
  444. func (m *OptionsetReq) XXX_DiscardUnknown() {
  445. xxx_messageInfo_OptionsetReq.DiscardUnknown(m)
  446. }
  447. var xxx_messageInfo_OptionsetReq proto.InternalMessageInfo
  448. func (m *OptionsetReq) GetCode() string {
  449. if m != nil {
  450. return m.Code
  451. }
  452. return ""
  453. }
  454. type OptionsetRes struct {
  455. 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"`
  456. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  457. XXX_unrecognized []byte `json:"-"`
  458. XXX_sizecache int32 `json:"-"`
  459. }
  460. func (m *OptionsetRes) Reset() { *m = OptionsetRes{} }
  461. func (m *OptionsetRes) String() string { return proto.CompactTextString(m) }
  462. func (*OptionsetRes) ProtoMessage() {}
  463. func (*OptionsetRes) Descriptor() ([]byte, []int) {
  464. return fileDescriptor_cb4a498eeb2ba07d, []int{9}
  465. }
  466. func (m *OptionsetRes) XXX_Unmarshal(b []byte) error {
  467. return xxx_messageInfo_OptionsetRes.Unmarshal(m, b)
  468. }
  469. func (m *OptionsetRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  470. return xxx_messageInfo_OptionsetRes.Marshal(b, m, deterministic)
  471. }
  472. func (m *OptionsetRes) XXX_Merge(src proto.Message) {
  473. xxx_messageInfo_OptionsetRes.Merge(m, src)
  474. }
  475. func (m *OptionsetRes) XXX_Size() int {
  476. return xxx_messageInfo_OptionsetRes.Size(m)
  477. }
  478. func (m *OptionsetRes) XXX_DiscardUnknown() {
  479. xxx_messageInfo_OptionsetRes.DiscardUnknown(m)
  480. }
  481. var xxx_messageInfo_OptionsetRes proto.InternalMessageInfo
  482. func (m *OptionsetRes) GetMapList() map[string]string {
  483. if m != nil {
  484. return m.MapList
  485. }
  486. return nil
  487. }
  488. type OptionCode struct {
  489. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  490. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  491. XXX_unrecognized []byte `json:"-"`
  492. XXX_sizecache int32 `json:"-"`
  493. }
  494. func (m *OptionCode) Reset() { *m = OptionCode{} }
  495. func (m *OptionCode) String() string { return proto.CompactTextString(m) }
  496. func (*OptionCode) ProtoMessage() {}
  497. func (*OptionCode) Descriptor() ([]byte, []int) {
  498. return fileDescriptor_cb4a498eeb2ba07d, []int{10}
  499. }
  500. func (m *OptionCode) XXX_Unmarshal(b []byte) error {
  501. return xxx_messageInfo_OptionCode.Unmarshal(m, b)
  502. }
  503. func (m *OptionCode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  504. return xxx_messageInfo_OptionCode.Marshal(b, m, deterministic)
  505. }
  506. func (m *OptionCode) XXX_Merge(src proto.Message) {
  507. xxx_messageInfo_OptionCode.Merge(m, src)
  508. }
  509. func (m *OptionCode) XXX_Size() int {
  510. return xxx_messageInfo_OptionCode.Size(m)
  511. }
  512. func (m *OptionCode) XXX_DiscardUnknown() {
  513. xxx_messageInfo_OptionCode.DiscardUnknown(m)
  514. }
  515. var xxx_messageInfo_OptionCode proto.InternalMessageInfo
  516. func (m *OptionCode) GetCode() string {
  517. if m != nil {
  518. return m.Code
  519. }
  520. return ""
  521. }
  522. type Options struct {
  523. Code string `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"`
  524. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  525. Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
  526. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  527. XXX_unrecognized []byte `json:"-"`
  528. XXX_sizecache int32 `json:"-"`
  529. }
  530. func (m *Options) Reset() { *m = Options{} }
  531. func (m *Options) String() string { return proto.CompactTextString(m) }
  532. func (*Options) ProtoMessage() {}
  533. func (*Options) Descriptor() ([]byte, []int) {
  534. return fileDescriptor_cb4a498eeb2ba07d, []int{11}
  535. }
  536. func (m *Options) XXX_Unmarshal(b []byte) error {
  537. return xxx_messageInfo_Options.Unmarshal(m, b)
  538. }
  539. func (m *Options) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  540. return xxx_messageInfo_Options.Marshal(b, m, deterministic)
  541. }
  542. func (m *Options) XXX_Merge(src proto.Message) {
  543. xxx_messageInfo_Options.Merge(m, src)
  544. }
  545. func (m *Options) XXX_Size() int {
  546. return xxx_messageInfo_Options.Size(m)
  547. }
  548. func (m *Options) XXX_DiscardUnknown() {
  549. xxx_messageInfo_Options.DiscardUnknown(m)
  550. }
  551. var xxx_messageInfo_Options proto.InternalMessageInfo
  552. func (m *Options) GetCode() string {
  553. if m != nil {
  554. return m.Code
  555. }
  556. return ""
  557. }
  558. func (m *Options) GetName() string {
  559. if m != nil {
  560. return m.Name
  561. }
  562. return ""
  563. }
  564. func (m *Options) GetValue() string {
  565. if m != nil {
  566. return m.Value
  567. }
  568. return ""
  569. }
  570. type ResponseByte struct {
  571. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"`
  572. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  573. XXX_unrecognized []byte `json:"-"`
  574. XXX_sizecache int32 `json:"-"`
  575. }
  576. func (m *ResponseByte) Reset() { *m = ResponseByte{} }
  577. func (m *ResponseByte) String() string { return proto.CompactTextString(m) }
  578. func (*ResponseByte) ProtoMessage() {}
  579. func (*ResponseByte) Descriptor() ([]byte, []int) {
  580. return fileDescriptor_cb4a498eeb2ba07d, []int{12}
  581. }
  582. func (m *ResponseByte) XXX_Unmarshal(b []byte) error {
  583. return xxx_messageInfo_ResponseByte.Unmarshal(m, b)
  584. }
  585. func (m *ResponseByte) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  586. return xxx_messageInfo_ResponseByte.Marshal(b, m, deterministic)
  587. }
  588. func (m *ResponseByte) XXX_Merge(src proto.Message) {
  589. xxx_messageInfo_ResponseByte.Merge(m, src)
  590. }
  591. func (m *ResponseByte) XXX_Size() int {
  592. return xxx_messageInfo_ResponseByte.Size(m)
  593. }
  594. func (m *ResponseByte) XXX_DiscardUnknown() {
  595. xxx_messageInfo_ResponseByte.DiscardUnknown(m)
  596. }
  597. var xxx_messageInfo_ResponseByte proto.InternalMessageInfo
  598. func (m *ResponseByte) GetData() []byte {
  599. if m != nil {
  600. return m.Data
  601. }
  602. return nil
  603. }
  604. type ExcelLogReq struct {
  605. Module string `protobuf:"bytes,1,opt,name=Module,proto3" json:"Module,omitempty"`
  606. Cond string `protobuf:"bytes,2,opt,name=Cond,proto3" json:"Cond,omitempty"`
  607. CreateBy string `protobuf:"bytes,3,opt,name=CreateBy,proto3" json:"CreateBy,omitempty"`
  608. CreateTime string `protobuf:"bytes,4,opt,name=CreateTime,proto3" json:"CreateTime,omitempty"`
  609. LastUpdateBy string `protobuf:"bytes,5,opt,name=LastUpdateBy,proto3" json:"LastUpdateBy,omitempty"`
  610. LastUpdateTime string `protobuf:"bytes,6,opt,name=LastUpdateTime,proto3" json:"LastUpdateTime,omitempty"`
  611. DelFlag string `protobuf:"bytes,7,opt,name=DelFlag,proto3" json:"DelFlag,omitempty"`
  612. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  613. XXX_unrecognized []byte `json:"-"`
  614. XXX_sizecache int32 `json:"-"`
  615. }
  616. func (m *ExcelLogReq) Reset() { *m = ExcelLogReq{} }
  617. func (m *ExcelLogReq) String() string { return proto.CompactTextString(m) }
  618. func (*ExcelLogReq) ProtoMessage() {}
  619. func (*ExcelLogReq) Descriptor() ([]byte, []int) {
  620. return fileDescriptor_cb4a498eeb2ba07d, []int{13}
  621. }
  622. func (m *ExcelLogReq) XXX_Unmarshal(b []byte) error {
  623. return xxx_messageInfo_ExcelLogReq.Unmarshal(m, b)
  624. }
  625. func (m *ExcelLogReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  626. return xxx_messageInfo_ExcelLogReq.Marshal(b, m, deterministic)
  627. }
  628. func (m *ExcelLogReq) XXX_Merge(src proto.Message) {
  629. xxx_messageInfo_ExcelLogReq.Merge(m, src)
  630. }
  631. func (m *ExcelLogReq) XXX_Size() int {
  632. return xxx_messageInfo_ExcelLogReq.Size(m)
  633. }
  634. func (m *ExcelLogReq) XXX_DiscardUnknown() {
  635. xxx_messageInfo_ExcelLogReq.DiscardUnknown(m)
  636. }
  637. var xxx_messageInfo_ExcelLogReq proto.InternalMessageInfo
  638. func (m *ExcelLogReq) GetModule() string {
  639. if m != nil {
  640. return m.Module
  641. }
  642. return ""
  643. }
  644. func (m *ExcelLogReq) GetCond() string {
  645. if m != nil {
  646. return m.Cond
  647. }
  648. return ""
  649. }
  650. func (m *ExcelLogReq) GetCreateBy() string {
  651. if m != nil {
  652. return m.CreateBy
  653. }
  654. return ""
  655. }
  656. func (m *ExcelLogReq) GetCreateTime() string {
  657. if m != nil {
  658. return m.CreateTime
  659. }
  660. return ""
  661. }
  662. func (m *ExcelLogReq) GetLastUpdateBy() string {
  663. if m != nil {
  664. return m.LastUpdateBy
  665. }
  666. return ""
  667. }
  668. func (m *ExcelLogReq) GetLastUpdateTime() string {
  669. if m != nil {
  670. return m.LastUpdateTime
  671. }
  672. return ""
  673. }
  674. func (m *ExcelLogReq) GetDelFlag() string {
  675. if m != nil {
  676. return m.DelFlag
  677. }
  678. return ""
  679. }
  680. type ExcelLogRes struct {
  681. Status int64 `protobuf:"varint,1,opt,name=Status,proto3" json:"Status,omitempty"`
  682. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  683. XXX_unrecognized []byte `json:"-"`
  684. XXX_sizecache int32 `json:"-"`
  685. }
  686. func (m *ExcelLogRes) Reset() { *m = ExcelLogRes{} }
  687. func (m *ExcelLogRes) String() string { return proto.CompactTextString(m) }
  688. func (*ExcelLogRes) ProtoMessage() {}
  689. func (*ExcelLogRes) Descriptor() ([]byte, []int) {
  690. return fileDescriptor_cb4a498eeb2ba07d, []int{14}
  691. }
  692. func (m *ExcelLogRes) XXX_Unmarshal(b []byte) error {
  693. return xxx_messageInfo_ExcelLogRes.Unmarshal(m, b)
  694. }
  695. func (m *ExcelLogRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  696. return xxx_messageInfo_ExcelLogRes.Marshal(b, m, deterministic)
  697. }
  698. func (m *ExcelLogRes) XXX_Merge(src proto.Message) {
  699. xxx_messageInfo_ExcelLogRes.Merge(m, src)
  700. }
  701. func (m *ExcelLogRes) XXX_Size() int {
  702. return xxx_messageInfo_ExcelLogRes.Size(m)
  703. }
  704. func (m *ExcelLogRes) XXX_DiscardUnknown() {
  705. xxx_messageInfo_ExcelLogRes.DiscardUnknown(m)
  706. }
  707. var xxx_messageInfo_ExcelLogRes proto.InternalMessageInfo
  708. func (m *ExcelLogRes) GetStatus() int64 {
  709. if m != nil {
  710. return m.Status
  711. }
  712. return 0
  713. }
  714. type SchoolIdsReq struct {
  715. Names []string `protobuf:"bytes,1,rep,name=names,proto3" json:"names,omitempty"`
  716. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  717. XXX_unrecognized []byte `json:"-"`
  718. XXX_sizecache int32 `json:"-"`
  719. }
  720. func (m *SchoolIdsReq) Reset() { *m = SchoolIdsReq{} }
  721. func (m *SchoolIdsReq) String() string { return proto.CompactTextString(m) }
  722. func (*SchoolIdsReq) ProtoMessage() {}
  723. func (*SchoolIdsReq) Descriptor() ([]byte, []int) {
  724. return fileDescriptor_cb4a498eeb2ba07d, []int{15}
  725. }
  726. func (m *SchoolIdsReq) XXX_Unmarshal(b []byte) error {
  727. return xxx_messageInfo_SchoolIdsReq.Unmarshal(m, b)
  728. }
  729. func (m *SchoolIdsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  730. return xxx_messageInfo_SchoolIdsReq.Marshal(b, m, deterministic)
  731. }
  732. func (m *SchoolIdsReq) XXX_Merge(src proto.Message) {
  733. xxx_messageInfo_SchoolIdsReq.Merge(m, src)
  734. }
  735. func (m *SchoolIdsReq) XXX_Size() int {
  736. return xxx_messageInfo_SchoolIdsReq.Size(m)
  737. }
  738. func (m *SchoolIdsReq) XXX_DiscardUnknown() {
  739. xxx_messageInfo_SchoolIdsReq.DiscardUnknown(m)
  740. }
  741. var xxx_messageInfo_SchoolIdsReq proto.InternalMessageInfo
  742. func (m *SchoolIdsReq) GetNames() []string {
  743. if m != nil {
  744. return m.Names
  745. }
  746. return nil
  747. }
  748. type ListOfInt struct {
  749. Ids []int64 `protobuf:"varint,1,rep,packed,name=ids,proto3" json:"ids,omitempty"`
  750. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  751. XXX_unrecognized []byte `json:"-"`
  752. XXX_sizecache int32 `json:"-"`
  753. }
  754. func (m *ListOfInt) Reset() { *m = ListOfInt{} }
  755. func (m *ListOfInt) String() string { return proto.CompactTextString(m) }
  756. func (*ListOfInt) ProtoMessage() {}
  757. func (*ListOfInt) Descriptor() ([]byte, []int) {
  758. return fileDescriptor_cb4a498eeb2ba07d, []int{16}
  759. }
  760. func (m *ListOfInt) XXX_Unmarshal(b []byte) error {
  761. return xxx_messageInfo_ListOfInt.Unmarshal(m, b)
  762. }
  763. func (m *ListOfInt) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  764. return xxx_messageInfo_ListOfInt.Marshal(b, m, deterministic)
  765. }
  766. func (m *ListOfInt) XXX_Merge(src proto.Message) {
  767. xxx_messageInfo_ListOfInt.Merge(m, src)
  768. }
  769. func (m *ListOfInt) XXX_Size() int {
  770. return xxx_messageInfo_ListOfInt.Size(m)
  771. }
  772. func (m *ListOfInt) XXX_DiscardUnknown() {
  773. xxx_messageInfo_ListOfInt.DiscardUnknown(m)
  774. }
  775. var xxx_messageInfo_ListOfInt proto.InternalMessageInfo
  776. func (m *ListOfInt) GetIds() []int64 {
  777. if m != nil {
  778. return m.Ids
  779. }
  780. return nil
  781. }
  782. type SchoolIdsRes struct {
  783. 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"`
  784. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  785. XXX_unrecognized []byte `json:"-"`
  786. XXX_sizecache int32 `json:"-"`
  787. }
  788. func (m *SchoolIdsRes) Reset() { *m = SchoolIdsRes{} }
  789. func (m *SchoolIdsRes) String() string { return proto.CompactTextString(m) }
  790. func (*SchoolIdsRes) ProtoMessage() {}
  791. func (*SchoolIdsRes) Descriptor() ([]byte, []int) {
  792. return fileDescriptor_cb4a498eeb2ba07d, []int{17}
  793. }
  794. func (m *SchoolIdsRes) XXX_Unmarshal(b []byte) error {
  795. return xxx_messageInfo_SchoolIdsRes.Unmarshal(m, b)
  796. }
  797. func (m *SchoolIdsRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  798. return xxx_messageInfo_SchoolIdsRes.Marshal(b, m, deterministic)
  799. }
  800. func (m *SchoolIdsRes) XXX_Merge(src proto.Message) {
  801. xxx_messageInfo_SchoolIdsRes.Merge(m, src)
  802. }
  803. func (m *SchoolIdsRes) XXX_Size() int {
  804. return xxx_messageInfo_SchoolIdsRes.Size(m)
  805. }
  806. func (m *SchoolIdsRes) XXX_DiscardUnknown() {
  807. xxx_messageInfo_SchoolIdsRes.DiscardUnknown(m)
  808. }
  809. var xxx_messageInfo_SchoolIdsRes proto.InternalMessageInfo
  810. func (m *SchoolIdsRes) GetMapList() map[string]int64 {
  811. if m != nil {
  812. return m.MapList
  813. }
  814. return nil
  815. }
  816. type CityIdsReq struct {
  817. Names string `protobuf:"bytes,1,opt,name=names,proto3" json:"names,omitempty"`
  818. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  819. XXX_unrecognized []byte `json:"-"`
  820. XXX_sizecache int32 `json:"-"`
  821. }
  822. func (m *CityIdsReq) Reset() { *m = CityIdsReq{} }
  823. func (m *CityIdsReq) String() string { return proto.CompactTextString(m) }
  824. func (*CityIdsReq) ProtoMessage() {}
  825. func (*CityIdsReq) Descriptor() ([]byte, []int) {
  826. return fileDescriptor_cb4a498eeb2ba07d, []int{18}
  827. }
  828. func (m *CityIdsReq) XXX_Unmarshal(b []byte) error {
  829. return xxx_messageInfo_CityIdsReq.Unmarshal(m, b)
  830. }
  831. func (m *CityIdsReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  832. return xxx_messageInfo_CityIdsReq.Marshal(b, m, deterministic)
  833. }
  834. func (m *CityIdsReq) XXX_Merge(src proto.Message) {
  835. xxx_messageInfo_CityIdsReq.Merge(m, src)
  836. }
  837. func (m *CityIdsReq) XXX_Size() int {
  838. return xxx_messageInfo_CityIdsReq.Size(m)
  839. }
  840. func (m *CityIdsReq) XXX_DiscardUnknown() {
  841. xxx_messageInfo_CityIdsReq.DiscardUnknown(m)
  842. }
  843. var xxx_messageInfo_CityIdsReq proto.InternalMessageInfo
  844. func (m *CityIdsReq) GetNames() string {
  845. if m != nil {
  846. return m.Names
  847. }
  848. return ""
  849. }
  850. type CityIdsRes struct {
  851. 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"`
  852. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  853. XXX_unrecognized []byte `json:"-"`
  854. XXX_sizecache int32 `json:"-"`
  855. }
  856. func (m *CityIdsRes) Reset() { *m = CityIdsRes{} }
  857. func (m *CityIdsRes) String() string { return proto.CompactTextString(m) }
  858. func (*CityIdsRes) ProtoMessage() {}
  859. func (*CityIdsRes) Descriptor() ([]byte, []int) {
  860. return fileDescriptor_cb4a498eeb2ba07d, []int{19}
  861. }
  862. func (m *CityIdsRes) XXX_Unmarshal(b []byte) error {
  863. return xxx_messageInfo_CityIdsRes.Unmarshal(m, b)
  864. }
  865. func (m *CityIdsRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  866. return xxx_messageInfo_CityIdsRes.Marshal(b, m, deterministic)
  867. }
  868. func (m *CityIdsRes) XXX_Merge(src proto.Message) {
  869. xxx_messageInfo_CityIdsRes.Merge(m, src)
  870. }
  871. func (m *CityIdsRes) XXX_Size() int {
  872. return xxx_messageInfo_CityIdsRes.Size(m)
  873. }
  874. func (m *CityIdsRes) XXX_DiscardUnknown() {
  875. xxx_messageInfo_CityIdsRes.DiscardUnknown(m)
  876. }
  877. var xxx_messageInfo_CityIdsRes proto.InternalMessageInfo
  878. func (m *CityIdsRes) GetMapList() map[string]int64 {
  879. if m != nil {
  880. return m.MapList
  881. }
  882. return nil
  883. }
  884. type BytesReq struct {
  885. Req []byte `protobuf:"bytes,1,opt,name=req,proto3" json:"req,omitempty"`
  886. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  887. XXX_unrecognized []byte `json:"-"`
  888. XXX_sizecache int32 `json:"-"`
  889. }
  890. func (m *BytesReq) Reset() { *m = BytesReq{} }
  891. func (m *BytesReq) String() string { return proto.CompactTextString(m) }
  892. func (*BytesReq) ProtoMessage() {}
  893. func (*BytesReq) Descriptor() ([]byte, []int) {
  894. return fileDescriptor_cb4a498eeb2ba07d, []int{20}
  895. }
  896. func (m *BytesReq) XXX_Unmarshal(b []byte) error {
  897. return xxx_messageInfo_BytesReq.Unmarshal(m, b)
  898. }
  899. func (m *BytesReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  900. return xxx_messageInfo_BytesReq.Marshal(b, m, deterministic)
  901. }
  902. func (m *BytesReq) XXX_Merge(src proto.Message) {
  903. xxx_messageInfo_BytesReq.Merge(m, src)
  904. }
  905. func (m *BytesReq) XXX_Size() int {
  906. return xxx_messageInfo_BytesReq.Size(m)
  907. }
  908. func (m *BytesReq) XXX_DiscardUnknown() {
  909. xxx_messageInfo_BytesReq.DiscardUnknown(m)
  910. }
  911. var xxx_messageInfo_BytesReq proto.InternalMessageInfo
  912. func (m *BytesReq) GetReq() []byte {
  913. if m != nil {
  914. return m.Req
  915. }
  916. return nil
  917. }
  918. type BytesResp struct {
  919. Resp []byte `protobuf:"bytes,1,opt,name=resp,proto3" json:"resp,omitempty"`
  920. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  921. XXX_unrecognized []byte `json:"-"`
  922. XXX_sizecache int32 `json:"-"`
  923. }
  924. func (m *BytesResp) Reset() { *m = BytesResp{} }
  925. func (m *BytesResp) String() string { return proto.CompactTextString(m) }
  926. func (*BytesResp) ProtoMessage() {}
  927. func (*BytesResp) Descriptor() ([]byte, []int) {
  928. return fileDescriptor_cb4a498eeb2ba07d, []int{21}
  929. }
  930. func (m *BytesResp) XXX_Unmarshal(b []byte) error {
  931. return xxx_messageInfo_BytesResp.Unmarshal(m, b)
  932. }
  933. func (m *BytesResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  934. return xxx_messageInfo_BytesResp.Marshal(b, m, deterministic)
  935. }
  936. func (m *BytesResp) XXX_Merge(src proto.Message) {
  937. xxx_messageInfo_BytesResp.Merge(m, src)
  938. }
  939. func (m *BytesResp) XXX_Size() int {
  940. return xxx_messageInfo_BytesResp.Size(m)
  941. }
  942. func (m *BytesResp) XXX_DiscardUnknown() {
  943. xxx_messageInfo_BytesResp.DiscardUnknown(m)
  944. }
  945. var xxx_messageInfo_BytesResp proto.InternalMessageInfo
  946. func (m *BytesResp) GetResp() []byte {
  947. if m != nil {
  948. return m.Resp
  949. }
  950. return nil
  951. }
  952. type GetErpRoleRes struct {
  953. UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  954. Role string `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
  955. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  956. XXX_unrecognized []byte `json:"-"`
  957. XXX_sizecache int32 `json:"-"`
  958. }
  959. func (m *GetErpRoleRes) Reset() { *m = GetErpRoleRes{} }
  960. func (m *GetErpRoleRes) String() string { return proto.CompactTextString(m) }
  961. func (*GetErpRoleRes) ProtoMessage() {}
  962. func (*GetErpRoleRes) Descriptor() ([]byte, []int) {
  963. return fileDescriptor_cb4a498eeb2ba07d, []int{22}
  964. }
  965. func (m *GetErpRoleRes) XXX_Unmarshal(b []byte) error {
  966. return xxx_messageInfo_GetErpRoleRes.Unmarshal(m, b)
  967. }
  968. func (m *GetErpRoleRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  969. return xxx_messageInfo_GetErpRoleRes.Marshal(b, m, deterministic)
  970. }
  971. func (m *GetErpRoleRes) XXX_Merge(src proto.Message) {
  972. xxx_messageInfo_GetErpRoleRes.Merge(m, src)
  973. }
  974. func (m *GetErpRoleRes) XXX_Size() int {
  975. return xxx_messageInfo_GetErpRoleRes.Size(m)
  976. }
  977. func (m *GetErpRoleRes) XXX_DiscardUnknown() {
  978. xxx_messageInfo_GetErpRoleRes.DiscardUnknown(m)
  979. }
  980. var xxx_messageInfo_GetErpRoleRes proto.InternalMessageInfo
  981. func (m *GetErpRoleRes) GetUserId() string {
  982. if m != nil {
  983. return m.UserId
  984. }
  985. return ""
  986. }
  987. func (m *GetErpRoleRes) GetRole() string {
  988. if m != nil {
  989. return m.Role
  990. }
  991. return ""
  992. }
  993. type GetErpRoleReq struct {
  994. Mobile string `protobuf:"bytes,1,opt,name=mobile,proto3" json:"mobile,omitempty"`
  995. UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  996. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  997. XXX_unrecognized []byte `json:"-"`
  998. XXX_sizecache int32 `json:"-"`
  999. }
  1000. func (m *GetErpRoleReq) Reset() { *m = GetErpRoleReq{} }
  1001. func (m *GetErpRoleReq) String() string { return proto.CompactTextString(m) }
  1002. func (*GetErpRoleReq) ProtoMessage() {}
  1003. func (*GetErpRoleReq) Descriptor() ([]byte, []int) {
  1004. return fileDescriptor_cb4a498eeb2ba07d, []int{23}
  1005. }
  1006. func (m *GetErpRoleReq) XXX_Unmarshal(b []byte) error {
  1007. return xxx_messageInfo_GetErpRoleReq.Unmarshal(m, b)
  1008. }
  1009. func (m *GetErpRoleReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1010. return xxx_messageInfo_GetErpRoleReq.Marshal(b, m, deterministic)
  1011. }
  1012. func (m *GetErpRoleReq) XXX_Merge(src proto.Message) {
  1013. xxx_messageInfo_GetErpRoleReq.Merge(m, src)
  1014. }
  1015. func (m *GetErpRoleReq) XXX_Size() int {
  1016. return xxx_messageInfo_GetErpRoleReq.Size(m)
  1017. }
  1018. func (m *GetErpRoleReq) XXX_DiscardUnknown() {
  1019. xxx_messageInfo_GetErpRoleReq.DiscardUnknown(m)
  1020. }
  1021. var xxx_messageInfo_GetErpRoleReq proto.InternalMessageInfo
  1022. func (m *GetErpRoleReq) GetMobile() string {
  1023. if m != nil {
  1024. return m.Mobile
  1025. }
  1026. return ""
  1027. }
  1028. func (m *GetErpRoleReq) GetUserId() string {
  1029. if m != nil {
  1030. return m.UserId
  1031. }
  1032. return ""
  1033. }
  1034. type GetErpOrganSchPerByUserIdReq struct {
  1035. UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1036. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1037. XXX_unrecognized []byte `json:"-"`
  1038. XXX_sizecache int32 `json:"-"`
  1039. }
  1040. func (m *GetErpOrganSchPerByUserIdReq) Reset() { *m = GetErpOrganSchPerByUserIdReq{} }
  1041. func (m *GetErpOrganSchPerByUserIdReq) String() string { return proto.CompactTextString(m) }
  1042. func (*GetErpOrganSchPerByUserIdReq) ProtoMessage() {}
  1043. func (*GetErpOrganSchPerByUserIdReq) Descriptor() ([]byte, []int) {
  1044. return fileDescriptor_cb4a498eeb2ba07d, []int{24}
  1045. }
  1046. func (m *GetErpOrganSchPerByUserIdReq) XXX_Unmarshal(b []byte) error {
  1047. return xxx_messageInfo_GetErpOrganSchPerByUserIdReq.Unmarshal(m, b)
  1048. }
  1049. func (m *GetErpOrganSchPerByUserIdReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1050. return xxx_messageInfo_GetErpOrganSchPerByUserIdReq.Marshal(b, m, deterministic)
  1051. }
  1052. func (m *GetErpOrganSchPerByUserIdReq) XXX_Merge(src proto.Message) {
  1053. xxx_messageInfo_GetErpOrganSchPerByUserIdReq.Merge(m, src)
  1054. }
  1055. func (m *GetErpOrganSchPerByUserIdReq) XXX_Size() int {
  1056. return xxx_messageInfo_GetErpOrganSchPerByUserIdReq.Size(m)
  1057. }
  1058. func (m *GetErpOrganSchPerByUserIdReq) XXX_DiscardUnknown() {
  1059. xxx_messageInfo_GetErpOrganSchPerByUserIdReq.DiscardUnknown(m)
  1060. }
  1061. var xxx_messageInfo_GetErpOrganSchPerByUserIdReq proto.InternalMessageInfo
  1062. func (m *GetErpOrganSchPerByUserIdReq) GetUserId() string {
  1063. if m != nil {
  1064. return m.UserId
  1065. }
  1066. return ""
  1067. }
  1068. type GetErpOrganSchPerByUserIdRes struct {
  1069. School []*OrganSchool `protobuf:"bytes,1,rep,name=school,proto3" json:"school,omitempty"`
  1070. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1071. XXX_unrecognized []byte `json:"-"`
  1072. XXX_sizecache int32 `json:"-"`
  1073. }
  1074. func (m *GetErpOrganSchPerByUserIdRes) Reset() { *m = GetErpOrganSchPerByUserIdRes{} }
  1075. func (m *GetErpOrganSchPerByUserIdRes) String() string { return proto.CompactTextString(m) }
  1076. func (*GetErpOrganSchPerByUserIdRes) ProtoMessage() {}
  1077. func (*GetErpOrganSchPerByUserIdRes) Descriptor() ([]byte, []int) {
  1078. return fileDescriptor_cb4a498eeb2ba07d, []int{25}
  1079. }
  1080. func (m *GetErpOrganSchPerByUserIdRes) XXX_Unmarshal(b []byte) error {
  1081. return xxx_messageInfo_GetErpOrganSchPerByUserIdRes.Unmarshal(m, b)
  1082. }
  1083. func (m *GetErpOrganSchPerByUserIdRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1084. return xxx_messageInfo_GetErpOrganSchPerByUserIdRes.Marshal(b, m, deterministic)
  1085. }
  1086. func (m *GetErpOrganSchPerByUserIdRes) XXX_Merge(src proto.Message) {
  1087. xxx_messageInfo_GetErpOrganSchPerByUserIdRes.Merge(m, src)
  1088. }
  1089. func (m *GetErpOrganSchPerByUserIdRes) XXX_Size() int {
  1090. return xxx_messageInfo_GetErpOrganSchPerByUserIdRes.Size(m)
  1091. }
  1092. func (m *GetErpOrganSchPerByUserIdRes) XXX_DiscardUnknown() {
  1093. xxx_messageInfo_GetErpOrganSchPerByUserIdRes.DiscardUnknown(m)
  1094. }
  1095. var xxx_messageInfo_GetErpOrganSchPerByUserIdRes proto.InternalMessageInfo
  1096. func (m *GetErpOrganSchPerByUserIdRes) GetSchool() []*OrganSchool {
  1097. if m != nil {
  1098. return m.School
  1099. }
  1100. return nil
  1101. }
  1102. type OrganSchool struct {
  1103. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1104. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  1105. OrganId int64 `protobuf:"varint,3,opt,name=organ_id,json=organId,proto3" json:"organ_id,omitempty"`
  1106. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1107. XXX_unrecognized []byte `json:"-"`
  1108. XXX_sizecache int32 `json:"-"`
  1109. }
  1110. func (m *OrganSchool) Reset() { *m = OrganSchool{} }
  1111. func (m *OrganSchool) String() string { return proto.CompactTextString(m) }
  1112. func (*OrganSchool) ProtoMessage() {}
  1113. func (*OrganSchool) Descriptor() ([]byte, []int) {
  1114. return fileDescriptor_cb4a498eeb2ba07d, []int{26}
  1115. }
  1116. func (m *OrganSchool) XXX_Unmarshal(b []byte) error {
  1117. return xxx_messageInfo_OrganSchool.Unmarshal(m, b)
  1118. }
  1119. func (m *OrganSchool) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1120. return xxx_messageInfo_OrganSchool.Marshal(b, m, deterministic)
  1121. }
  1122. func (m *OrganSchool) XXX_Merge(src proto.Message) {
  1123. xxx_messageInfo_OrganSchool.Merge(m, src)
  1124. }
  1125. func (m *OrganSchool) XXX_Size() int {
  1126. return xxx_messageInfo_OrganSchool.Size(m)
  1127. }
  1128. func (m *OrganSchool) XXX_DiscardUnknown() {
  1129. xxx_messageInfo_OrganSchool.DiscardUnknown(m)
  1130. }
  1131. var xxx_messageInfo_OrganSchool proto.InternalMessageInfo
  1132. func (m *OrganSchool) GetId() int64 {
  1133. if m != nil {
  1134. return m.Id
  1135. }
  1136. return 0
  1137. }
  1138. func (m *OrganSchool) GetName() string {
  1139. if m != nil {
  1140. return m.Name
  1141. }
  1142. return ""
  1143. }
  1144. func (m *OrganSchool) GetOrganId() int64 {
  1145. if m != nil {
  1146. return m.OrganId
  1147. }
  1148. return 0
  1149. }
  1150. type GetErpSchoolRes struct {
  1151. School []*OrganSchool `protobuf:"bytes,1,rep,name=school,proto3" json:"school,omitempty"`
  1152. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1153. XXX_unrecognized []byte `json:"-"`
  1154. XXX_sizecache int32 `json:"-"`
  1155. }
  1156. func (m *GetErpSchoolRes) Reset() { *m = GetErpSchoolRes{} }
  1157. func (m *GetErpSchoolRes) String() string { return proto.CompactTextString(m) }
  1158. func (*GetErpSchoolRes) ProtoMessage() {}
  1159. func (*GetErpSchoolRes) Descriptor() ([]byte, []int) {
  1160. return fileDescriptor_cb4a498eeb2ba07d, []int{27}
  1161. }
  1162. func (m *GetErpSchoolRes) XXX_Unmarshal(b []byte) error {
  1163. return xxx_messageInfo_GetErpSchoolRes.Unmarshal(m, b)
  1164. }
  1165. func (m *GetErpSchoolRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1166. return xxx_messageInfo_GetErpSchoolRes.Marshal(b, m, deterministic)
  1167. }
  1168. func (m *GetErpSchoolRes) XXX_Merge(src proto.Message) {
  1169. xxx_messageInfo_GetErpSchoolRes.Merge(m, src)
  1170. }
  1171. func (m *GetErpSchoolRes) XXX_Size() int {
  1172. return xxx_messageInfo_GetErpSchoolRes.Size(m)
  1173. }
  1174. func (m *GetErpSchoolRes) XXX_DiscardUnknown() {
  1175. xxx_messageInfo_GetErpSchoolRes.DiscardUnknown(m)
  1176. }
  1177. var xxx_messageInfo_GetErpSchoolRes proto.InternalMessageInfo
  1178. func (m *GetErpSchoolRes) GetSchool() []*OrganSchool {
  1179. if m != nil {
  1180. return m.School
  1181. }
  1182. return nil
  1183. }
  1184. type GetErpActiveReq struct {
  1185. SchId uint64 `protobuf:"varint,1,opt,name=sch_id,json=schId,proto3" json:"sch_id,omitempty"`
  1186. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1187. XXX_unrecognized []byte `json:"-"`
  1188. XXX_sizecache int32 `json:"-"`
  1189. }
  1190. func (m *GetErpActiveReq) Reset() { *m = GetErpActiveReq{} }
  1191. func (m *GetErpActiveReq) String() string { return proto.CompactTextString(m) }
  1192. func (*GetErpActiveReq) ProtoMessage() {}
  1193. func (*GetErpActiveReq) Descriptor() ([]byte, []int) {
  1194. return fileDescriptor_cb4a498eeb2ba07d, []int{28}
  1195. }
  1196. func (m *GetErpActiveReq) XXX_Unmarshal(b []byte) error {
  1197. return xxx_messageInfo_GetErpActiveReq.Unmarshal(m, b)
  1198. }
  1199. func (m *GetErpActiveReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1200. return xxx_messageInfo_GetErpActiveReq.Marshal(b, m, deterministic)
  1201. }
  1202. func (m *GetErpActiveReq) XXX_Merge(src proto.Message) {
  1203. xxx_messageInfo_GetErpActiveReq.Merge(m, src)
  1204. }
  1205. func (m *GetErpActiveReq) XXX_Size() int {
  1206. return xxx_messageInfo_GetErpActiveReq.Size(m)
  1207. }
  1208. func (m *GetErpActiveReq) XXX_DiscardUnknown() {
  1209. xxx_messageInfo_GetErpActiveReq.DiscardUnknown(m)
  1210. }
  1211. var xxx_messageInfo_GetErpActiveReq proto.InternalMessageInfo
  1212. func (m *GetErpActiveReq) GetSchId() uint64 {
  1213. if m != nil {
  1214. return m.SchId
  1215. }
  1216. return 0
  1217. }
  1218. type GetErpActiveRes struct {
  1219. Active []*Active `protobuf:"bytes,1,rep,name=active,proto3" json:"active,omitempty"`
  1220. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1221. XXX_unrecognized []byte `json:"-"`
  1222. XXX_sizecache int32 `json:"-"`
  1223. }
  1224. func (m *GetErpActiveRes) Reset() { *m = GetErpActiveRes{} }
  1225. func (m *GetErpActiveRes) String() string { return proto.CompactTextString(m) }
  1226. func (*GetErpActiveRes) ProtoMessage() {}
  1227. func (*GetErpActiveRes) Descriptor() ([]byte, []int) {
  1228. return fileDescriptor_cb4a498eeb2ba07d, []int{29}
  1229. }
  1230. func (m *GetErpActiveRes) XXX_Unmarshal(b []byte) error {
  1231. return xxx_messageInfo_GetErpActiveRes.Unmarshal(m, b)
  1232. }
  1233. func (m *GetErpActiveRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1234. return xxx_messageInfo_GetErpActiveRes.Marshal(b, m, deterministic)
  1235. }
  1236. func (m *GetErpActiveRes) XXX_Merge(src proto.Message) {
  1237. xxx_messageInfo_GetErpActiveRes.Merge(m, src)
  1238. }
  1239. func (m *GetErpActiveRes) XXX_Size() int {
  1240. return xxx_messageInfo_GetErpActiveRes.Size(m)
  1241. }
  1242. func (m *GetErpActiveRes) XXX_DiscardUnknown() {
  1243. xxx_messageInfo_GetErpActiveRes.DiscardUnknown(m)
  1244. }
  1245. var xxx_messageInfo_GetErpActiveRes proto.InternalMessageInfo
  1246. func (m *GetErpActiveRes) GetActive() []*Active {
  1247. if m != nil {
  1248. return m.Active
  1249. }
  1250. return nil
  1251. }
  1252. type Active struct {
  1253. ActiveId int64 `protobuf:"varint,1,opt,name=active_id,json=activeId,proto3" json:"active_id,omitempty"`
  1254. MaName string `protobuf:"bytes,2,opt,name=ma_name,json=maName,proto3" json:"ma_name,omitempty"`
  1255. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1256. XXX_unrecognized []byte `json:"-"`
  1257. XXX_sizecache int32 `json:"-"`
  1258. }
  1259. func (m *Active) Reset() { *m = Active{} }
  1260. func (m *Active) String() string { return proto.CompactTextString(m) }
  1261. func (*Active) ProtoMessage() {}
  1262. func (*Active) Descriptor() ([]byte, []int) {
  1263. return fileDescriptor_cb4a498eeb2ba07d, []int{30}
  1264. }
  1265. func (m *Active) XXX_Unmarshal(b []byte) error {
  1266. return xxx_messageInfo_Active.Unmarshal(m, b)
  1267. }
  1268. func (m *Active) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1269. return xxx_messageInfo_Active.Marshal(b, m, deterministic)
  1270. }
  1271. func (m *Active) XXX_Merge(src proto.Message) {
  1272. xxx_messageInfo_Active.Merge(m, src)
  1273. }
  1274. func (m *Active) XXX_Size() int {
  1275. return xxx_messageInfo_Active.Size(m)
  1276. }
  1277. func (m *Active) XXX_DiscardUnknown() {
  1278. xxx_messageInfo_Active.DiscardUnknown(m)
  1279. }
  1280. var xxx_messageInfo_Active proto.InternalMessageInfo
  1281. func (m *Active) GetActiveId() int64 {
  1282. if m != nil {
  1283. return m.ActiveId
  1284. }
  1285. return 0
  1286. }
  1287. func (m *Active) GetMaName() string {
  1288. if m != nil {
  1289. return m.MaName
  1290. }
  1291. return ""
  1292. }
  1293. type DataPermissionReq struct {
  1294. RuleCode string `protobuf:"bytes,1,opt,name=rule_code,json=ruleCode,proto3" json:"rule_code,omitempty"`
  1295. UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
  1296. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1297. XXX_unrecognized []byte `json:"-"`
  1298. XXX_sizecache int32 `json:"-"`
  1299. }
  1300. func (m *DataPermissionReq) Reset() { *m = DataPermissionReq{} }
  1301. func (m *DataPermissionReq) String() string { return proto.CompactTextString(m) }
  1302. func (*DataPermissionReq) ProtoMessage() {}
  1303. func (*DataPermissionReq) Descriptor() ([]byte, []int) {
  1304. return fileDescriptor_cb4a498eeb2ba07d, []int{31}
  1305. }
  1306. func (m *DataPermissionReq) XXX_Unmarshal(b []byte) error {
  1307. return xxx_messageInfo_DataPermissionReq.Unmarshal(m, b)
  1308. }
  1309. func (m *DataPermissionReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1310. return xxx_messageInfo_DataPermissionReq.Marshal(b, m, deterministic)
  1311. }
  1312. func (m *DataPermissionReq) XXX_Merge(src proto.Message) {
  1313. xxx_messageInfo_DataPermissionReq.Merge(m, src)
  1314. }
  1315. func (m *DataPermissionReq) XXX_Size() int {
  1316. return xxx_messageInfo_DataPermissionReq.Size(m)
  1317. }
  1318. func (m *DataPermissionReq) XXX_DiscardUnknown() {
  1319. xxx_messageInfo_DataPermissionReq.DiscardUnknown(m)
  1320. }
  1321. var xxx_messageInfo_DataPermissionReq proto.InternalMessageInfo
  1322. func (m *DataPermissionReq) GetRuleCode() string {
  1323. if m != nil {
  1324. return m.RuleCode
  1325. }
  1326. return ""
  1327. }
  1328. func (m *DataPermissionReq) GetUserId() string {
  1329. if m != nil {
  1330. return m.UserId
  1331. }
  1332. return ""
  1333. }
  1334. type DataPermissionRes struct {
  1335. 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"`
  1336. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1337. XXX_unrecognized []byte `json:"-"`
  1338. XXX_sizecache int32 `json:"-"`
  1339. }
  1340. func (m *DataPermissionRes) Reset() { *m = DataPermissionRes{} }
  1341. func (m *DataPermissionRes) String() string { return proto.CompactTextString(m) }
  1342. func (*DataPermissionRes) ProtoMessage() {}
  1343. func (*DataPermissionRes) Descriptor() ([]byte, []int) {
  1344. return fileDescriptor_cb4a498eeb2ba07d, []int{32}
  1345. }
  1346. func (m *DataPermissionRes) XXX_Unmarshal(b []byte) error {
  1347. return xxx_messageInfo_DataPermissionRes.Unmarshal(m, b)
  1348. }
  1349. func (m *DataPermissionRes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1350. return xxx_messageInfo_DataPermissionRes.Marshal(b, m, deterministic)
  1351. }
  1352. func (m *DataPermissionRes) XXX_Merge(src proto.Message) {
  1353. xxx_messageInfo_DataPermissionRes.Merge(m, src)
  1354. }
  1355. func (m *DataPermissionRes) XXX_Size() int {
  1356. return xxx_messageInfo_DataPermissionRes.Size(m)
  1357. }
  1358. func (m *DataPermissionRes) XXX_DiscardUnknown() {
  1359. xxx_messageInfo_DataPermissionRes.DiscardUnknown(m)
  1360. }
  1361. var xxx_messageInfo_DataPermissionRes proto.InternalMessageInfo
  1362. func (m *DataPermissionRes) GetMapList() map[string]string {
  1363. if m != nil {
  1364. return m.MapList
  1365. }
  1366. return nil
  1367. }
  1368. func init() {
  1369. proto.RegisterType((*UserRequest)(nil), "transform.UserRequest")
  1370. proto.RegisterType((*UserResponse)(nil), "transform.UserResponse")
  1371. proto.RegisterType((*TokenRequest)(nil), "transform.TokenRequest")
  1372. proto.RegisterType((*TokenResponse)(nil), "transform.TokenResponse")
  1373. proto.RegisterType((*Empty)(nil), "transform.Empty")
  1374. proto.RegisterType((*TreeNodes)(nil), "transform.TreeNodes")
  1375. proto.RegisterType((*TreeNode)(nil), "transform.TreeNode")
  1376. proto.RegisterType((*Tag)(nil), "transform.Tag")
  1377. proto.RegisterType((*OptionsetReq)(nil), "transform.OptionsetReq")
  1378. proto.RegisterType((*OptionsetRes)(nil), "transform.OptionsetRes")
  1379. proto.RegisterMapType((map[string]string)(nil), "transform.OptionsetRes.MapListEntry")
  1380. proto.RegisterType((*OptionCode)(nil), "transform.OptionCode")
  1381. proto.RegisterType((*Options)(nil), "transform.Options")
  1382. proto.RegisterType((*ResponseByte)(nil), "transform.ResponseByte")
  1383. proto.RegisterType((*ExcelLogReq)(nil), "transform.ExcelLogReq")
  1384. proto.RegisterType((*ExcelLogRes)(nil), "transform.ExcelLogRes")
  1385. proto.RegisterType((*SchoolIdsReq)(nil), "transform.SchoolIdsReq")
  1386. proto.RegisterType((*ListOfInt)(nil), "transform.ListOfInt")
  1387. proto.RegisterType((*SchoolIdsRes)(nil), "transform.SchoolIdsRes")
  1388. proto.RegisterMapType((map[string]int64)(nil), "transform.SchoolIdsRes.MapListEntry")
  1389. proto.RegisterType((*CityIdsReq)(nil), "transform.CityIdsReq")
  1390. proto.RegisterType((*CityIdsRes)(nil), "transform.CityIdsRes")
  1391. proto.RegisterMapType((map[string]int64)(nil), "transform.CityIdsRes.MapListEntry")
  1392. proto.RegisterType((*BytesReq)(nil), "transform.BytesReq")
  1393. proto.RegisterType((*BytesResp)(nil), "transform.BytesResp")
  1394. proto.RegisterType((*GetErpRoleRes)(nil), "transform.GetErpRoleRes")
  1395. proto.RegisterType((*GetErpRoleReq)(nil), "transform.GetErpRoleReq")
  1396. proto.RegisterType((*GetErpOrganSchPerByUserIdReq)(nil), "transform.GetErpOrganSchPerByUserIdReq")
  1397. proto.RegisterType((*GetErpOrganSchPerByUserIdRes)(nil), "transform.GetErpOrganSchPerByUserIdRes")
  1398. proto.RegisterType((*OrganSchool)(nil), "transform.OrganSchool")
  1399. proto.RegisterType((*GetErpSchoolRes)(nil), "transform.GetErpSchoolRes")
  1400. proto.RegisterType((*GetErpActiveReq)(nil), "transform.GetErpActiveReq")
  1401. proto.RegisterType((*GetErpActiveRes)(nil), "transform.GetErpActiveRes")
  1402. proto.RegisterType((*Active)(nil), "transform.Active")
  1403. proto.RegisterType((*DataPermissionReq)(nil), "transform.DataPermissionReq")
  1404. proto.RegisterType((*DataPermissionRes)(nil), "transform.DataPermissionRes")
  1405. proto.RegisterMapType((map[string]string)(nil), "transform.DataPermissionRes.MapListEntry")
  1406. }
  1407. func init() { proto.RegisterFile("transform.proto", fileDescriptor_cb4a498eeb2ba07d) }
  1408. var fileDescriptor_cb4a498eeb2ba07d = []byte{
  1409. // 1242 bytes of a gzipped FileDescriptorProto
  1410. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x57, 0x5b, 0x6f, 0xdb, 0x36,
  1411. 0x14, 0x86, 0xa2, 0xf8, 0x76, 0xec, 0xa4, 0x2d, 0x97, 0xa6, 0xae, 0xd6, 0x6d, 0x06, 0x91, 0x6d,
  1412. 0xc9, 0x4b, 0x1e, 0x52, 0x60, 0x2b, 0x82, 0xa0, 0x6b, 0x6e, 0x35, 0x0c, 0xe4, 0x06, 0x25, 0xc5,
  1413. 0x1e, 0x03, 0xd6, 0x62, 0x1d, 0x21, 0xb2, 0xa8, 0x88, 0x74, 0x50, 0xff, 0x81, 0x3d, 0xec, 0x75,
  1414. 0xfb, 0x5f, 0x7b, 0xd9, 0xdb, 0x7e, 0xcc, 0x86, 0x43, 0x52, 0x36, 0x1d, 0xdb, 0x69, 0x36, 0x74,
  1415. 0x6f, 0x3c, 0xf7, 0xa3, 0x8f, 0xe7, 0x42, 0xc1, 0x23, 0x95, 0xb3, 0x54, 0x7e, 0x10, 0x79, 0x7f,
  1416. 0x33, 0xcb, 0x85, 0x12, 0xa4, 0x36, 0x62, 0xd0, 0x97, 0x50, 0x7f, 0x27, 0x79, 0x1e, 0xf2, 0x9b,
  1417. 0x01, 0x97, 0x8a, 0x2c, 0xc3, 0x42, 0x1c, 0x35, 0xbd, 0x96, 0xb7, 0x5e, 0x0b, 0x17, 0xe2, 0x88,
  1418. 0xac, 0x40, 0x29, 0xbb, 0x12, 0x29, 0x6f, 0x2e, 0x68, 0x96, 0x21, 0xe8, 0x9f, 0x1e, 0x34, 0x8c,
  1419. 0x95, 0xcc, 0x44, 0x2a, 0xf9, 0xc3, 0xcc, 0x90, 0x9b, 0x8b, 0x84, 0xcb, 0xa6, 0x6f, 0xb8, 0x9a,
  1420. 0x20, 0xab, 0x50, 0x96, 0x8a, 0xa9, 0x81, 0x6c, 0x2e, 0xb6, 0xbc, 0x75, 0x3f, 0xb4, 0x14, 0x69,
  1421. 0x41, 0x9d, 0xe7, 0x59, 0x28, 0x12, 0x7e, 0x31, 0xcc, 0x78, 0xb3, 0xa4, 0x85, 0x2e, 0x8b, 0x04,
  1422. 0x50, 0x1d, 0x48, 0x9e, 0x9f, 0xb0, 0x3e, 0x6f, 0x96, 0xb5, 0xcb, 0x11, 0x8d, 0xb2, 0x6e, 0xac,
  1423. 0x86, 0x5a, 0x56, 0x31, 0xb2, 0x82, 0xc6, 0x88, 0x3d, 0x9e, 0x46, 0x3c, 0x6f, 0x56, 0x4d, 0x44,
  1424. 0x43, 0xd1, 0x35, 0x68, 0x5c, 0x88, 0x6b, 0x9e, 0x16, 0x60, 0xac, 0x40, 0x49, 0x21, 0x6d, 0x3f,
  1425. 0xcc, 0x10, 0xf4, 0x6f, 0x0f, 0x96, 0xac, 0x9a, 0xfd, 0xfa, 0x55, 0x28, 0x23, 0x1a, 0x9d, 0x02,
  1426. 0x01, 0x4b, 0xe1, 0x17, 0x68, 0x94, 0x44, 0xc2, 0x3b, 0x91, 0xb4, 0x58, 0xb8, 0x2c, 0xb2, 0x06,
  1427. 0x4b, 0x48, 0x9e, 0x77, 0xaf, 0x84, 0x48, 0x50, 0xc7, 0x20, 0x33, 0xc9, 0x24, 0xeb, 0xf0, 0x08,
  1428. 0x19, 0x67, 0xb9, 0xb8, 0x8d, 0xd3, 0xae, 0xf6, 0xb5, 0xa8, 0xf5, 0xee, 0xb2, 0x09, 0x35, 0xf7,
  1429. 0x72, 0x9a, 0xf7, 0x58, 0x8a, 0x6a, 0x25, 0xad, 0x36, 0xc1, 0xc3, 0xac, 0xce, 0x87, 0xb2, 0xf0,
  1430. 0x6e, 0x81, 0x73, 0x59, 0xe4, 0x6b, 0x80, 0xf3, 0xa1, 0xb4, 0x06, 0x16, 0x3d, 0x87, 0x43, 0x2b,
  1431. 0x50, 0x3a, 0xec, 0x67, 0x6a, 0x48, 0x7f, 0x80, 0xda, 0x45, 0xce, 0xf9, 0x89, 0x88, 0xb8, 0x24,
  1432. 0x1b, 0x50, 0x4a, 0xf1, 0xd0, 0xf4, 0x5a, 0xfe, 0x7a, 0x7d, 0xeb, 0x8b, 0xcd, 0x71, 0xd5, 0x15,
  1433. 0x4a, 0xa1, 0xd1, 0xa0, 0xbf, 0x79, 0x50, 0x2d, 0x78, 0x4e, 0xed, 0xf8, 0xba, 0x76, 0x08, 0x2c,
  1434. 0x2a, 0xfe, 0x51, 0x59, 0xb8, 0xf4, 0x19, 0x11, 0xce, 0x58, 0xce, 0x53, 0xa5, 0x01, 0xf2, 0x43,
  1435. 0x4b, 0x91, 0x16, 0xf8, 0x8a, 0xf5, 0x34, 0x1a, 0xf5, 0xad, 0x65, 0x37, 0x22, 0xeb, 0x85, 0x28,
  1436. 0x1a, 0x67, 0x55, 0xfa, 0x64, 0x56, 0x1b, 0xe0, 0x5f, 0xb0, 0xde, 0xac, 0x7c, 0x52, 0xac, 0x22,
  1437. 0x9b, 0x0f, 0x9e, 0x29, 0x85, 0xc6, 0x69, 0xa6, 0x62, 0xbc, 0x7d, 0x15, 0xf2, 0x1b, 0xd4, 0xe9,
  1438. 0x8a, 0x88, 0xdb, 0xfb, 0xd7, 0x67, 0xfa, 0xab, 0x37, 0xa1, 0x24, 0xc9, 0x6b, 0xa8, 0xf4, 0x59,
  1439. 0x76, 0x14, 0x4b, 0x65, 0x21, 0x5a, 0x73, 0x92, 0x71, 0x35, 0x37, 0x8f, 0x8d, 0xda, 0x61, 0xaa,
  1440. 0xf2, 0x61, 0x58, 0x18, 0x05, 0xdb, 0xd0, 0x70, 0x05, 0xe4, 0x31, 0xf8, 0xd7, 0x7c, 0x68, 0x63,
  1441. 0xe2, 0x11, 0x0b, 0xf6, 0x96, 0x25, 0x83, 0x51, 0xdb, 0x69, 0x62, 0x7b, 0xe1, 0x95, 0x47, 0x5b,
  1442. 0x00, 0x26, 0xc2, 0x3e, 0x42, 0x3e, 0x2b, 0xdd, 0x36, 0x54, 0x6c, 0x0e, 0xb3, 0xc4, 0xb3, 0x50,
  1443. 0x18, 0x87, 0xf3, 0x9d, 0x70, 0x88, 0x4d, 0xd1, 0x19, 0x7b, 0x43, 0xa5, 0x2d, 0x23, 0xa6, 0x98,
  1444. 0xf6, 0xd6, 0x08, 0xf5, 0x99, 0xfe, 0xe5, 0x41, 0xfd, 0xf0, 0x63, 0x97, 0x27, 0x47, 0xa2, 0x87,
  1445. 0xf8, 0xad, 0x42, 0xf9, 0x58, 0x44, 0x83, 0xa4, 0x88, 0x69, 0x29, 0xb4, 0xdd, 0x17, 0x69, 0x54,
  1446. 0x44, 0xc5, 0x33, 0x76, 0xf6, 0x7e, 0xce, 0x99, 0xe2, 0x7b, 0x43, 0x1b, 0x78, 0x44, 0x63, 0xe5,
  1447. 0x9a, 0xf3, 0x45, 0xdc, 0xe7, 0xb6, 0x49, 0x1c, 0x0e, 0xf6, 0xc7, 0x11, 0x93, 0xea, 0x5d, 0x16,
  1448. 0x19, 0x7b, 0xdb, 0x1f, 0x2e, 0x8f, 0x7c, 0x07, 0xcb, 0x63, 0x5a, 0xfb, 0x31, 0x2d, 0x72, 0x87,
  1449. 0x4b, 0x9a, 0x50, 0x39, 0xe0, 0xc9, 0xdb, 0x84, 0xf5, 0x6c, 0x8b, 0x14, 0x24, 0xfd, 0xd6, 0xfd,
  1450. 0x38, 0x3d, 0xe0, 0xce, 0xcd, 0x80, 0x33, 0x45, 0x65, 0x29, 0x1c, 0x37, 0xa3, 0x1e, 0x47, 0x10,
  1451. 0x56, 0xa0, 0x84, 0xb0, 0x9a, 0x06, 0xaa, 0x85, 0x86, 0xa0, 0x5f, 0x41, 0x0d, 0xaf, 0xfc, 0xf4,
  1452. 0x43, 0x27, 0x55, 0x78, 0xe5, 0x71, 0x64, 0x14, 0xfc, 0x10, 0x8f, 0xba, 0xca, 0x1c, 0x2f, 0x9f,
  1453. 0xa8, 0x32, 0x57, 0xf3, 0xf3, 0x54, 0x99, 0xef, 0x56, 0x19, 0x05, 0xd8, 0x8f, 0xd5, 0x70, 0xfa,
  1454. 0x7b, 0xbc, 0xf1, 0xf7, 0xfc, 0xe2, 0x39, 0x4a, 0x92, 0xec, 0xdc, 0x4d, 0x97, 0x3a, 0xe9, 0x8e,
  1455. 0xf5, 0xfe, 0x87, 0x64, 0x5f, 0x40, 0x15, 0xeb, 0x53, 0xa7, 0xfa, 0x18, 0xfc, 0x9c, 0xdf, 0xd8,
  1456. 0x12, 0xc5, 0x23, 0xfd, 0x06, 0x6a, 0x56, 0x2a, 0x33, 0x2c, 0xc3, 0x9c, 0xcb, 0xac, 0x28, 0x61,
  1457. 0x3c, 0xd3, 0x1d, 0x58, 0x6a, 0x73, 0x75, 0x68, 0xd6, 0x11, 0x7e, 0xc9, 0x33, 0xa8, 0xe0, 0xf6,
  1458. 0xb9, 0x1c, 0x2d, 0xc2, 0xf2, 0xc0, 0xac, 0x01, 0xb4, 0x16, 0xc9, 0xa8, 0x75, 0xf0, 0x4c, 0xdf,
  1459. 0x4c, 0x5a, 0xeb, 0x0e, 0xe8, 0x8b, 0xf7, 0xf1, 0xb8, 0x03, 0x0c, 0xe5, 0x7a, 0x5d, 0x70, 0xbd,
  1460. 0xd2, 0x1f, 0xe1, 0x85, 0xf1, 0xa0, 0xa7, 0xf2, 0x79, 0xf7, 0xea, 0x8c, 0xe7, 0x7b, 0x43, 0xb3,
  1461. 0x79, 0xd0, 0xe1, 0xbc, 0x74, 0xe8, 0xc9, 0xbd, 0x86, 0x92, 0x6c, 0x42, 0x59, 0xea, 0x32, 0xb1,
  1462. 0x17, 0xb2, 0xea, 0x4e, 0x29, 0x6b, 0x22, 0x44, 0x12, 0x5a, 0x2d, 0x7a, 0x04, 0x75, 0x87, 0xfd,
  1463. 0x90, 0xf1, 0x49, 0x9e, 0x43, 0x55, 0xa0, 0x09, 0x26, 0x67, 0x06, 0x7a, 0x45, 0xd8, 0xdd, 0xb2,
  1464. 0x0b, 0x8f, 0x4c, 0x76, 0x36, 0xca, 0x7f, 0x48, 0x68, 0xbd, 0x70, 0xb1, 0xdb, 0x55, 0xf1, 0xad,
  1465. 0x46, 0xf7, 0xa9, 0x76, 0x51, 0x60, 0xb1, 0x18, 0x96, 0x64, 0xf7, 0xaa, 0x13, 0xd1, 0x9d, 0xbb,
  1466. 0x9a, 0xb8, 0xc5, 0xca, 0x4c, 0x13, 0x36, 0xd8, 0x13, 0x27, 0x98, 0xd5, 0xb2, 0x0a, 0xf4, 0x35,
  1467. 0x94, 0x0d, 0x87, 0x7c, 0x09, 0x35, 0xc3, 0xbb, 0x1c, 0x7d, 0x7a, 0xd5, 0x30, 0x3a, 0x11, 0x5e,
  1468. 0x44, 0x9f, 0x5d, 0x3a, 0x18, 0x94, 0xfb, 0x0c, 0x9f, 0x21, 0xb4, 0x03, 0x4f, 0x0e, 0x98, 0x62,
  1469. 0x67, 0x3c, 0xef, 0xc7, 0x52, 0xc6, 0x02, 0xdf, 0x1d, 0xe8, 0x2a, 0x1f, 0x24, 0xfc, 0xd2, 0x19,
  1470. 0xc0, 0x55, 0x64, 0xe8, 0xb9, 0x3d, 0xb7, 0x18, 0x7e, 0xf7, 0xa6, 0x7d, 0x49, 0xb2, 0x7f, 0xb7,
  1471. 0xb7, 0x36, 0x9c, 0x8f, 0x99, 0x52, 0xff, 0xfc, 0x5b, 0x67, 0xeb, 0x8f, 0x0a, 0x3e, 0x10, 0x6c,
  1472. 0x44, 0xb2, 0x0d, 0x95, 0x36, 0x57, 0x58, 0x68, 0xc4, 0xbd, 0x42, 0xe7, 0xf9, 0x19, 0x3c, 0x9b,
  1473. 0xe2, 0xdb, 0x27, 0xd6, 0x4f, 0x00, 0x67, 0x2c, 0x97, 0x5c, 0x3f, 0xbc, 0x88, 0xab, 0xe6, 0xbe,
  1474. 0xd8, 0x82, 0xe6, 0xb4, 0xc0, 0x3a, 0x78, 0x05, 0xcb, 0xe6, 0xaa, 0x71, 0xa6, 0xe0, 0xe6, 0x27,
  1475. 0x8f, 0x1d, 0x5d, 0xfd, 0x9c, 0x09, 0x56, 0x66, 0x3c, 0x0e, 0x24, 0xd9, 0x85, 0xa5, 0x23, 0xc1,
  1476. 0xa2, 0xd1, 0x82, 0x9e, 0x88, 0xee, 0xbe, 0x02, 0x82, 0x39, 0x02, 0x49, 0xde, 0x40, 0xa3, 0xcd,
  1477. 0xd5, 0xf8, 0x41, 0xf7, 0x6c, 0xf6, 0x48, 0x9e, 0xf4, 0x30, 0x31, 0xd5, 0xb7, 0x01, 0xda, 0x5c,
  1478. 0xd9, 0x79, 0x48, 0x9e, 0xce, 0x9a, 0x91, 0x37, 0xc1, 0x4c, 0x36, 0x6e, 0x84, 0xc6, 0x99, 0x90,
  1479. 0xaa, 0x58, 0x49, 0x13, 0xe0, 0x3b, 0x4b, 0x38, 0x98, 0xcd, 0xc7, 0x11, 0x6d, 0xbb, 0x64, 0x0c,
  1480. 0xc1, 0xd3, 0xa9, 0x2f, 0xc5, 0xfa, 0x0c, 0xc8, 0x34, 0x00, 0xe4, 0x14, 0x9e, 0xb4, 0xb9, 0x9a,
  1481. 0xac, 0x36, 0xf2, 0xe2, 0x9e, 0x42, 0xbc, 0x09, 0xee, 0x93, 0x4a, 0x72, 0x00, 0x81, 0x49, 0xe7,
  1482. 0xf8, 0x5a, 0x9d, 0x70, 0xf5, 0xb3, 0xc8, 0xaf, 0x0f, 0xb8, 0x62, 0x71, 0xf2, 0xaf, 0x6e, 0xb5,
  1483. 0x0f, 0xcf, 0xe7, 0x4e, 0x41, 0xf2, 0xbd, 0x63, 0x72, 0xdf, 0x90, 0x0d, 0x1e, 0xa8, 0x88, 0x15,
  1484. 0x00, 0xe3, 0x79, 0x4f, 0x9a, 0x53, 0x66, 0x76, 0x0d, 0x04, 0xf3, 0x24, 0x78, 0x0b, 0x0d, 0x77,
  1485. 0x30, 0xce, 0xf8, 0xd0, 0x60, 0xca, 0x76, 0x3c, 0x43, 0xdf, 0x16, 0xd6, 0x76, 0x62, 0x4d, 0xeb,
  1486. 0x8e, 0x86, 0x65, 0x30, 0x5f, 0x26, 0xdf, 0x97, 0xf5, 0x0f, 0xe4, 0xcb, 0x7f, 0x02, 0x00, 0x00,
  1487. 0xff, 0xff, 0x5f, 0x30, 0x8c, 0x56, 0x53, 0x0e, 0x00, 0x00,
  1488. }
  1489. // Reference imports to suppress errors if they are not otherwise used.
  1490. var _ context.Context
  1491. var _ grpc.ClientConn
  1492. // This is a compile-time assertion to ensure that this generated file
  1493. // is compatible with the grpc package it is being compiled against.
  1494. const _ = grpc.SupportPackageIsVersion4
  1495. // TransformClient is the client API for Transform service.
  1496. //
  1497. // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
  1498. type TransformClient interface {
  1499. GetUser(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error)
  1500. ParseToken(ctx context.Context, in *TokenRequest, opts ...grpc.CallOption) (*TokenResponse, error)
  1501. //获取erp 省、城市树
  1502. GetErpCityTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
  1503. //获取erp 字典
  1504. LoadOptionset(ctx context.Context, in *OptionsetReq, opts ...grpc.CallOption) (*OptionsetRes, error)
  1505. GetSchoolIds(ctx context.Context, in *SchoolIdsReq, opts ...grpc.CallOption) (*SchoolIdsRes, error)
  1506. GetCityIds(ctx context.Context, in *CityIdsReq, opts ...grpc.CallOption) (*CityIdsRes, error)
  1507. PostExcelLog(ctx context.Context, in *ExcelLogReq, opts ...grpc.CallOption) (*ExcelLogRes, error)
  1508. GetErpOptionset(ctx context.Context, in *OptionCode, opts ...grpc.CallOption) (*Options, error)
  1509. //获取数据权限
  1510. GetDataPermission(ctx context.Context, in *DataPermissionReq, opts ...grpc.CallOption) (*DataPermissionRes, error)
  1511. //获取erp 渠道细分树
  1512. GetErpMktNetWorkDetailTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error)
  1513. //获取erp 用户校区权限
  1514. GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error)
  1515. //获取 erp 用户角色
  1516. GetErpRole(ctx context.Context, in *GetErpRoleReq, opts ...grpc.CallOption) (*GetErpRoleRes, error)
  1517. //获取 erp 全部校区
  1518. GetErpSchool(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*GetErpSchoolRes, error)
  1519. //获取 erp 活动
  1520. GetErpActive(ctx context.Context, in *GetErpActiveReq, opts ...grpc.CallOption) (*GetErpActiveRes, error)
  1521. }
  1522. type transformClient struct {
  1523. cc *grpc.ClientConn
  1524. }
  1525. func NewTransformClient(cc *grpc.ClientConn) TransformClient {
  1526. return &transformClient{cc}
  1527. }
  1528. func (c *transformClient) GetUser(ctx context.Context, in *UserRequest, opts ...grpc.CallOption) (*UserResponse, error) {
  1529. out := new(UserResponse)
  1530. err := c.cc.Invoke(ctx, "/transform.Transform/GetUser", in, out, opts...)
  1531. if err != nil {
  1532. return nil, err
  1533. }
  1534. return out, nil
  1535. }
  1536. func (c *transformClient) ParseToken(ctx context.Context, in *TokenRequest, opts ...grpc.CallOption) (*TokenResponse, error) {
  1537. out := new(TokenResponse)
  1538. err := c.cc.Invoke(ctx, "/transform.Transform/ParseToken", in, out, opts...)
  1539. if err != nil {
  1540. return nil, err
  1541. }
  1542. return out, nil
  1543. }
  1544. func (c *transformClient) GetErpCityTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
  1545. out := new(TreeNodes)
  1546. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpCityTree", in, out, opts...)
  1547. if err != nil {
  1548. return nil, err
  1549. }
  1550. return out, nil
  1551. }
  1552. func (c *transformClient) LoadOptionset(ctx context.Context, in *OptionsetReq, opts ...grpc.CallOption) (*OptionsetRes, error) {
  1553. out := new(OptionsetRes)
  1554. err := c.cc.Invoke(ctx, "/transform.Transform/LoadOptionset", in, out, opts...)
  1555. if err != nil {
  1556. return nil, err
  1557. }
  1558. return out, nil
  1559. }
  1560. func (c *transformClient) GetSchoolIds(ctx context.Context, in *SchoolIdsReq, opts ...grpc.CallOption) (*SchoolIdsRes, error) {
  1561. out := new(SchoolIdsRes)
  1562. err := c.cc.Invoke(ctx, "/transform.Transform/GetSchoolIds", in, out, opts...)
  1563. if err != nil {
  1564. return nil, err
  1565. }
  1566. return out, nil
  1567. }
  1568. func (c *transformClient) GetCityIds(ctx context.Context, in *CityIdsReq, opts ...grpc.CallOption) (*CityIdsRes, error) {
  1569. out := new(CityIdsRes)
  1570. err := c.cc.Invoke(ctx, "/transform.Transform/GetCityIds", in, out, opts...)
  1571. if err != nil {
  1572. return nil, err
  1573. }
  1574. return out, nil
  1575. }
  1576. func (c *transformClient) PostExcelLog(ctx context.Context, in *ExcelLogReq, opts ...grpc.CallOption) (*ExcelLogRes, error) {
  1577. out := new(ExcelLogRes)
  1578. err := c.cc.Invoke(ctx, "/transform.Transform/PostExcelLog", in, out, opts...)
  1579. if err != nil {
  1580. return nil, err
  1581. }
  1582. return out, nil
  1583. }
  1584. func (c *transformClient) GetErpOptionset(ctx context.Context, in *OptionCode, opts ...grpc.CallOption) (*Options, error) {
  1585. out := new(Options)
  1586. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOptionset", in, out, opts...)
  1587. if err != nil {
  1588. return nil, err
  1589. }
  1590. return out, nil
  1591. }
  1592. func (c *transformClient) GetDataPermission(ctx context.Context, in *DataPermissionReq, opts ...grpc.CallOption) (*DataPermissionRes, error) {
  1593. out := new(DataPermissionRes)
  1594. err := c.cc.Invoke(ctx, "/transform.Transform/GetDataPermission", in, out, opts...)
  1595. if err != nil {
  1596. return nil, err
  1597. }
  1598. return out, nil
  1599. }
  1600. func (c *transformClient) GetErpMktNetWorkDetailTree(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*TreeNodes, error) {
  1601. out := new(TreeNodes)
  1602. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpMktNetWorkDetailTree", in, out, opts...)
  1603. if err != nil {
  1604. return nil, err
  1605. }
  1606. return out, nil
  1607. }
  1608. func (c *transformClient) GetErpOrganSchPerByUserId(ctx context.Context, in *GetErpOrganSchPerByUserIdReq, opts ...grpc.CallOption) (*GetErpOrganSchPerByUserIdRes, error) {
  1609. out := new(GetErpOrganSchPerByUserIdRes)
  1610. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpOrganSchPerByUserId", in, out, opts...)
  1611. if err != nil {
  1612. return nil, err
  1613. }
  1614. return out, nil
  1615. }
  1616. func (c *transformClient) GetErpRole(ctx context.Context, in *GetErpRoleReq, opts ...grpc.CallOption) (*GetErpRoleRes, error) {
  1617. out := new(GetErpRoleRes)
  1618. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpRole", in, out, opts...)
  1619. if err != nil {
  1620. return nil, err
  1621. }
  1622. return out, nil
  1623. }
  1624. func (c *transformClient) GetErpSchool(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*GetErpSchoolRes, error) {
  1625. out := new(GetErpSchoolRes)
  1626. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpSchool", in, out, opts...)
  1627. if err != nil {
  1628. return nil, err
  1629. }
  1630. return out, nil
  1631. }
  1632. func (c *transformClient) GetErpActive(ctx context.Context, in *GetErpActiveReq, opts ...grpc.CallOption) (*GetErpActiveRes, error) {
  1633. out := new(GetErpActiveRes)
  1634. err := c.cc.Invoke(ctx, "/transform.Transform/GetErpActive", in, out, opts...)
  1635. if err != nil {
  1636. return nil, err
  1637. }
  1638. return out, nil
  1639. }
  1640. // TransformServer is the server API for Transform service.
  1641. type TransformServer interface {
  1642. GetUser(context.Context, *UserRequest) (*UserResponse, error)
  1643. ParseToken(context.Context, *TokenRequest) (*TokenResponse, error)
  1644. //获取erp 省、城市树
  1645. GetErpCityTree(context.Context, *Empty) (*TreeNodes, error)
  1646. //获取erp 字典
  1647. LoadOptionset(context.Context, *OptionsetReq) (*OptionsetRes, error)
  1648. GetSchoolIds(context.Context, *SchoolIdsReq) (*SchoolIdsRes, error)
  1649. GetCityIds(context.Context, *CityIdsReq) (*CityIdsRes, error)
  1650. PostExcelLog(context.Context, *ExcelLogReq) (*ExcelLogRes, error)
  1651. GetErpOptionset(context.Context, *OptionCode) (*Options, error)
  1652. //获取数据权限
  1653. GetDataPermission(context.Context, *DataPermissionReq) (*DataPermissionRes, error)
  1654. //获取erp 渠道细分树
  1655. GetErpMktNetWorkDetailTree(context.Context, *Empty) (*TreeNodes, error)
  1656. //获取erp 用户校区权限
  1657. GetErpOrganSchPerByUserId(context.Context, *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error)
  1658. //获取 erp 用户角色
  1659. GetErpRole(context.Context, *GetErpRoleReq) (*GetErpRoleRes, error)
  1660. //获取 erp 全部校区
  1661. GetErpSchool(context.Context, *Empty) (*GetErpSchoolRes, error)
  1662. //获取 erp 活动
  1663. GetErpActive(context.Context, *GetErpActiveReq) (*GetErpActiveRes, error)
  1664. }
  1665. // UnimplementedTransformServer can be embedded to have forward compatible implementations.
  1666. type UnimplementedTransformServer struct {
  1667. }
  1668. func (*UnimplementedTransformServer) GetUser(ctx context.Context, req *UserRequest) (*UserResponse, error) {
  1669. return nil, status.Errorf(codes.Unimplemented, "method GetUser not implemented")
  1670. }
  1671. func (*UnimplementedTransformServer) ParseToken(ctx context.Context, req *TokenRequest) (*TokenResponse, error) {
  1672. return nil, status.Errorf(codes.Unimplemented, "method ParseToken not implemented")
  1673. }
  1674. func (*UnimplementedTransformServer) GetErpCityTree(ctx context.Context, req *Empty) (*TreeNodes, error) {
  1675. return nil, status.Errorf(codes.Unimplemented, "method GetErpCityTree not implemented")
  1676. }
  1677. func (*UnimplementedTransformServer) LoadOptionset(ctx context.Context, req *OptionsetReq) (*OptionsetRes, error) {
  1678. return nil, status.Errorf(codes.Unimplemented, "method LoadOptionset not implemented")
  1679. }
  1680. func (*UnimplementedTransformServer) GetSchoolIds(ctx context.Context, req *SchoolIdsReq) (*SchoolIdsRes, error) {
  1681. return nil, status.Errorf(codes.Unimplemented, "method GetSchoolIds not implemented")
  1682. }
  1683. func (*UnimplementedTransformServer) GetCityIds(ctx context.Context, req *CityIdsReq) (*CityIdsRes, error) {
  1684. return nil, status.Errorf(codes.Unimplemented, "method GetCityIds not implemented")
  1685. }
  1686. func (*UnimplementedTransformServer) PostExcelLog(ctx context.Context, req *ExcelLogReq) (*ExcelLogRes, error) {
  1687. return nil, status.Errorf(codes.Unimplemented, "method PostExcelLog not implemented")
  1688. }
  1689. func (*UnimplementedTransformServer) GetErpOptionset(ctx context.Context, req *OptionCode) (*Options, error) {
  1690. return nil, status.Errorf(codes.Unimplemented, "method GetErpOptionset not implemented")
  1691. }
  1692. func (*UnimplementedTransformServer) GetDataPermission(ctx context.Context, req *DataPermissionReq) (*DataPermissionRes, error) {
  1693. return nil, status.Errorf(codes.Unimplemented, "method GetDataPermission not implemented")
  1694. }
  1695. func (*UnimplementedTransformServer) GetErpMktNetWorkDetailTree(ctx context.Context, req *Empty) (*TreeNodes, error) {
  1696. return nil, status.Errorf(codes.Unimplemented, "method GetErpMktNetWorkDetailTree not implemented")
  1697. }
  1698. func (*UnimplementedTransformServer) GetErpOrganSchPerByUserId(ctx context.Context, req *GetErpOrganSchPerByUserIdReq) (*GetErpOrganSchPerByUserIdRes, error) {
  1699. return nil, status.Errorf(codes.Unimplemented, "method GetErpOrganSchPerByUserId not implemented")
  1700. }
  1701. func (*UnimplementedTransformServer) GetErpRole(ctx context.Context, req *GetErpRoleReq) (*GetErpRoleRes, error) {
  1702. return nil, status.Errorf(codes.Unimplemented, "method GetErpRole not implemented")
  1703. }
  1704. func (*UnimplementedTransformServer) GetErpSchool(ctx context.Context, req *Empty) (*GetErpSchoolRes, error) {
  1705. return nil, status.Errorf(codes.Unimplemented, "method GetErpSchool not implemented")
  1706. }
  1707. func (*UnimplementedTransformServer) GetErpActive(ctx context.Context, req *GetErpActiveReq) (*GetErpActiveRes, error) {
  1708. return nil, status.Errorf(codes.Unimplemented, "method GetErpActive not implemented")
  1709. }
  1710. func RegisterTransformServer(s *grpc.Server, srv TransformServer) {
  1711. s.RegisterService(&_Transform_serviceDesc, srv)
  1712. }
  1713. func _Transform_GetUser_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1714. in := new(UserRequest)
  1715. if err := dec(in); err != nil {
  1716. return nil, err
  1717. }
  1718. if interceptor == nil {
  1719. return srv.(TransformServer).GetUser(ctx, in)
  1720. }
  1721. info := &grpc.UnaryServerInfo{
  1722. Server: srv,
  1723. FullMethod: "/transform.Transform/GetUser",
  1724. }
  1725. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1726. return srv.(TransformServer).GetUser(ctx, req.(*UserRequest))
  1727. }
  1728. return interceptor(ctx, in, info, handler)
  1729. }
  1730. func _Transform_ParseToken_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1731. in := new(TokenRequest)
  1732. if err := dec(in); err != nil {
  1733. return nil, err
  1734. }
  1735. if interceptor == nil {
  1736. return srv.(TransformServer).ParseToken(ctx, in)
  1737. }
  1738. info := &grpc.UnaryServerInfo{
  1739. Server: srv,
  1740. FullMethod: "/transform.Transform/ParseToken",
  1741. }
  1742. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1743. return srv.(TransformServer).ParseToken(ctx, req.(*TokenRequest))
  1744. }
  1745. return interceptor(ctx, in, info, handler)
  1746. }
  1747. func _Transform_GetErpCityTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1748. in := new(Empty)
  1749. if err := dec(in); err != nil {
  1750. return nil, err
  1751. }
  1752. if interceptor == nil {
  1753. return srv.(TransformServer).GetErpCityTree(ctx, in)
  1754. }
  1755. info := &grpc.UnaryServerInfo{
  1756. Server: srv,
  1757. FullMethod: "/transform.Transform/GetErpCityTree",
  1758. }
  1759. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1760. return srv.(TransformServer).GetErpCityTree(ctx, req.(*Empty))
  1761. }
  1762. return interceptor(ctx, in, info, handler)
  1763. }
  1764. func _Transform_LoadOptionset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1765. in := new(OptionsetReq)
  1766. if err := dec(in); err != nil {
  1767. return nil, err
  1768. }
  1769. if interceptor == nil {
  1770. return srv.(TransformServer).LoadOptionset(ctx, in)
  1771. }
  1772. info := &grpc.UnaryServerInfo{
  1773. Server: srv,
  1774. FullMethod: "/transform.Transform/LoadOptionset",
  1775. }
  1776. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1777. return srv.(TransformServer).LoadOptionset(ctx, req.(*OptionsetReq))
  1778. }
  1779. return interceptor(ctx, in, info, handler)
  1780. }
  1781. func _Transform_GetSchoolIds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1782. in := new(SchoolIdsReq)
  1783. if err := dec(in); err != nil {
  1784. return nil, err
  1785. }
  1786. if interceptor == nil {
  1787. return srv.(TransformServer).GetSchoolIds(ctx, in)
  1788. }
  1789. info := &grpc.UnaryServerInfo{
  1790. Server: srv,
  1791. FullMethod: "/transform.Transform/GetSchoolIds",
  1792. }
  1793. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1794. return srv.(TransformServer).GetSchoolIds(ctx, req.(*SchoolIdsReq))
  1795. }
  1796. return interceptor(ctx, in, info, handler)
  1797. }
  1798. func _Transform_GetCityIds_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1799. in := new(CityIdsReq)
  1800. if err := dec(in); err != nil {
  1801. return nil, err
  1802. }
  1803. if interceptor == nil {
  1804. return srv.(TransformServer).GetCityIds(ctx, in)
  1805. }
  1806. info := &grpc.UnaryServerInfo{
  1807. Server: srv,
  1808. FullMethod: "/transform.Transform/GetCityIds",
  1809. }
  1810. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1811. return srv.(TransformServer).GetCityIds(ctx, req.(*CityIdsReq))
  1812. }
  1813. return interceptor(ctx, in, info, handler)
  1814. }
  1815. func _Transform_PostExcelLog_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1816. in := new(ExcelLogReq)
  1817. if err := dec(in); err != nil {
  1818. return nil, err
  1819. }
  1820. if interceptor == nil {
  1821. return srv.(TransformServer).PostExcelLog(ctx, in)
  1822. }
  1823. info := &grpc.UnaryServerInfo{
  1824. Server: srv,
  1825. FullMethod: "/transform.Transform/PostExcelLog",
  1826. }
  1827. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1828. return srv.(TransformServer).PostExcelLog(ctx, req.(*ExcelLogReq))
  1829. }
  1830. return interceptor(ctx, in, info, handler)
  1831. }
  1832. func _Transform_GetErpOptionset_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1833. in := new(OptionCode)
  1834. if err := dec(in); err != nil {
  1835. return nil, err
  1836. }
  1837. if interceptor == nil {
  1838. return srv.(TransformServer).GetErpOptionset(ctx, in)
  1839. }
  1840. info := &grpc.UnaryServerInfo{
  1841. Server: srv,
  1842. FullMethod: "/transform.Transform/GetErpOptionset",
  1843. }
  1844. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1845. return srv.(TransformServer).GetErpOptionset(ctx, req.(*OptionCode))
  1846. }
  1847. return interceptor(ctx, in, info, handler)
  1848. }
  1849. func _Transform_GetDataPermission_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1850. in := new(DataPermissionReq)
  1851. if err := dec(in); err != nil {
  1852. return nil, err
  1853. }
  1854. if interceptor == nil {
  1855. return srv.(TransformServer).GetDataPermission(ctx, in)
  1856. }
  1857. info := &grpc.UnaryServerInfo{
  1858. Server: srv,
  1859. FullMethod: "/transform.Transform/GetDataPermission",
  1860. }
  1861. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1862. return srv.(TransformServer).GetDataPermission(ctx, req.(*DataPermissionReq))
  1863. }
  1864. return interceptor(ctx, in, info, handler)
  1865. }
  1866. func _Transform_GetErpMktNetWorkDetailTree_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1867. in := new(Empty)
  1868. if err := dec(in); err != nil {
  1869. return nil, err
  1870. }
  1871. if interceptor == nil {
  1872. return srv.(TransformServer).GetErpMktNetWorkDetailTree(ctx, in)
  1873. }
  1874. info := &grpc.UnaryServerInfo{
  1875. Server: srv,
  1876. FullMethod: "/transform.Transform/GetErpMktNetWorkDetailTree",
  1877. }
  1878. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1879. return srv.(TransformServer).GetErpMktNetWorkDetailTree(ctx, req.(*Empty))
  1880. }
  1881. return interceptor(ctx, in, info, handler)
  1882. }
  1883. func _Transform_GetErpOrganSchPerByUserId_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1884. in := new(GetErpOrganSchPerByUserIdReq)
  1885. if err := dec(in); err != nil {
  1886. return nil, err
  1887. }
  1888. if interceptor == nil {
  1889. return srv.(TransformServer).GetErpOrganSchPerByUserId(ctx, in)
  1890. }
  1891. info := &grpc.UnaryServerInfo{
  1892. Server: srv,
  1893. FullMethod: "/transform.Transform/GetErpOrganSchPerByUserId",
  1894. }
  1895. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1896. return srv.(TransformServer).GetErpOrganSchPerByUserId(ctx, req.(*GetErpOrganSchPerByUserIdReq))
  1897. }
  1898. return interceptor(ctx, in, info, handler)
  1899. }
  1900. func _Transform_GetErpRole_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1901. in := new(GetErpRoleReq)
  1902. if err := dec(in); err != nil {
  1903. return nil, err
  1904. }
  1905. if interceptor == nil {
  1906. return srv.(TransformServer).GetErpRole(ctx, in)
  1907. }
  1908. info := &grpc.UnaryServerInfo{
  1909. Server: srv,
  1910. FullMethod: "/transform.Transform/GetErpRole",
  1911. }
  1912. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1913. return srv.(TransformServer).GetErpRole(ctx, req.(*GetErpRoleReq))
  1914. }
  1915. return interceptor(ctx, in, info, handler)
  1916. }
  1917. func _Transform_GetErpSchool_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1918. in := new(Empty)
  1919. if err := dec(in); err != nil {
  1920. return nil, err
  1921. }
  1922. if interceptor == nil {
  1923. return srv.(TransformServer).GetErpSchool(ctx, in)
  1924. }
  1925. info := &grpc.UnaryServerInfo{
  1926. Server: srv,
  1927. FullMethod: "/transform.Transform/GetErpSchool",
  1928. }
  1929. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1930. return srv.(TransformServer).GetErpSchool(ctx, req.(*Empty))
  1931. }
  1932. return interceptor(ctx, in, info, handler)
  1933. }
  1934. func _Transform_GetErpActive_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
  1935. in := new(GetErpActiveReq)
  1936. if err := dec(in); err != nil {
  1937. return nil, err
  1938. }
  1939. if interceptor == nil {
  1940. return srv.(TransformServer).GetErpActive(ctx, in)
  1941. }
  1942. info := &grpc.UnaryServerInfo{
  1943. Server: srv,
  1944. FullMethod: "/transform.Transform/GetErpActive",
  1945. }
  1946. handler := func(ctx context.Context, req interface{}) (interface{}, error) {
  1947. return srv.(TransformServer).GetErpActive(ctx, req.(*GetErpActiveReq))
  1948. }
  1949. return interceptor(ctx, in, info, handler)
  1950. }
  1951. var _Transform_serviceDesc = grpc.ServiceDesc{
  1952. ServiceName: "transform.Transform",
  1953. HandlerType: (*TransformServer)(nil),
  1954. Methods: []grpc.MethodDesc{
  1955. {
  1956. MethodName: "GetUser",
  1957. Handler: _Transform_GetUser_Handler,
  1958. },
  1959. {
  1960. MethodName: "ParseToken",
  1961. Handler: _Transform_ParseToken_Handler,
  1962. },
  1963. {
  1964. MethodName: "GetErpCityTree",
  1965. Handler: _Transform_GetErpCityTree_Handler,
  1966. },
  1967. {
  1968. MethodName: "LoadOptionset",
  1969. Handler: _Transform_LoadOptionset_Handler,
  1970. },
  1971. {
  1972. MethodName: "GetSchoolIds",
  1973. Handler: _Transform_GetSchoolIds_Handler,
  1974. },
  1975. {
  1976. MethodName: "GetCityIds",
  1977. Handler: _Transform_GetCityIds_Handler,
  1978. },
  1979. {
  1980. MethodName: "PostExcelLog",
  1981. Handler: _Transform_PostExcelLog_Handler,
  1982. },
  1983. {
  1984. MethodName: "GetErpOptionset",
  1985. Handler: _Transform_GetErpOptionset_Handler,
  1986. },
  1987. {
  1988. MethodName: "GetDataPermission",
  1989. Handler: _Transform_GetDataPermission_Handler,
  1990. },
  1991. {
  1992. MethodName: "GetErpMktNetWorkDetailTree",
  1993. Handler: _Transform_GetErpMktNetWorkDetailTree_Handler,
  1994. },
  1995. {
  1996. MethodName: "GetErpOrganSchPerByUserId",
  1997. Handler: _Transform_GetErpOrganSchPerByUserId_Handler,
  1998. },
  1999. {
  2000. MethodName: "GetErpRole",
  2001. Handler: _Transform_GetErpRole_Handler,
  2002. },
  2003. {
  2004. MethodName: "GetErpSchool",
  2005. Handler: _Transform_GetErpSchool_Handler,
  2006. },
  2007. {
  2008. MethodName: "GetErpActive",
  2009. Handler: _Transform_GetErpActive_Handler,
  2010. },
  2011. },
  2012. Streams: []grpc.StreamDesc{},
  2013. Metadata: "transform.proto",
  2014. }