userCenter.pb.go 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.27.1
  4. // protoc v3.19.4
  5. // source: userCenter.proto
  6. package pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. //机构认证 入参
  20. type EntAuthReq struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //机构/企业名称
  25. CreditCode string `protobuf:"bytes,2,opt,name=creditCode,proto3" json:"creditCode,omitempty"` //统一社会信用代码
  26. AreaNumber string `protobuf:"bytes,3,opt,name=areaNumber,proto3" json:"areaNumber,omitempty"` //省市(行政区划代码)
  27. Business string `protobuf:"bytes,4,opt,name=business,proto3" json:"business,omitempty"` //营业执照
  28. OfficialLetter string `protobuf:"bytes,5,opt,name=officialLetter,proto3" json:"officialLetter,omitempty"` //认证公函
  29. OrganizationType string `protobuf:"bytes,6,opt,name=organizationType,proto3" json:"organizationType,omitempty"` //机构类型 1投标企业 2招标采购单位 3厂商 4招标代理机构 5经销商 6服务提供商 7其他
  30. ComPanyType string `protobuf:"bytes,7,opt,name=comPanyType,proto3" json:"comPanyType,omitempty"` //机构性质 1企业 2党政机关事业单位及其他
  31. AuthName string `protobuf:"bytes,8,opt,name=authName,proto3" json:"authName,omitempty"` //联系人姓名
  32. AuthPhone string `protobuf:"bytes,9,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
  33. RegPhone string `protobuf:"bytes,10,opt,name=regPhone,proto3" json:"regPhone,omitempty"` //注册手机号
  34. EntId string `protobuf:"bytes,11,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
  35. }
  36. func (x *EntAuthReq) Reset() {
  37. *x = EntAuthReq{}
  38. if protoimpl.UnsafeEnabled {
  39. mi := &file_userCenter_proto_msgTypes[0]
  40. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  41. ms.StoreMessageInfo(mi)
  42. }
  43. }
  44. func (x *EntAuthReq) String() string {
  45. return protoimpl.X.MessageStringOf(x)
  46. }
  47. func (*EntAuthReq) ProtoMessage() {}
  48. func (x *EntAuthReq) ProtoReflect() protoreflect.Message {
  49. mi := &file_userCenter_proto_msgTypes[0]
  50. if protoimpl.UnsafeEnabled && x != nil {
  51. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  52. if ms.LoadMessageInfo() == nil {
  53. ms.StoreMessageInfo(mi)
  54. }
  55. return ms
  56. }
  57. return mi.MessageOf(x)
  58. }
  59. // Deprecated: Use EntAuthReq.ProtoReflect.Descriptor instead.
  60. func (*EntAuthReq) Descriptor() ([]byte, []int) {
  61. return file_userCenter_proto_rawDescGZIP(), []int{0}
  62. }
  63. func (x *EntAuthReq) GetName() string {
  64. if x != nil {
  65. return x.Name
  66. }
  67. return ""
  68. }
  69. func (x *EntAuthReq) GetCreditCode() string {
  70. if x != nil {
  71. return x.CreditCode
  72. }
  73. return ""
  74. }
  75. func (x *EntAuthReq) GetAreaNumber() string {
  76. if x != nil {
  77. return x.AreaNumber
  78. }
  79. return ""
  80. }
  81. func (x *EntAuthReq) GetBusiness() string {
  82. if x != nil {
  83. return x.Business
  84. }
  85. return ""
  86. }
  87. func (x *EntAuthReq) GetOfficialLetter() string {
  88. if x != nil {
  89. return x.OfficialLetter
  90. }
  91. return ""
  92. }
  93. func (x *EntAuthReq) GetOrganizationType() string {
  94. if x != nil {
  95. return x.OrganizationType
  96. }
  97. return ""
  98. }
  99. func (x *EntAuthReq) GetComPanyType() string {
  100. if x != nil {
  101. return x.ComPanyType
  102. }
  103. return ""
  104. }
  105. func (x *EntAuthReq) GetAuthName() string {
  106. if x != nil {
  107. return x.AuthName
  108. }
  109. return ""
  110. }
  111. func (x *EntAuthReq) GetAuthPhone() string {
  112. if x != nil {
  113. return x.AuthPhone
  114. }
  115. return ""
  116. }
  117. func (x *EntAuthReq) GetRegPhone() string {
  118. if x != nil {
  119. return x.RegPhone
  120. }
  121. return ""
  122. }
  123. func (x *EntAuthReq) GetEntId() string {
  124. if x != nil {
  125. return x.EntId
  126. }
  127. return ""
  128. }
  129. //机构认证出参
  130. type EntAuthResp struct {
  131. state protoimpl.MessageState
  132. sizeCache protoimpl.SizeCache
  133. unknownFields protoimpl.UnknownFields
  134. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  135. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  136. Data *EntAuthData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  137. }
  138. func (x *EntAuthResp) Reset() {
  139. *x = EntAuthResp{}
  140. if protoimpl.UnsafeEnabled {
  141. mi := &file_userCenter_proto_msgTypes[1]
  142. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  143. ms.StoreMessageInfo(mi)
  144. }
  145. }
  146. func (x *EntAuthResp) String() string {
  147. return protoimpl.X.MessageStringOf(x)
  148. }
  149. func (*EntAuthResp) ProtoMessage() {}
  150. func (x *EntAuthResp) ProtoReflect() protoreflect.Message {
  151. mi := &file_userCenter_proto_msgTypes[1]
  152. if protoimpl.UnsafeEnabled && x != nil {
  153. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  154. if ms.LoadMessageInfo() == nil {
  155. ms.StoreMessageInfo(mi)
  156. }
  157. return ms
  158. }
  159. return mi.MessageOf(x)
  160. }
  161. // Deprecated: Use EntAuthResp.ProtoReflect.Descriptor instead.
  162. func (*EntAuthResp) Descriptor() ([]byte, []int) {
  163. return file_userCenter_proto_rawDescGZIP(), []int{1}
  164. }
  165. func (x *EntAuthResp) GetErrorCode() int64 {
  166. if x != nil {
  167. return x.ErrorCode
  168. }
  169. return 0
  170. }
  171. func (x *EntAuthResp) GetErrorMsg() string {
  172. if x != nil {
  173. return x.ErrorMsg
  174. }
  175. return ""
  176. }
  177. func (x *EntAuthResp) GetData() *EntAuthData {
  178. if x != nil {
  179. return x.Data
  180. }
  181. return nil
  182. }
  183. //机构认证出参
  184. type EntAuthData struct {
  185. state protoimpl.MessageState
  186. sizeCache protoimpl.SizeCache
  187. unknownFields protoimpl.UnknownFields
  188. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  189. }
  190. func (x *EntAuthData) Reset() {
  191. *x = EntAuthData{}
  192. if protoimpl.UnsafeEnabled {
  193. mi := &file_userCenter_proto_msgTypes[2]
  194. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  195. ms.StoreMessageInfo(mi)
  196. }
  197. }
  198. func (x *EntAuthData) String() string {
  199. return protoimpl.X.MessageStringOf(x)
  200. }
  201. func (*EntAuthData) ProtoMessage() {}
  202. func (x *EntAuthData) ProtoReflect() protoreflect.Message {
  203. mi := &file_userCenter_proto_msgTypes[2]
  204. if protoimpl.UnsafeEnabled && x != nil {
  205. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  206. if ms.LoadMessageInfo() == nil {
  207. ms.StoreMessageInfo(mi)
  208. }
  209. return ms
  210. }
  211. return mi.MessageOf(x)
  212. }
  213. // Deprecated: Use EntAuthData.ProtoReflect.Descriptor instead.
  214. func (*EntAuthData) Descriptor() ([]byte, []int) {
  215. return file_userCenter_proto_rawDescGZIP(), []int{2}
  216. }
  217. func (x *EntAuthData) GetStatus() int64 {
  218. if x != nil {
  219. return x.Status
  220. }
  221. return 0
  222. }
  223. //机构审核入参
  224. type ExamineReq struct {
  225. state protoimpl.MessageState
  226. sizeCache protoimpl.SizeCache
  227. unknownFields protoimpl.UnknownFields
  228. EntId string `protobuf:"bytes,1,opt,name=EntId,proto3" json:"EntId,omitempty"` //企业id
  229. AuthType string `protobuf:"bytes,2,opt,name=AuthType,proto3" json:"AuthType,omitempty"` //审核状态 2审核通过 3审核不通过
  230. Reason string `protobuf:"bytes,3,opt,name=Reason,proto3" json:"Reason,omitempty"` //不通过原因
  231. AuditUser string `protobuf:"bytes,4,opt,name=AuditUser,proto3" json:"AuditUser,omitempty"` //审核人
  232. ExamineId string `protobuf:"bytes,5,opt,name=ExamineId,proto3" json:"ExamineId,omitempty"` //审核id 认证记录表主键id
  233. }
  234. func (x *ExamineReq) Reset() {
  235. *x = ExamineReq{}
  236. if protoimpl.UnsafeEnabled {
  237. mi := &file_userCenter_proto_msgTypes[3]
  238. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  239. ms.StoreMessageInfo(mi)
  240. }
  241. }
  242. func (x *ExamineReq) String() string {
  243. return protoimpl.X.MessageStringOf(x)
  244. }
  245. func (*ExamineReq) ProtoMessage() {}
  246. func (x *ExamineReq) ProtoReflect() protoreflect.Message {
  247. mi := &file_userCenter_proto_msgTypes[3]
  248. if protoimpl.UnsafeEnabled && x != nil {
  249. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  250. if ms.LoadMessageInfo() == nil {
  251. ms.StoreMessageInfo(mi)
  252. }
  253. return ms
  254. }
  255. return mi.MessageOf(x)
  256. }
  257. // Deprecated: Use ExamineReq.ProtoReflect.Descriptor instead.
  258. func (*ExamineReq) Descriptor() ([]byte, []int) {
  259. return file_userCenter_proto_rawDescGZIP(), []int{3}
  260. }
  261. func (x *ExamineReq) GetEntId() string {
  262. if x != nil {
  263. return x.EntId
  264. }
  265. return ""
  266. }
  267. func (x *ExamineReq) GetAuthType() string {
  268. if x != nil {
  269. return x.AuthType
  270. }
  271. return ""
  272. }
  273. func (x *ExamineReq) GetReason() string {
  274. if x != nil {
  275. return x.Reason
  276. }
  277. return ""
  278. }
  279. func (x *ExamineReq) GetAuditUser() string {
  280. if x != nil {
  281. return x.AuditUser
  282. }
  283. return ""
  284. }
  285. func (x *ExamineReq) GetExamineId() string {
  286. if x != nil {
  287. return x.ExamineId
  288. }
  289. return ""
  290. }
  291. //机构审核出参
  292. type ExamineResp struct {
  293. state protoimpl.MessageState
  294. sizeCache protoimpl.SizeCache
  295. unknownFields protoimpl.UnknownFields
  296. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  297. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  298. Data *ExamineResp_ExamineData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  299. }
  300. func (x *ExamineResp) Reset() {
  301. *x = ExamineResp{}
  302. if protoimpl.UnsafeEnabled {
  303. mi := &file_userCenter_proto_msgTypes[4]
  304. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  305. ms.StoreMessageInfo(mi)
  306. }
  307. }
  308. func (x *ExamineResp) String() string {
  309. return protoimpl.X.MessageStringOf(x)
  310. }
  311. func (*ExamineResp) ProtoMessage() {}
  312. func (x *ExamineResp) ProtoReflect() protoreflect.Message {
  313. mi := &file_userCenter_proto_msgTypes[4]
  314. if protoimpl.UnsafeEnabled && x != nil {
  315. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  316. if ms.LoadMessageInfo() == nil {
  317. ms.StoreMessageInfo(mi)
  318. }
  319. return ms
  320. }
  321. return mi.MessageOf(x)
  322. }
  323. // Deprecated: Use ExamineResp.ProtoReflect.Descriptor instead.
  324. func (*ExamineResp) Descriptor() ([]byte, []int) {
  325. return file_userCenter_proto_rawDescGZIP(), []int{4}
  326. }
  327. func (x *ExamineResp) GetErrorCode() int64 {
  328. if x != nil {
  329. return x.ErrorCode
  330. }
  331. return 0
  332. }
  333. func (x *ExamineResp) GetErrorMsg() string {
  334. if x != nil {
  335. return x.ErrorMsg
  336. }
  337. return ""
  338. }
  339. func (x *ExamineResp) GetData() *ExamineResp_ExamineData {
  340. if x != nil {
  341. return x.Data
  342. }
  343. return nil
  344. }
  345. //企业列表入参
  346. type EntListReq struct {
  347. state protoimpl.MessageState
  348. sizeCache protoimpl.SizeCache
  349. unknownFields protoimpl.UnknownFields
  350. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //企业名称
  351. PageNum string `protobuf:"bytes,2,opt,name=pageNum,proto3" json:"pageNum,omitempty"` //页码,不传默认第一页 第一页为0
  352. PageSize string `protobuf:"bytes,3,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //每页显示条数,不传默认为10
  353. CreditCode string `protobuf:"bytes,4,opt,name=creditCode,proto3" json:"creditCode,omitempty"` //统一社会信用代码
  354. CreateStartTime string `protobuf:"bytes,5,opt,name=createStartTime,proto3" json:"createStartTime,omitempty"` //创建开始时间戳
  355. CreateEndTime string `protobuf:"bytes,6,opt,name=createEndTime,proto3" json:"createEndTime,omitempty"` //创建结束时间戳
  356. AuthStatus string `protobuf:"bytes,7,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //认证状态 0未认证 1已认证
  357. ValidStartTime string `protobuf:"bytes,8,opt,name=validStartTime,proto3" json:"validStartTime,omitempty"` //有效截至开始时间戳
  358. ValidEndTime string `protobuf:"bytes,9,opt,name=validEndTime,proto3" json:"validEndTime,omitempty"` //有效截止时间戳
  359. FrozenStatus string `protobuf:"bytes,10,opt,name=frozenStatus,proto3" json:"frozenStatus,omitempty"` //冻结状态 1正常 0冻结
  360. RegPhone string `protobuf:"bytes,11,opt,name=regPhone,proto3" json:"regPhone,omitempty"` //注册人手机号 即管理员手机号
  361. AuthPhone string `protobuf:"bytes,12,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
  362. }
  363. func (x *EntListReq) Reset() {
  364. *x = EntListReq{}
  365. if protoimpl.UnsafeEnabled {
  366. mi := &file_userCenter_proto_msgTypes[5]
  367. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  368. ms.StoreMessageInfo(mi)
  369. }
  370. }
  371. func (x *EntListReq) String() string {
  372. return protoimpl.X.MessageStringOf(x)
  373. }
  374. func (*EntListReq) ProtoMessage() {}
  375. func (x *EntListReq) ProtoReflect() protoreflect.Message {
  376. mi := &file_userCenter_proto_msgTypes[5]
  377. if protoimpl.UnsafeEnabled && x != nil {
  378. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  379. if ms.LoadMessageInfo() == nil {
  380. ms.StoreMessageInfo(mi)
  381. }
  382. return ms
  383. }
  384. return mi.MessageOf(x)
  385. }
  386. // Deprecated: Use EntListReq.ProtoReflect.Descriptor instead.
  387. func (*EntListReq) Descriptor() ([]byte, []int) {
  388. return file_userCenter_proto_rawDescGZIP(), []int{5}
  389. }
  390. func (x *EntListReq) GetName() string {
  391. if x != nil {
  392. return x.Name
  393. }
  394. return ""
  395. }
  396. func (x *EntListReq) GetPageNum() string {
  397. if x != nil {
  398. return x.PageNum
  399. }
  400. return ""
  401. }
  402. func (x *EntListReq) GetPageSize() string {
  403. if x != nil {
  404. return x.PageSize
  405. }
  406. return ""
  407. }
  408. func (x *EntListReq) GetCreditCode() string {
  409. if x != nil {
  410. return x.CreditCode
  411. }
  412. return ""
  413. }
  414. func (x *EntListReq) GetCreateStartTime() string {
  415. if x != nil {
  416. return x.CreateStartTime
  417. }
  418. return ""
  419. }
  420. func (x *EntListReq) GetCreateEndTime() string {
  421. if x != nil {
  422. return x.CreateEndTime
  423. }
  424. return ""
  425. }
  426. func (x *EntListReq) GetAuthStatus() string {
  427. if x != nil {
  428. return x.AuthStatus
  429. }
  430. return ""
  431. }
  432. func (x *EntListReq) GetValidStartTime() string {
  433. if x != nil {
  434. return x.ValidStartTime
  435. }
  436. return ""
  437. }
  438. func (x *EntListReq) GetValidEndTime() string {
  439. if x != nil {
  440. return x.ValidEndTime
  441. }
  442. return ""
  443. }
  444. func (x *EntListReq) GetFrozenStatus() string {
  445. if x != nil {
  446. return x.FrozenStatus
  447. }
  448. return ""
  449. }
  450. func (x *EntListReq) GetRegPhone() string {
  451. if x != nil {
  452. return x.RegPhone
  453. }
  454. return ""
  455. }
  456. func (x *EntListReq) GetAuthPhone() string {
  457. if x != nil {
  458. return x.AuthPhone
  459. }
  460. return ""
  461. }
  462. //企业列表出参
  463. type EntListResp struct {
  464. state protoimpl.MessageState
  465. sizeCache protoimpl.SizeCache
  466. unknownFields protoimpl.UnknownFields
  467. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  468. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  469. Data *EntData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //列表
  470. }
  471. func (x *EntListResp) Reset() {
  472. *x = EntListResp{}
  473. if protoimpl.UnsafeEnabled {
  474. mi := &file_userCenter_proto_msgTypes[6]
  475. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  476. ms.StoreMessageInfo(mi)
  477. }
  478. }
  479. func (x *EntListResp) String() string {
  480. return protoimpl.X.MessageStringOf(x)
  481. }
  482. func (*EntListResp) ProtoMessage() {}
  483. func (x *EntListResp) ProtoReflect() protoreflect.Message {
  484. mi := &file_userCenter_proto_msgTypes[6]
  485. if protoimpl.UnsafeEnabled && x != nil {
  486. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  487. if ms.LoadMessageInfo() == nil {
  488. ms.StoreMessageInfo(mi)
  489. }
  490. return ms
  491. }
  492. return mi.MessageOf(x)
  493. }
  494. // Deprecated: Use EntListResp.ProtoReflect.Descriptor instead.
  495. func (*EntListResp) Descriptor() ([]byte, []int) {
  496. return file_userCenter_proto_rawDescGZIP(), []int{6}
  497. }
  498. func (x *EntListResp) GetErrorCode() int64 {
  499. if x != nil {
  500. return x.ErrorCode
  501. }
  502. return 0
  503. }
  504. func (x *EntListResp) GetErrorMsg() string {
  505. if x != nil {
  506. return x.ErrorMsg
  507. }
  508. return ""
  509. }
  510. func (x *EntListResp) GetData() *EntData {
  511. if x != nil {
  512. return x.Data
  513. }
  514. return nil
  515. }
  516. type EntData struct {
  517. state protoimpl.MessageState
  518. sizeCache protoimpl.SizeCache
  519. unknownFields protoimpl.UnknownFields
  520. Count int64 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
  521. PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  522. List []*EntList `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
  523. }
  524. func (x *EntData) Reset() {
  525. *x = EntData{}
  526. if protoimpl.UnsafeEnabled {
  527. mi := &file_userCenter_proto_msgTypes[7]
  528. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  529. ms.StoreMessageInfo(mi)
  530. }
  531. }
  532. func (x *EntData) String() string {
  533. return protoimpl.X.MessageStringOf(x)
  534. }
  535. func (*EntData) ProtoMessage() {}
  536. func (x *EntData) ProtoReflect() protoreflect.Message {
  537. mi := &file_userCenter_proto_msgTypes[7]
  538. if protoimpl.UnsafeEnabled && x != nil {
  539. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  540. if ms.LoadMessageInfo() == nil {
  541. ms.StoreMessageInfo(mi)
  542. }
  543. return ms
  544. }
  545. return mi.MessageOf(x)
  546. }
  547. // Deprecated: Use EntData.ProtoReflect.Descriptor instead.
  548. func (*EntData) Descriptor() ([]byte, []int) {
  549. return file_userCenter_proto_rawDescGZIP(), []int{7}
  550. }
  551. func (x *EntData) GetCount() int64 {
  552. if x != nil {
  553. return x.Count
  554. }
  555. return 0
  556. }
  557. func (x *EntData) GetPageSize() int64 {
  558. if x != nil {
  559. return x.PageSize
  560. }
  561. return 0
  562. }
  563. func (x *EntData) GetList() []*EntList {
  564. if x != nil {
  565. return x.List
  566. }
  567. return nil
  568. }
  569. type EntList struct {
  570. state protoimpl.MessageState
  571. sizeCache protoimpl.SizeCache
  572. unknownFields protoimpl.UnknownFields
  573. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` //机构id
  574. ComPanyType int64 `protobuf:"varint,2,opt,name=comPanyType,proto3" json:"comPanyType,omitempty"` // 机构性质 1企业 2党政机关事业单位及其他
  575. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` //机构名称
  576. OrganizationType int64 `protobuf:"varint,4,opt,name=organizationType,proto3" json:"organizationType,omitempty"` //机构类型 1企业 2党政机关事业单位及其他
  577. Createtime string `protobuf:"bytes,5,opt,name=createtime,proto3" json:"createtime,omitempty"` //创建时间
  578. ValidTime string `protobuf:"bytes,6,opt,name=validTime,proto3" json:"validTime,omitempty"` //有效截至日期
  579. AuthStatus int64 `protobuf:"varint,7,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //认证状态
  580. FrozenStatus int64 `protobuf:"varint,8,opt,name=frozenStatus,proto3" json:"frozenStatus,omitempty"` //冻结状态 1正常 0冻结
  581. }
  582. func (x *EntList) Reset() {
  583. *x = EntList{}
  584. if protoimpl.UnsafeEnabled {
  585. mi := &file_userCenter_proto_msgTypes[8]
  586. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  587. ms.StoreMessageInfo(mi)
  588. }
  589. }
  590. func (x *EntList) String() string {
  591. return protoimpl.X.MessageStringOf(x)
  592. }
  593. func (*EntList) ProtoMessage() {}
  594. func (x *EntList) ProtoReflect() protoreflect.Message {
  595. mi := &file_userCenter_proto_msgTypes[8]
  596. if protoimpl.UnsafeEnabled && x != nil {
  597. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  598. if ms.LoadMessageInfo() == nil {
  599. ms.StoreMessageInfo(mi)
  600. }
  601. return ms
  602. }
  603. return mi.MessageOf(x)
  604. }
  605. // Deprecated: Use EntList.ProtoReflect.Descriptor instead.
  606. func (*EntList) Descriptor() ([]byte, []int) {
  607. return file_userCenter_proto_rawDescGZIP(), []int{8}
  608. }
  609. func (x *EntList) GetId() int64 {
  610. if x != nil {
  611. return x.Id
  612. }
  613. return 0
  614. }
  615. func (x *EntList) GetComPanyType() int64 {
  616. if x != nil {
  617. return x.ComPanyType
  618. }
  619. return 0
  620. }
  621. func (x *EntList) GetName() string {
  622. if x != nil {
  623. return x.Name
  624. }
  625. return ""
  626. }
  627. func (x *EntList) GetOrganizationType() int64 {
  628. if x != nil {
  629. return x.OrganizationType
  630. }
  631. return 0
  632. }
  633. func (x *EntList) GetCreatetime() string {
  634. if x != nil {
  635. return x.Createtime
  636. }
  637. return ""
  638. }
  639. func (x *EntList) GetValidTime() string {
  640. if x != nil {
  641. return x.ValidTime
  642. }
  643. return ""
  644. }
  645. func (x *EntList) GetAuthStatus() int64 {
  646. if x != nil {
  647. return x.AuthStatus
  648. }
  649. return 0
  650. }
  651. func (x *EntList) GetFrozenStatus() int64 {
  652. if x != nil {
  653. return x.FrozenStatus
  654. }
  655. return 0
  656. }
  657. //审核列表入参
  658. type ExamineListReq struct {
  659. state protoimpl.MessageState
  660. sizeCache protoimpl.SizeCache
  661. unknownFields protoimpl.UnknownFields
  662. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` //机构名称
  663. AuthPhone string `protobuf:"bytes,2,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
  664. RegPhone string `protobuf:"bytes,3,opt,name=regPhone,proto3" json:"regPhone,omitempty"` //注册人手机号
  665. AuthType string `protobuf:"bytes,4,opt,name=authType,proto3" json:"authType,omitempty"` //审核状态 1:待审核 2:审核通过 3:审核不通过
  666. AuthStartTime string `protobuf:"bytes,5,opt,name=authStartTime,proto3" json:"authStartTime,omitempty"` //申请开始时间
  667. AuthEndTime string `protobuf:"bytes,6,opt,name=authEndTime,proto3" json:"authEndTime,omitempty"` //申请结束时间
  668. PageNum string `protobuf:"bytes,7,opt,name=pageNum,proto3" json:"pageNum,omitempty"` //页码
  669. PageSize string `protobuf:"bytes,8,opt,name=pageSize,proto3" json:"pageSize,omitempty"` //每页展示条数
  670. }
  671. func (x *ExamineListReq) Reset() {
  672. *x = ExamineListReq{}
  673. if protoimpl.UnsafeEnabled {
  674. mi := &file_userCenter_proto_msgTypes[9]
  675. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  676. ms.StoreMessageInfo(mi)
  677. }
  678. }
  679. func (x *ExamineListReq) String() string {
  680. return protoimpl.X.MessageStringOf(x)
  681. }
  682. func (*ExamineListReq) ProtoMessage() {}
  683. func (x *ExamineListReq) ProtoReflect() protoreflect.Message {
  684. mi := &file_userCenter_proto_msgTypes[9]
  685. if protoimpl.UnsafeEnabled && x != nil {
  686. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  687. if ms.LoadMessageInfo() == nil {
  688. ms.StoreMessageInfo(mi)
  689. }
  690. return ms
  691. }
  692. return mi.MessageOf(x)
  693. }
  694. // Deprecated: Use ExamineListReq.ProtoReflect.Descriptor instead.
  695. func (*ExamineListReq) Descriptor() ([]byte, []int) {
  696. return file_userCenter_proto_rawDescGZIP(), []int{9}
  697. }
  698. func (x *ExamineListReq) GetName() string {
  699. if x != nil {
  700. return x.Name
  701. }
  702. return ""
  703. }
  704. func (x *ExamineListReq) GetAuthPhone() string {
  705. if x != nil {
  706. return x.AuthPhone
  707. }
  708. return ""
  709. }
  710. func (x *ExamineListReq) GetRegPhone() string {
  711. if x != nil {
  712. return x.RegPhone
  713. }
  714. return ""
  715. }
  716. func (x *ExamineListReq) GetAuthType() string {
  717. if x != nil {
  718. return x.AuthType
  719. }
  720. return ""
  721. }
  722. func (x *ExamineListReq) GetAuthStartTime() string {
  723. if x != nil {
  724. return x.AuthStartTime
  725. }
  726. return ""
  727. }
  728. func (x *ExamineListReq) GetAuthEndTime() string {
  729. if x != nil {
  730. return x.AuthEndTime
  731. }
  732. return ""
  733. }
  734. func (x *ExamineListReq) GetPageNum() string {
  735. if x != nil {
  736. return x.PageNum
  737. }
  738. return ""
  739. }
  740. func (x *ExamineListReq) GetPageSize() string {
  741. if x != nil {
  742. return x.PageSize
  743. }
  744. return ""
  745. }
  746. //审核列表出参
  747. type ExamineListResq struct {
  748. state protoimpl.MessageState
  749. sizeCache protoimpl.SizeCache
  750. unknownFields protoimpl.UnknownFields
  751. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  752. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  753. Data *ExamineListData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` //列表
  754. }
  755. func (x *ExamineListResq) Reset() {
  756. *x = ExamineListResq{}
  757. if protoimpl.UnsafeEnabled {
  758. mi := &file_userCenter_proto_msgTypes[10]
  759. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  760. ms.StoreMessageInfo(mi)
  761. }
  762. }
  763. func (x *ExamineListResq) String() string {
  764. return protoimpl.X.MessageStringOf(x)
  765. }
  766. func (*ExamineListResq) ProtoMessage() {}
  767. func (x *ExamineListResq) ProtoReflect() protoreflect.Message {
  768. mi := &file_userCenter_proto_msgTypes[10]
  769. if protoimpl.UnsafeEnabled && x != nil {
  770. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  771. if ms.LoadMessageInfo() == nil {
  772. ms.StoreMessageInfo(mi)
  773. }
  774. return ms
  775. }
  776. return mi.MessageOf(x)
  777. }
  778. // Deprecated: Use ExamineListResq.ProtoReflect.Descriptor instead.
  779. func (*ExamineListResq) Descriptor() ([]byte, []int) {
  780. return file_userCenter_proto_rawDescGZIP(), []int{10}
  781. }
  782. func (x *ExamineListResq) GetErrorCode() int64 {
  783. if x != nil {
  784. return x.ErrorCode
  785. }
  786. return 0
  787. }
  788. func (x *ExamineListResq) GetErrorMsg() string {
  789. if x != nil {
  790. return x.ErrorMsg
  791. }
  792. return ""
  793. }
  794. func (x *ExamineListResq) GetData() *ExamineListData {
  795. if x != nil {
  796. return x.Data
  797. }
  798. return nil
  799. }
  800. type ExamineListData struct {
  801. state protoimpl.MessageState
  802. sizeCache protoimpl.SizeCache
  803. unknownFields protoimpl.UnknownFields
  804. Count int64 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
  805. PageSize int64 `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
  806. List []*ExamineList `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
  807. }
  808. func (x *ExamineListData) Reset() {
  809. *x = ExamineListData{}
  810. if protoimpl.UnsafeEnabled {
  811. mi := &file_userCenter_proto_msgTypes[11]
  812. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  813. ms.StoreMessageInfo(mi)
  814. }
  815. }
  816. func (x *ExamineListData) String() string {
  817. return protoimpl.X.MessageStringOf(x)
  818. }
  819. func (*ExamineListData) ProtoMessage() {}
  820. func (x *ExamineListData) ProtoReflect() protoreflect.Message {
  821. mi := &file_userCenter_proto_msgTypes[11]
  822. if protoimpl.UnsafeEnabled && x != nil {
  823. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  824. if ms.LoadMessageInfo() == nil {
  825. ms.StoreMessageInfo(mi)
  826. }
  827. return ms
  828. }
  829. return mi.MessageOf(x)
  830. }
  831. // Deprecated: Use ExamineListData.ProtoReflect.Descriptor instead.
  832. func (*ExamineListData) Descriptor() ([]byte, []int) {
  833. return file_userCenter_proto_rawDescGZIP(), []int{11}
  834. }
  835. func (x *ExamineListData) GetCount() int64 {
  836. if x != nil {
  837. return x.Count
  838. }
  839. return 0
  840. }
  841. func (x *ExamineListData) GetPageSize() int64 {
  842. if x != nil {
  843. return x.PageSize
  844. }
  845. return 0
  846. }
  847. func (x *ExamineListData) GetList() []*ExamineList {
  848. if x != nil {
  849. return x.List
  850. }
  851. return nil
  852. }
  853. type ExamineList struct {
  854. state protoimpl.MessageState
  855. sizeCache protoimpl.SizeCache
  856. unknownFields protoimpl.UnknownFields
  857. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` //机构id
  858. EntId int64 `protobuf:"varint,2,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
  859. ComPanyType int64 `protobuf:"varint,3,opt,name=comPanyType,proto3" json:"comPanyType,omitempty"` // 机构性质 1企业 2党政机关事业单位及其他
  860. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"` //机构名称
  861. CreditCode string `protobuf:"bytes,5,opt,name=creditCode,proto3" json:"creditCode,omitempty"` //统一社会信用代码
  862. AuthPhone string `protobuf:"bytes,6,opt,name=authPhone,proto3" json:"authPhone,omitempty"` //联系人手机号
  863. ApplyTime string `protobuf:"bytes,7,opt,name=applyTime,proto3" json:"applyTime,omitempty"` //申请时间戳
  864. AuthType int64 `protobuf:"varint,8,opt,name=authType,proto3" json:"authType,omitempty"` //审核状态 1:待审核 2:审核通过 3:审核不通过
  865. }
  866. func (x *ExamineList) Reset() {
  867. *x = ExamineList{}
  868. if protoimpl.UnsafeEnabled {
  869. mi := &file_userCenter_proto_msgTypes[12]
  870. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  871. ms.StoreMessageInfo(mi)
  872. }
  873. }
  874. func (x *ExamineList) String() string {
  875. return protoimpl.X.MessageStringOf(x)
  876. }
  877. func (*ExamineList) ProtoMessage() {}
  878. func (x *ExamineList) ProtoReflect() protoreflect.Message {
  879. mi := &file_userCenter_proto_msgTypes[12]
  880. if protoimpl.UnsafeEnabled && x != nil {
  881. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  882. if ms.LoadMessageInfo() == nil {
  883. ms.StoreMessageInfo(mi)
  884. }
  885. return ms
  886. }
  887. return mi.MessageOf(x)
  888. }
  889. // Deprecated: Use ExamineList.ProtoReflect.Descriptor instead.
  890. func (*ExamineList) Descriptor() ([]byte, []int) {
  891. return file_userCenter_proto_rawDescGZIP(), []int{12}
  892. }
  893. func (x *ExamineList) GetId() int64 {
  894. if x != nil {
  895. return x.Id
  896. }
  897. return 0
  898. }
  899. func (x *ExamineList) GetEntId() int64 {
  900. if x != nil {
  901. return x.EntId
  902. }
  903. return 0
  904. }
  905. func (x *ExamineList) GetComPanyType() int64 {
  906. if x != nil {
  907. return x.ComPanyType
  908. }
  909. return 0
  910. }
  911. func (x *ExamineList) GetName() string {
  912. if x != nil {
  913. return x.Name
  914. }
  915. return ""
  916. }
  917. func (x *ExamineList) GetCreditCode() string {
  918. if x != nil {
  919. return x.CreditCode
  920. }
  921. return ""
  922. }
  923. func (x *ExamineList) GetAuthPhone() string {
  924. if x != nil {
  925. return x.AuthPhone
  926. }
  927. return ""
  928. }
  929. func (x *ExamineList) GetApplyTime() string {
  930. if x != nil {
  931. return x.ApplyTime
  932. }
  933. return ""
  934. }
  935. func (x *ExamineList) GetAuthType() int64 {
  936. if x != nil {
  937. return x.AuthType
  938. }
  939. return 0
  940. }
  941. //查看企业状态入参
  942. type CheckEntReq struct {
  943. state protoimpl.MessageState
  944. sizeCache protoimpl.SizeCache
  945. unknownFields protoimpl.UnknownFields
  946. EntId int64 `protobuf:"varint,1,opt,name=entId,proto3" json:"entId,omitempty"` //企业id
  947. }
  948. func (x *CheckEntReq) Reset() {
  949. *x = CheckEntReq{}
  950. if protoimpl.UnsafeEnabled {
  951. mi := &file_userCenter_proto_msgTypes[13]
  952. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  953. ms.StoreMessageInfo(mi)
  954. }
  955. }
  956. func (x *CheckEntReq) String() string {
  957. return protoimpl.X.MessageStringOf(x)
  958. }
  959. func (*CheckEntReq) ProtoMessage() {}
  960. func (x *CheckEntReq) ProtoReflect() protoreflect.Message {
  961. mi := &file_userCenter_proto_msgTypes[13]
  962. if protoimpl.UnsafeEnabled && x != nil {
  963. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  964. if ms.LoadMessageInfo() == nil {
  965. ms.StoreMessageInfo(mi)
  966. }
  967. return ms
  968. }
  969. return mi.MessageOf(x)
  970. }
  971. // Deprecated: Use CheckEntReq.ProtoReflect.Descriptor instead.
  972. func (*CheckEntReq) Descriptor() ([]byte, []int) {
  973. return file_userCenter_proto_rawDescGZIP(), []int{13}
  974. }
  975. func (x *CheckEntReq) GetEntId() int64 {
  976. if x != nil {
  977. return x.EntId
  978. }
  979. return 0
  980. }
  981. //查看企业状态出参
  982. type CheckEntResp struct {
  983. state protoimpl.MessageState
  984. sizeCache protoimpl.SizeCache
  985. unknownFields protoimpl.UnknownFields
  986. ErrorCode int64 `protobuf:"varint,1,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
  987. ErrorMsg string `protobuf:"bytes,2,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
  988. Data *CheckEntRespCheckData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
  989. }
  990. func (x *CheckEntResp) Reset() {
  991. *x = CheckEntResp{}
  992. if protoimpl.UnsafeEnabled {
  993. mi := &file_userCenter_proto_msgTypes[14]
  994. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  995. ms.StoreMessageInfo(mi)
  996. }
  997. }
  998. func (x *CheckEntResp) String() string {
  999. return protoimpl.X.MessageStringOf(x)
  1000. }
  1001. func (*CheckEntResp) ProtoMessage() {}
  1002. func (x *CheckEntResp) ProtoReflect() protoreflect.Message {
  1003. mi := &file_userCenter_proto_msgTypes[14]
  1004. if protoimpl.UnsafeEnabled && x != nil {
  1005. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1006. if ms.LoadMessageInfo() == nil {
  1007. ms.StoreMessageInfo(mi)
  1008. }
  1009. return ms
  1010. }
  1011. return mi.MessageOf(x)
  1012. }
  1013. // Deprecated: Use CheckEntResp.ProtoReflect.Descriptor instead.
  1014. func (*CheckEntResp) Descriptor() ([]byte, []int) {
  1015. return file_userCenter_proto_rawDescGZIP(), []int{14}
  1016. }
  1017. func (x *CheckEntResp) GetErrorCode() int64 {
  1018. if x != nil {
  1019. return x.ErrorCode
  1020. }
  1021. return 0
  1022. }
  1023. func (x *CheckEntResp) GetErrorMsg() string {
  1024. if x != nil {
  1025. return x.ErrorMsg
  1026. }
  1027. return ""
  1028. }
  1029. func (x *CheckEntResp) GetData() *CheckEntRespCheckData {
  1030. if x != nil {
  1031. return x.Data
  1032. }
  1033. return nil
  1034. }
  1035. type ExamineResp_ExamineData struct {
  1036. state protoimpl.MessageState
  1037. sizeCache protoimpl.SizeCache
  1038. unknownFields protoimpl.UnknownFields
  1039. Status int64 `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"`
  1040. }
  1041. func (x *ExamineResp_ExamineData) Reset() {
  1042. *x = ExamineResp_ExamineData{}
  1043. if protoimpl.UnsafeEnabled {
  1044. mi := &file_userCenter_proto_msgTypes[15]
  1045. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1046. ms.StoreMessageInfo(mi)
  1047. }
  1048. }
  1049. func (x *ExamineResp_ExamineData) String() string {
  1050. return protoimpl.X.MessageStringOf(x)
  1051. }
  1052. func (*ExamineResp_ExamineData) ProtoMessage() {}
  1053. func (x *ExamineResp_ExamineData) ProtoReflect() protoreflect.Message {
  1054. mi := &file_userCenter_proto_msgTypes[15]
  1055. if protoimpl.UnsafeEnabled && x != nil {
  1056. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1057. if ms.LoadMessageInfo() == nil {
  1058. ms.StoreMessageInfo(mi)
  1059. }
  1060. return ms
  1061. }
  1062. return mi.MessageOf(x)
  1063. }
  1064. // Deprecated: Use ExamineResp_ExamineData.ProtoReflect.Descriptor instead.
  1065. func (*ExamineResp_ExamineData) Descriptor() ([]byte, []int) {
  1066. return file_userCenter_proto_rawDescGZIP(), []int{4, 0}
  1067. }
  1068. func (x *ExamineResp_ExamineData) GetStatus() int64 {
  1069. if x != nil {
  1070. return x.Status
  1071. }
  1072. return 0
  1073. }
  1074. type CheckEntRespCheckData struct {
  1075. state protoimpl.MessageState
  1076. sizeCache protoimpl.SizeCache
  1077. unknownFields protoimpl.UnknownFields
  1078. AuthStatus int64 `protobuf:"varint,1,opt,name=authStatus,proto3" json:"authStatus,omitempty"` //企业是否认证 -1 未通过,0 未认证,1 已认证. -2 已到期
  1079. FrozenStatus int64 `protobuf:"varint,2,opt,name=frozenStatus,proto3" json:"frozenStatus,omitempty"` //冻结 1正常 0冻结
  1080. }
  1081. func (x *CheckEntRespCheckData) Reset() {
  1082. *x = CheckEntRespCheckData{}
  1083. if protoimpl.UnsafeEnabled {
  1084. mi := &file_userCenter_proto_msgTypes[16]
  1085. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1086. ms.StoreMessageInfo(mi)
  1087. }
  1088. }
  1089. func (x *CheckEntRespCheckData) String() string {
  1090. return protoimpl.X.MessageStringOf(x)
  1091. }
  1092. func (*CheckEntRespCheckData) ProtoMessage() {}
  1093. func (x *CheckEntRespCheckData) ProtoReflect() protoreflect.Message {
  1094. mi := &file_userCenter_proto_msgTypes[16]
  1095. if protoimpl.UnsafeEnabled && x != nil {
  1096. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1097. if ms.LoadMessageInfo() == nil {
  1098. ms.StoreMessageInfo(mi)
  1099. }
  1100. return ms
  1101. }
  1102. return mi.MessageOf(x)
  1103. }
  1104. // Deprecated: Use CheckEntRespCheckData.ProtoReflect.Descriptor instead.
  1105. func (*CheckEntRespCheckData) Descriptor() ([]byte, []int) {
  1106. return file_userCenter_proto_rawDescGZIP(), []int{14, 0}
  1107. }
  1108. func (x *CheckEntRespCheckData) GetAuthStatus() int64 {
  1109. if x != nil {
  1110. return x.AuthStatus
  1111. }
  1112. return 0
  1113. }
  1114. func (x *CheckEntRespCheckData) GetFrozenStatus() int64 {
  1115. if x != nil {
  1116. return x.FrozenStatus
  1117. }
  1118. return 0
  1119. }
  1120. var File_userCenter_proto protoreflect.FileDescriptor
  1121. var file_userCenter_proto_rawDesc = []byte{
  1122. 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f,
  1123. 0x74, 0x6f, 0x22, 0xde, 0x02, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65,
  1124. 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
  1125. 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x43,
  1126. 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69,
  1127. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e, 0x75, 0x6d,
  1128. 0x62, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x72, 0x65, 0x61, 0x4e,
  1129. 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
  1130. 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
  1131. 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63, 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74,
  1132. 0x74, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x66, 0x66, 0x69, 0x63,
  1133. 0x69, 0x61, 0x6c, 0x4c, 0x65, 0x74, 0x74, 0x65, 0x72, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67,
  1134. 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20,
  1135. 0x01, 0x28, 0x09, 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
  1136. 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79,
  1137. 0x54, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50,
  1138. 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x4e,
  1139. 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x4e,
  1140. 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  1141. 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e,
  1142. 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0a, 0x20,
  1143. 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x14, 0x0a,
  1144. 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6e,
  1145. 0x74, 0x49, 0x64, 0x22, 0x6b, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x52, 0x65,
  1146. 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  1147. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  1148. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  1149. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x20,
  1150. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45,
  1151. 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61,
  1152. 0x22, 0x25, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x44, 0x61, 0x74, 0x61, 0x12,
  1153. 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1154. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x92, 0x01, 0x0a, 0x0a, 0x45, 0x78, 0x61, 0x6d,
  1155. 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x18,
  1156. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x45, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08,
  1157. 0x41, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1158. 0x41, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x52, 0x65, 0x61, 0x73,
  1159. 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e,
  1160. 0x12, 0x1c, 0x0a, 0x09, 0x41, 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x18, 0x04, 0x20,
  1161. 0x01, 0x28, 0x09, 0x52, 0x09, 0x41, 0x75, 0x64, 0x69, 0x74, 0x55, 0x73, 0x65, 0x72, 0x12, 0x1c,
  1162. 0x0a, 0x09, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28,
  1163. 0x09, 0x52, 0x09, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x9e, 0x01, 0x0a,
  1164. 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a,
  1165. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1166. 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65,
  1167. 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1168. 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x2c, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
  1169. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
  1170. 0x52, 0x65, 0x73, 0x70, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x44, 0x61, 0x74, 0x61,
  1171. 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x1a, 0x25, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  1172. 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
  1173. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x90, 0x03,
  1174. 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04,
  1175. 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
  1176. 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28,
  1177. 0x09, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61,
  1178. 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61,
  1179. 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74,
  1180. 0x43, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x64,
  1181. 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x28, 0x0a, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
  1182. 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
  1183. 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65,
  1184. 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d,
  1185. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45,
  1186. 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74,
  1187. 0x61, 0x74, 0x75, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68,
  1188. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a, 0x0e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x53,
  1189. 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e,
  1190. 0x76, 0x61, 0x6c, 0x69, 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22,
  1191. 0x0a, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x09,
  1192. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69,
  1193. 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74,
  1194. 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e,
  1195. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f,
  1196. 0x6e, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67, 0x50, 0x68, 0x6f,
  1197. 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18,
  1198. 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65,
  1199. 0x22, 0x67, 0x0a, 0x0b, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x12,
  1200. 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20,
  1201. 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b,
  1202. 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28,
  1203. 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1c, 0x0a, 0x04, 0x64,
  1204. 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x44,
  1205. 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x59, 0x0a, 0x07, 0x45, 0x6e, 0x74,
  1206. 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20,
  1207. 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61,
  1208. 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x70, 0x61,
  1209. 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1c, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03,
  1210. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x08, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04,
  1211. 0x6c, 0x69, 0x73, 0x74, 0x22, 0xfd, 0x01, 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74,
  1212. 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64,
  1213. 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18,
  1214. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54, 0x79,
  1215. 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
  1216. 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69,
  1217. 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
  1218. 0x52, 0x10, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79,
  1219. 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x74, 0x69, 0x6d, 0x65,
  1220. 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x74, 0x69,
  1221. 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18,
  1222. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x54, 0x69, 0x6d, 0x65,
  1223. 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x07,
  1224. 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1225. 0x12, 0x22, 0x0a, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  1226. 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74,
  1227. 0x61, 0x74, 0x75, 0x73, 0x22, 0xf8, 0x01, 0x0a, 0x0e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
  1228. 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18,
  1229. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  1230. 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  1231. 0x61, 0x75, 0x74, 0x68, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x65, 0x67,
  1232. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x65, 0x67,
  1233. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70,
  1234. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70,
  1235. 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69,
  1236. 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74,
  1237. 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x61, 0x75, 0x74, 0x68, 0x45,
  1238. 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x75,
  1239. 0x74, 0x68, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x67,
  1240. 0x65, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65,
  1241. 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18,
  1242. 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x22,
  1243. 0x73, 0x0a, 0x0f, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  1244. 0x73, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65,
  1245. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
  1246. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
  1247. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x24,
  1248. 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x45,
  1249. 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04,
  1250. 0x64, 0x61, 0x74, 0x61, 0x22, 0x65, 0x0a, 0x0f, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c,
  1251. 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
  1252. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1a, 0x0a,
  1253. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
  1254. 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x20, 0x0a, 0x04, 0x6c, 0x69, 0x73,
  1255. 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  1256. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xe1, 0x01, 0x0a, 0x0b,
  1257. 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  1258. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65,
  1259. 0x6e, 0x74, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49,
  1260. 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54, 0x79, 0x70, 0x65,
  1261. 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x50, 0x61, 0x6e, 0x79, 0x54,
  1262. 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  1263. 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x64, 0x69,
  1264. 0x74, 0x43, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x72, 0x65,
  1265. 0x64, 0x69, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x50,
  1266. 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68,
  1267. 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x54, 0x69,
  1268. 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x70, 0x70, 0x6c, 0x79, 0x54,
  1269. 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x18,
  1270. 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x75, 0x74, 0x68, 0x54, 0x79, 0x70, 0x65, 0x22,
  1271. 0x23, 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12, 0x14,
  1272. 0x0a, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x65,
  1273. 0x6e, 0x74, 0x49, 0x64, 0x22, 0xc8, 0x01, 0x0a, 0x0c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e,
  1274. 0x74, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63,
  1275. 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72,
  1276. 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
  1277. 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
  1278. 0x67, 0x12, 0x2b, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1279. 0x17, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x2e, 0x63,
  1280. 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x1a, 0x4f,
  1281. 0x0a, 0x09, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x44, 0x61, 0x74, 0x61, 0x12, 0x1e, 0x0a, 0x0a, 0x61,
  1282. 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
  1283. 0x0a, 0x61, 0x75, 0x74, 0x68, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x22, 0x0a, 0x0c, 0x66,
  1284. 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
  1285. 0x03, 0x52, 0x0c, 0x66, 0x72, 0x6f, 0x7a, 0x65, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x32,
  1286. 0xdc, 0x01, 0x0a, 0x0a, 0x55, 0x73, 0x65, 0x72, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x12, 0x24,
  1287. 0x0a, 0x07, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x41,
  1288. 0x75, 0x74, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x41, 0x75, 0x74, 0x68,
  1289. 0x52, 0x65, 0x73, 0x70, 0x12, 0x27, 0x0a, 0x0a, 0x45, 0x6e, 0x74, 0x45, 0x78, 0x61, 0x6d, 0x69,
  1290. 0x6e, 0x65, 0x12, 0x0b, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x1a,
  1291. 0x0c, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x70, 0x12, 0x24, 0x0a,
  1292. 0x07, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0b, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69,
  1293. 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0c, 0x2e, 0x45, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52,
  1294. 0x65, 0x73, 0x70, 0x12, 0x30, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69,
  1295. 0x73, 0x74, 0x12, 0x0f, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74,
  1296. 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73,
  1297. 0x74, 0x52, 0x65, 0x73, 0x71, 0x12, 0x27, 0x0a, 0x08, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e,
  1298. 0x74, 0x12, 0x0c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x1a,
  1299. 0x0d, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x45, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06,
  1300. 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  1301. }
  1302. var (
  1303. file_userCenter_proto_rawDescOnce sync.Once
  1304. file_userCenter_proto_rawDescData = file_userCenter_proto_rawDesc
  1305. )
  1306. func file_userCenter_proto_rawDescGZIP() []byte {
  1307. file_userCenter_proto_rawDescOnce.Do(func() {
  1308. file_userCenter_proto_rawDescData = protoimpl.X.CompressGZIP(file_userCenter_proto_rawDescData)
  1309. })
  1310. return file_userCenter_proto_rawDescData
  1311. }
  1312. var file_userCenter_proto_msgTypes = make([]protoimpl.MessageInfo, 17)
  1313. var file_userCenter_proto_goTypes = []interface{}{
  1314. (*EntAuthReq)(nil), // 0: EntAuthReq
  1315. (*EntAuthResp)(nil), // 1: EntAuthResp
  1316. (*EntAuthData)(nil), // 2: EntAuthData
  1317. (*ExamineReq)(nil), // 3: ExamineReq
  1318. (*ExamineResp)(nil), // 4: ExamineResp
  1319. (*EntListReq)(nil), // 5: EntListReq
  1320. (*EntListResp)(nil), // 6: EntListResp
  1321. (*EntData)(nil), // 7: EntData
  1322. (*EntList)(nil), // 8: EntList
  1323. (*ExamineListReq)(nil), // 9: ExamineListReq
  1324. (*ExamineListResq)(nil), // 10: ExamineListResq
  1325. (*ExamineListData)(nil), // 11: ExamineListData
  1326. (*ExamineList)(nil), // 12: ExamineList
  1327. (*CheckEntReq)(nil), // 13: CheckEntReq
  1328. (*CheckEntResp)(nil), // 14: CheckEntResp
  1329. (*ExamineResp_ExamineData)(nil), // 15: ExamineResp.ExamineData
  1330. (*CheckEntRespCheckData)(nil), // 16: CheckEntResp.checkData
  1331. }
  1332. var file_userCenter_proto_depIdxs = []int32{
  1333. 2, // 0: EntAuthResp.data:type_name -> EntAuthData
  1334. 15, // 1: ExamineResp.data:type_name -> ExamineResp.ExamineData
  1335. 7, // 2: EntListResp.data:type_name -> EntData
  1336. 8, // 3: EntData.list:type_name -> EntList
  1337. 11, // 4: ExamineListResq.data:type_name -> ExamineListData
  1338. 12, // 5: ExamineListData.list:type_name -> ExamineList
  1339. 16, // 6: CheckEntResp.data:type_name -> CheckEntResp.checkData
  1340. 0, // 7: UserCenter.EntAuth:input_type -> EntAuthReq
  1341. 3, // 8: UserCenter.EntExamine:input_type -> ExamineReq
  1342. 5, // 9: UserCenter.EntList:input_type -> EntListReq
  1343. 9, // 10: UserCenter.ExamineList:input_type -> ExamineListReq
  1344. 13, // 11: UserCenter.CheckEnt:input_type -> CheckEntReq
  1345. 1, // 12: UserCenter.EntAuth:output_type -> EntAuthResp
  1346. 4, // 13: UserCenter.EntExamine:output_type -> ExamineResp
  1347. 6, // 14: UserCenter.EntList:output_type -> EntListResp
  1348. 10, // 15: UserCenter.ExamineList:output_type -> ExamineListResq
  1349. 14, // 16: UserCenter.CheckEnt:output_type -> CheckEntResp
  1350. 12, // [12:17] is the sub-list for method output_type
  1351. 7, // [7:12] is the sub-list for method input_type
  1352. 7, // [7:7] is the sub-list for extension type_name
  1353. 7, // [7:7] is the sub-list for extension extendee
  1354. 0, // [0:7] is the sub-list for field type_name
  1355. }
  1356. func init() { file_userCenter_proto_init() }
  1357. func file_userCenter_proto_init() {
  1358. if File_userCenter_proto != nil {
  1359. return
  1360. }
  1361. if !protoimpl.UnsafeEnabled {
  1362. file_userCenter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  1363. switch v := v.(*EntAuthReq); i {
  1364. case 0:
  1365. return &v.state
  1366. case 1:
  1367. return &v.sizeCache
  1368. case 2:
  1369. return &v.unknownFields
  1370. default:
  1371. return nil
  1372. }
  1373. }
  1374. file_userCenter_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  1375. switch v := v.(*EntAuthResp); i {
  1376. case 0:
  1377. return &v.state
  1378. case 1:
  1379. return &v.sizeCache
  1380. case 2:
  1381. return &v.unknownFields
  1382. default:
  1383. return nil
  1384. }
  1385. }
  1386. file_userCenter_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  1387. switch v := v.(*EntAuthData); i {
  1388. case 0:
  1389. return &v.state
  1390. case 1:
  1391. return &v.sizeCache
  1392. case 2:
  1393. return &v.unknownFields
  1394. default:
  1395. return nil
  1396. }
  1397. }
  1398. file_userCenter_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  1399. switch v := v.(*ExamineReq); i {
  1400. case 0:
  1401. return &v.state
  1402. case 1:
  1403. return &v.sizeCache
  1404. case 2:
  1405. return &v.unknownFields
  1406. default:
  1407. return nil
  1408. }
  1409. }
  1410. file_userCenter_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  1411. switch v := v.(*ExamineResp); i {
  1412. case 0:
  1413. return &v.state
  1414. case 1:
  1415. return &v.sizeCache
  1416. case 2:
  1417. return &v.unknownFields
  1418. default:
  1419. return nil
  1420. }
  1421. }
  1422. file_userCenter_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  1423. switch v := v.(*EntListReq); i {
  1424. case 0:
  1425. return &v.state
  1426. case 1:
  1427. return &v.sizeCache
  1428. case 2:
  1429. return &v.unknownFields
  1430. default:
  1431. return nil
  1432. }
  1433. }
  1434. file_userCenter_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  1435. switch v := v.(*EntListResp); i {
  1436. case 0:
  1437. return &v.state
  1438. case 1:
  1439. return &v.sizeCache
  1440. case 2:
  1441. return &v.unknownFields
  1442. default:
  1443. return nil
  1444. }
  1445. }
  1446. file_userCenter_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  1447. switch v := v.(*EntData); i {
  1448. case 0:
  1449. return &v.state
  1450. case 1:
  1451. return &v.sizeCache
  1452. case 2:
  1453. return &v.unknownFields
  1454. default:
  1455. return nil
  1456. }
  1457. }
  1458. file_userCenter_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  1459. switch v := v.(*EntList); i {
  1460. case 0:
  1461. return &v.state
  1462. case 1:
  1463. return &v.sizeCache
  1464. case 2:
  1465. return &v.unknownFields
  1466. default:
  1467. return nil
  1468. }
  1469. }
  1470. file_userCenter_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  1471. switch v := v.(*ExamineListReq); i {
  1472. case 0:
  1473. return &v.state
  1474. case 1:
  1475. return &v.sizeCache
  1476. case 2:
  1477. return &v.unknownFields
  1478. default:
  1479. return nil
  1480. }
  1481. }
  1482. file_userCenter_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  1483. switch v := v.(*ExamineListResq); i {
  1484. case 0:
  1485. return &v.state
  1486. case 1:
  1487. return &v.sizeCache
  1488. case 2:
  1489. return &v.unknownFields
  1490. default:
  1491. return nil
  1492. }
  1493. }
  1494. file_userCenter_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  1495. switch v := v.(*ExamineListData); i {
  1496. case 0:
  1497. return &v.state
  1498. case 1:
  1499. return &v.sizeCache
  1500. case 2:
  1501. return &v.unknownFields
  1502. default:
  1503. return nil
  1504. }
  1505. }
  1506. file_userCenter_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  1507. switch v := v.(*ExamineList); i {
  1508. case 0:
  1509. return &v.state
  1510. case 1:
  1511. return &v.sizeCache
  1512. case 2:
  1513. return &v.unknownFields
  1514. default:
  1515. return nil
  1516. }
  1517. }
  1518. file_userCenter_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  1519. switch v := v.(*CheckEntReq); i {
  1520. case 0:
  1521. return &v.state
  1522. case 1:
  1523. return &v.sizeCache
  1524. case 2:
  1525. return &v.unknownFields
  1526. default:
  1527. return nil
  1528. }
  1529. }
  1530. file_userCenter_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  1531. switch v := v.(*CheckEntResp); i {
  1532. case 0:
  1533. return &v.state
  1534. case 1:
  1535. return &v.sizeCache
  1536. case 2:
  1537. return &v.unknownFields
  1538. default:
  1539. return nil
  1540. }
  1541. }
  1542. file_userCenter_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  1543. switch v := v.(*ExamineResp_ExamineData); i {
  1544. case 0:
  1545. return &v.state
  1546. case 1:
  1547. return &v.sizeCache
  1548. case 2:
  1549. return &v.unknownFields
  1550. default:
  1551. return nil
  1552. }
  1553. }
  1554. file_userCenter_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  1555. switch v := v.(*CheckEntRespCheckData); i {
  1556. case 0:
  1557. return &v.state
  1558. case 1:
  1559. return &v.sizeCache
  1560. case 2:
  1561. return &v.unknownFields
  1562. default:
  1563. return nil
  1564. }
  1565. }
  1566. }
  1567. type x struct{}
  1568. out := protoimpl.TypeBuilder{
  1569. File: protoimpl.DescBuilder{
  1570. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1571. RawDescriptor: file_userCenter_proto_rawDesc,
  1572. NumEnums: 0,
  1573. NumMessages: 17,
  1574. NumExtensions: 0,
  1575. NumServices: 1,
  1576. },
  1577. GoTypes: file_userCenter_proto_goTypes,
  1578. DependencyIndexes: file_userCenter_proto_depIdxs,
  1579. MessageInfos: file_userCenter_proto_msgTypes,
  1580. }.Build()
  1581. File_userCenter_proto = out.File
  1582. file_userCenter_proto_rawDesc = nil
  1583. file_userCenter_proto_goTypes = nil
  1584. file_userCenter_proto_depIdxs = nil
  1585. }