lord.pb.go 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788
  1. // message结构的属性名请使用 驼峰小写字母开始
  2. // Code generated by protoc-gen-go. DO NOT EDIT.
  3. // versions:
  4. // protoc-gen-go v1.36.8
  5. // protoc v6.31.1
  6. // source: lord.proto
  7. package pb
  8. import (
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. unsafe "unsafe"
  14. )
  15. const (
  16. // Verify that this generated code is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  18. // Verify that runtime/protoimpl is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  20. )
  21. // 领主信息
  22. type Lord struct {
  23. state protoimpl.MessageState `protogen:"open.v1"`
  24. // 名称
  25. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  26. // 等级
  27. Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"`
  28. // 经验
  29. Exp int64 `protobuf:"varint,3,opt,name=exp,proto3" json:"exp,omitempty"`
  30. // 头像
  31. IconID int32 `protobuf:"varint,4,opt,name=iconID,proto3" json:"iconID,omitempty"`
  32. // 头像框
  33. FrameID int32 `protobuf:"varint,5,opt,name=frameID,proto3" json:"frameID,omitempty"`
  34. // 赛季ID
  35. SeasonID int32 `protobuf:"varint,10,opt,name=seasonID,proto3" json:"seasonID,omitempty"`
  36. unknownFields protoimpl.UnknownFields
  37. sizeCache protoimpl.SizeCache
  38. }
  39. func (x *Lord) Reset() {
  40. *x = Lord{}
  41. mi := &file_lord_proto_msgTypes[0]
  42. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  43. ms.StoreMessageInfo(mi)
  44. }
  45. func (x *Lord) String() string {
  46. return protoimpl.X.MessageStringOf(x)
  47. }
  48. func (*Lord) ProtoMessage() {}
  49. func (x *Lord) ProtoReflect() protoreflect.Message {
  50. mi := &file_lord_proto_msgTypes[0]
  51. if x != nil {
  52. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  53. if ms.LoadMessageInfo() == nil {
  54. ms.StoreMessageInfo(mi)
  55. }
  56. return ms
  57. }
  58. return mi.MessageOf(x)
  59. }
  60. // Deprecated: Use Lord.ProtoReflect.Descriptor instead.
  61. func (*Lord) Descriptor() ([]byte, []int) {
  62. return file_lord_proto_rawDescGZIP(), []int{0}
  63. }
  64. func (x *Lord) GetName() string {
  65. if x != nil {
  66. return x.Name
  67. }
  68. return ""
  69. }
  70. func (x *Lord) GetLevel() int32 {
  71. if x != nil {
  72. return x.Level
  73. }
  74. return 0
  75. }
  76. func (x *Lord) GetExp() int64 {
  77. if x != nil {
  78. return x.Exp
  79. }
  80. return 0
  81. }
  82. func (x *Lord) GetIconID() int32 {
  83. if x != nil {
  84. return x.IconID
  85. }
  86. return 0
  87. }
  88. func (x *Lord) GetFrameID() int32 {
  89. if x != nil {
  90. return x.FrameID
  91. }
  92. return 0
  93. }
  94. func (x *Lord) GetSeasonID() int32 {
  95. if x != nil {
  96. return x.SeasonID
  97. }
  98. return 0
  99. }
  100. // 玩家详情
  101. type LordDetail struct {
  102. state protoimpl.MessageState `protogen:"open.v1"`
  103. // 玩家Id
  104. PlayerID int64 `protobuf:"varint,1,opt,name=playerID,proto3" json:"playerID,omitempty"`
  105. // 玩家名称
  106. PlayerName string `protobuf:"bytes,2,opt,name=playerName,proto3" json:"playerName,omitempty"`
  107. // 玩家头像ID L-领主-外显表外显ID
  108. IconID int32 `protobuf:"varint,3,opt,name=iconID,proto3" json:"iconID,omitempty"`
  109. // 玩家头像框ID L-领主-外显表外显ID
  110. FrameID int32 `protobuf:"varint,4,opt,name=frameID,proto3" json:"frameID,omitempty"`
  111. // 背景ID L-领主-外显表外显ID
  112. BgID int32 `protobuf:"varint,5,opt,name=bgID,proto3" json:"bgID,omitempty"`
  113. // 个人简介
  114. Desc string `protobuf:"bytes,6,opt,name=desc,proto3" json:"desc,omitempty"`
  115. // 当前赛季
  116. Season int32 `protobuf:"varint,7,opt,name=season,proto3" json:"season,omitempty"`
  117. // 沙盘编号
  118. MapNodeID string `protobuf:"bytes,8,opt,name=mapNodeID,proto3" json:"mapNodeID,omitempty"`
  119. // 所处州
  120. Province int32 `protobuf:"varint,9,opt,name=province,proto3" json:"province,omitempty"`
  121. // 征战天数
  122. TotalLoginDays int32 `protobuf:"varint,10,opt,name=totalLoginDays,proto3" json:"totalLoginDays,omitempty"`
  123. // 霸业次数
  124. GloryCount int32 `protobuf:"varint,11,opt,name=gloryCount,proto3" json:"gloryCount,omitempty"`
  125. // 问鼎次数
  126. SupremacyCount int32 `protobuf:"varint,12,opt,name=supremacyCount,proto3" json:"supremacyCount,omitempty"`
  127. // 联盟信息
  128. League *LeaguePlayerJob `protobuf:"bytes,13,opt,name=league,proto3" json:"league,omitempty"`
  129. // 声望信息
  130. Prestige *PrestigeDetail `protobuf:"bytes,14,opt,name=prestige,proto3" json:"prestige,omitempty"`
  131. // 功勋信息
  132. Glory *GloryDetail `protobuf:"bytes,15,opt,name=glory,proto3" json:"glory,omitempty"`
  133. // 展示数据
  134. ShowDatas *LordShowDataList `protobuf:"bytes,16,opt,name=showDatas,proto3" json:"showDatas,omitempty"`
  135. // 玩家坐标
  136. Point *Point `protobuf:"bytes,17,opt,name=point,proto3" json:"point,omitempty"`
  137. unknownFields protoimpl.UnknownFields
  138. sizeCache protoimpl.SizeCache
  139. }
  140. func (x *LordDetail) Reset() {
  141. *x = LordDetail{}
  142. mi := &file_lord_proto_msgTypes[1]
  143. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  144. ms.StoreMessageInfo(mi)
  145. }
  146. func (x *LordDetail) String() string {
  147. return protoimpl.X.MessageStringOf(x)
  148. }
  149. func (*LordDetail) ProtoMessage() {}
  150. func (x *LordDetail) ProtoReflect() protoreflect.Message {
  151. mi := &file_lord_proto_msgTypes[1]
  152. if 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 LordDetail.ProtoReflect.Descriptor instead.
  162. func (*LordDetail) Descriptor() ([]byte, []int) {
  163. return file_lord_proto_rawDescGZIP(), []int{1}
  164. }
  165. func (x *LordDetail) GetPlayerID() int64 {
  166. if x != nil {
  167. return x.PlayerID
  168. }
  169. return 0
  170. }
  171. func (x *LordDetail) GetPlayerName() string {
  172. if x != nil {
  173. return x.PlayerName
  174. }
  175. return ""
  176. }
  177. func (x *LordDetail) GetIconID() int32 {
  178. if x != nil {
  179. return x.IconID
  180. }
  181. return 0
  182. }
  183. func (x *LordDetail) GetFrameID() int32 {
  184. if x != nil {
  185. return x.FrameID
  186. }
  187. return 0
  188. }
  189. func (x *LordDetail) GetBgID() int32 {
  190. if x != nil {
  191. return x.BgID
  192. }
  193. return 0
  194. }
  195. func (x *LordDetail) GetDesc() string {
  196. if x != nil {
  197. return x.Desc
  198. }
  199. return ""
  200. }
  201. func (x *LordDetail) GetSeason() int32 {
  202. if x != nil {
  203. return x.Season
  204. }
  205. return 0
  206. }
  207. func (x *LordDetail) GetMapNodeID() string {
  208. if x != nil {
  209. return x.MapNodeID
  210. }
  211. return ""
  212. }
  213. func (x *LordDetail) GetProvince() int32 {
  214. if x != nil {
  215. return x.Province
  216. }
  217. return 0
  218. }
  219. func (x *LordDetail) GetTotalLoginDays() int32 {
  220. if x != nil {
  221. return x.TotalLoginDays
  222. }
  223. return 0
  224. }
  225. func (x *LordDetail) GetGloryCount() int32 {
  226. if x != nil {
  227. return x.GloryCount
  228. }
  229. return 0
  230. }
  231. func (x *LordDetail) GetSupremacyCount() int32 {
  232. if x != nil {
  233. return x.SupremacyCount
  234. }
  235. return 0
  236. }
  237. func (x *LordDetail) GetLeague() *LeaguePlayerJob {
  238. if x != nil {
  239. return x.League
  240. }
  241. return nil
  242. }
  243. func (x *LordDetail) GetPrestige() *PrestigeDetail {
  244. if x != nil {
  245. return x.Prestige
  246. }
  247. return nil
  248. }
  249. func (x *LordDetail) GetGlory() *GloryDetail {
  250. if x != nil {
  251. return x.Glory
  252. }
  253. return nil
  254. }
  255. func (x *LordDetail) GetShowDatas() *LordShowDataList {
  256. if x != nil {
  257. return x.ShowDatas
  258. }
  259. return nil
  260. }
  261. func (x *LordDetail) GetPoint() *Point {
  262. if x != nil {
  263. return x.Point
  264. }
  265. return nil
  266. }
  267. // 声望详情
  268. type PrestigeDetail struct {
  269. state protoimpl.MessageState `protogen:"open.v1"`
  270. // 当前声望
  271. CurPrestige int32 `protobuf:"varint,14,opt,name=curPrestige,proto3" json:"curPrestige,omitempty"`
  272. // 当前声望排名
  273. CurPrestigeRank int32 `protobuf:"varint,15,opt,name=curPrestigeRank,proto3" json:"curPrestigeRank,omitempty"`
  274. // 最高声望
  275. MaxPrestige int32 `protobuf:"varint,16,opt,name=maxPrestige,proto3" json:"maxPrestige,omitempty"`
  276. // 最高声望排名
  277. MaxPrestigeRank int32 `protobuf:"varint,17,opt,name=maxPrestigeRank,proto3" json:"maxPrestigeRank,omitempty"`
  278. unknownFields protoimpl.UnknownFields
  279. sizeCache protoimpl.SizeCache
  280. }
  281. func (x *PrestigeDetail) Reset() {
  282. *x = PrestigeDetail{}
  283. mi := &file_lord_proto_msgTypes[2]
  284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  285. ms.StoreMessageInfo(mi)
  286. }
  287. func (x *PrestigeDetail) String() string {
  288. return protoimpl.X.MessageStringOf(x)
  289. }
  290. func (*PrestigeDetail) ProtoMessage() {}
  291. func (x *PrestigeDetail) ProtoReflect() protoreflect.Message {
  292. mi := &file_lord_proto_msgTypes[2]
  293. if x != nil {
  294. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  295. if ms.LoadMessageInfo() == nil {
  296. ms.StoreMessageInfo(mi)
  297. }
  298. return ms
  299. }
  300. return mi.MessageOf(x)
  301. }
  302. // Deprecated: Use PrestigeDetail.ProtoReflect.Descriptor instead.
  303. func (*PrestigeDetail) Descriptor() ([]byte, []int) {
  304. return file_lord_proto_rawDescGZIP(), []int{2}
  305. }
  306. func (x *PrestigeDetail) GetCurPrestige() int32 {
  307. if x != nil {
  308. return x.CurPrestige
  309. }
  310. return 0
  311. }
  312. func (x *PrestigeDetail) GetCurPrestigeRank() int32 {
  313. if x != nil {
  314. return x.CurPrestigeRank
  315. }
  316. return 0
  317. }
  318. func (x *PrestigeDetail) GetMaxPrestige() int32 {
  319. if x != nil {
  320. return x.MaxPrestige
  321. }
  322. return 0
  323. }
  324. func (x *PrestigeDetail) GetMaxPrestigeRank() int32 {
  325. if x != nil {
  326. return x.MaxPrestigeRank
  327. }
  328. return 0
  329. }
  330. // 功勋详情
  331. type GloryDetail struct {
  332. state protoimpl.MessageState `protogen:"open.v1"`
  333. // 当前功勋
  334. CurGlory int32 `protobuf:"varint,1,opt,name=curGlory,proto3" json:"curGlory,omitempty"`
  335. // 当前功勋排名
  336. CurGloryRank int32 `protobuf:"varint,2,opt,name=curGloryRank,proto3" json:"curGloryRank,omitempty"`
  337. // 最高功勋
  338. MaxGlory int32 `protobuf:"varint,3,opt,name=maxGlory,proto3" json:"maxGlory,omitempty"`
  339. // 最高功勋排名
  340. MaxGloryRank int32 `protobuf:"varint,4,opt,name=maxGloryRank,proto3" json:"maxGloryRank,omitempty"`
  341. unknownFields protoimpl.UnknownFields
  342. sizeCache protoimpl.SizeCache
  343. }
  344. func (x *GloryDetail) Reset() {
  345. *x = GloryDetail{}
  346. mi := &file_lord_proto_msgTypes[3]
  347. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  348. ms.StoreMessageInfo(mi)
  349. }
  350. func (x *GloryDetail) String() string {
  351. return protoimpl.X.MessageStringOf(x)
  352. }
  353. func (*GloryDetail) ProtoMessage() {}
  354. func (x *GloryDetail) ProtoReflect() protoreflect.Message {
  355. mi := &file_lord_proto_msgTypes[3]
  356. if x != nil {
  357. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  358. if ms.LoadMessageInfo() == nil {
  359. ms.StoreMessageInfo(mi)
  360. }
  361. return ms
  362. }
  363. return mi.MessageOf(x)
  364. }
  365. // Deprecated: Use GloryDetail.ProtoReflect.Descriptor instead.
  366. func (*GloryDetail) Descriptor() ([]byte, []int) {
  367. return file_lord_proto_rawDescGZIP(), []int{3}
  368. }
  369. func (x *GloryDetail) GetCurGlory() int32 {
  370. if x != nil {
  371. return x.CurGlory
  372. }
  373. return 0
  374. }
  375. func (x *GloryDetail) GetCurGloryRank() int32 {
  376. if x != nil {
  377. return x.CurGloryRank
  378. }
  379. return 0
  380. }
  381. func (x *GloryDetail) GetMaxGlory() int32 {
  382. if x != nil {
  383. return x.MaxGlory
  384. }
  385. return 0
  386. }
  387. func (x *GloryDetail) GetMaxGloryRank() int32 {
  388. if x != nil {
  389. return x.MaxGloryRank
  390. }
  391. return 0
  392. }
  393. // 外显列表
  394. type LordShows struct {
  395. state protoimpl.MessageState `protogen:"open.v1"`
  396. Shows []*LordShow `protobuf:"bytes,1,rep,name=shows,proto3" json:"shows,omitempty"`
  397. unknownFields protoimpl.UnknownFields
  398. sizeCache protoimpl.SizeCache
  399. }
  400. func (x *LordShows) Reset() {
  401. *x = LordShows{}
  402. mi := &file_lord_proto_msgTypes[4]
  403. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  404. ms.StoreMessageInfo(mi)
  405. }
  406. func (x *LordShows) String() string {
  407. return protoimpl.X.MessageStringOf(x)
  408. }
  409. func (*LordShows) ProtoMessage() {}
  410. func (x *LordShows) ProtoReflect() protoreflect.Message {
  411. mi := &file_lord_proto_msgTypes[4]
  412. if x != nil {
  413. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  414. if ms.LoadMessageInfo() == nil {
  415. ms.StoreMessageInfo(mi)
  416. }
  417. return ms
  418. }
  419. return mi.MessageOf(x)
  420. }
  421. // Deprecated: Use LordShows.ProtoReflect.Descriptor instead.
  422. func (*LordShows) Descriptor() ([]byte, []int) {
  423. return file_lord_proto_rawDescGZIP(), []int{4}
  424. }
  425. func (x *LordShows) GetShows() []*LordShow {
  426. if x != nil {
  427. return x.Shows
  428. }
  429. return nil
  430. }
  431. // 外显数据
  432. type LordShow struct {
  433. state protoimpl.MessageState `protogen:"open.v1"`
  434. // 外显ID L-领主-外显表外显ID
  435. ShowID int32 `protobuf:"varint,1,opt,name=showID,proto3" json:"showID,omitempty"`
  436. // 过期时间戳 单位秒
  437. ExpireTime int64 `protobuf:"varint,2,opt,name=expireTime,proto3" json:"expireTime,omitempty"`
  438. // 是否已查看
  439. IsViewed bool `protobuf:"varint,3,opt,name=isViewed,proto3" json:"isViewed,omitempty"`
  440. unknownFields protoimpl.UnknownFields
  441. sizeCache protoimpl.SizeCache
  442. }
  443. func (x *LordShow) Reset() {
  444. *x = LordShow{}
  445. mi := &file_lord_proto_msgTypes[5]
  446. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  447. ms.StoreMessageInfo(mi)
  448. }
  449. func (x *LordShow) String() string {
  450. return protoimpl.X.MessageStringOf(x)
  451. }
  452. func (*LordShow) ProtoMessage() {}
  453. func (x *LordShow) ProtoReflect() protoreflect.Message {
  454. mi := &file_lord_proto_msgTypes[5]
  455. if x != nil {
  456. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  457. if ms.LoadMessageInfo() == nil {
  458. ms.StoreMessageInfo(mi)
  459. }
  460. return ms
  461. }
  462. return mi.MessageOf(x)
  463. }
  464. // Deprecated: Use LordShow.ProtoReflect.Descriptor instead.
  465. func (*LordShow) Descriptor() ([]byte, []int) {
  466. return file_lord_proto_rawDescGZIP(), []int{5}
  467. }
  468. func (x *LordShow) GetShowID() int32 {
  469. if x != nil {
  470. return x.ShowID
  471. }
  472. return 0
  473. }
  474. func (x *LordShow) GetExpireTime() int64 {
  475. if x != nil {
  476. return x.ExpireTime
  477. }
  478. return 0
  479. }
  480. func (x *LordShow) GetIsViewed() bool {
  481. if x != nil {
  482. return x.IsViewed
  483. }
  484. return false
  485. }
  486. // 数据设置-数据展示
  487. type LordShowDataList struct {
  488. state protoimpl.MessageState `protogen:"open.v1"`
  489. Datas []*LordShowData `protobuf:"bytes,1,rep,name=datas,proto3" json:"datas,omitempty"`
  490. unknownFields protoimpl.UnknownFields
  491. sizeCache protoimpl.SizeCache
  492. }
  493. func (x *LordShowDataList) Reset() {
  494. *x = LordShowDataList{}
  495. mi := &file_lord_proto_msgTypes[6]
  496. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  497. ms.StoreMessageInfo(mi)
  498. }
  499. func (x *LordShowDataList) String() string {
  500. return protoimpl.X.MessageStringOf(x)
  501. }
  502. func (*LordShowDataList) ProtoMessage() {}
  503. func (x *LordShowDataList) ProtoReflect() protoreflect.Message {
  504. mi := &file_lord_proto_msgTypes[6]
  505. if x != nil {
  506. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  507. if ms.LoadMessageInfo() == nil {
  508. ms.StoreMessageInfo(mi)
  509. }
  510. return ms
  511. }
  512. return mi.MessageOf(x)
  513. }
  514. // Deprecated: Use LordShowDataList.ProtoReflect.Descriptor instead.
  515. func (*LordShowDataList) Descriptor() ([]byte, []int) {
  516. return file_lord_proto_rawDescGZIP(), []int{6}
  517. }
  518. func (x *LordShowDataList) GetDatas() []*LordShowData {
  519. if x != nil {
  520. return x.Datas
  521. }
  522. return nil
  523. }
  524. // 数据展示
  525. type LordShowData struct {
  526. state protoimpl.MessageState `protogen:"open.v1"`
  527. // 数据显示类型 1 登录天数 2最高声望 3最高声望排行 4最高功勋 5最高功勋排行 6霸业次数 7问鼎次数
  528. ShowType int32 `protobuf:"varint,1,opt,name=showType,proto3" json:"showType,omitempty"`
  529. // 是否展示
  530. IsShow bool `protobuf:"varint,2,opt,name=isShow,proto3" json:"isShow,omitempty"`
  531. unknownFields protoimpl.UnknownFields
  532. sizeCache protoimpl.SizeCache
  533. }
  534. func (x *LordShowData) Reset() {
  535. *x = LordShowData{}
  536. mi := &file_lord_proto_msgTypes[7]
  537. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  538. ms.StoreMessageInfo(mi)
  539. }
  540. func (x *LordShowData) String() string {
  541. return protoimpl.X.MessageStringOf(x)
  542. }
  543. func (*LordShowData) ProtoMessage() {}
  544. func (x *LordShowData) ProtoReflect() protoreflect.Message {
  545. mi := &file_lord_proto_msgTypes[7]
  546. if x != nil {
  547. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  548. if ms.LoadMessageInfo() == nil {
  549. ms.StoreMessageInfo(mi)
  550. }
  551. return ms
  552. }
  553. return mi.MessageOf(x)
  554. }
  555. // Deprecated: Use LordShowData.ProtoReflect.Descriptor instead.
  556. func (*LordShowData) Descriptor() ([]byte, []int) {
  557. return file_lord_proto_rawDescGZIP(), []int{7}
  558. }
  559. func (x *LordShowData) GetShowType() int32 {
  560. if x != nil {
  561. return x.ShowType
  562. }
  563. return 0
  564. }
  565. func (x *LordShowData) GetIsShow() bool {
  566. if x != nil {
  567. return x.IsShow
  568. }
  569. return false
  570. }
  571. var File_lord_proto protoreflect.FileDescriptor
  572. const file_lord_proto_rawDesc = "" +
  573. "\n" +
  574. "\n" +
  575. "lord.proto\x12\x02pb\x1a\x0fbase_type.proto\x1a\fleague.proto\"\x90\x01\n" +
  576. "\x04Lord\x12\x12\n" +
  577. "\x04name\x18\x01 \x01(\tR\x04name\x12\x14\n" +
  578. "\x05level\x18\x02 \x01(\x05R\x05level\x12\x10\n" +
  579. "\x03exp\x18\x03 \x01(\x03R\x03exp\x12\x16\n" +
  580. "\x06iconID\x18\x04 \x01(\x05R\x06iconID\x12\x18\n" +
  581. "\aframeID\x18\x05 \x01(\x05R\aframeID\x12\x1a\n" +
  582. "\bseasonID\x18\n" +
  583. " \x01(\x05R\bseasonID\"\xbd\x04\n" +
  584. "\n" +
  585. "LordDetail\x12\x1a\n" +
  586. "\bplayerID\x18\x01 \x01(\x03R\bplayerID\x12\x1e\n" +
  587. "\n" +
  588. "playerName\x18\x02 \x01(\tR\n" +
  589. "playerName\x12\x16\n" +
  590. "\x06iconID\x18\x03 \x01(\x05R\x06iconID\x12\x18\n" +
  591. "\aframeID\x18\x04 \x01(\x05R\aframeID\x12\x12\n" +
  592. "\x04bgID\x18\x05 \x01(\x05R\x04bgID\x12\x12\n" +
  593. "\x04desc\x18\x06 \x01(\tR\x04desc\x12\x16\n" +
  594. "\x06season\x18\a \x01(\x05R\x06season\x12\x1c\n" +
  595. "\tmapNodeID\x18\b \x01(\tR\tmapNodeID\x12\x1a\n" +
  596. "\bprovince\x18\t \x01(\x05R\bprovince\x12&\n" +
  597. "\x0etotalLoginDays\x18\n" +
  598. " \x01(\x05R\x0etotalLoginDays\x12\x1e\n" +
  599. "\n" +
  600. "gloryCount\x18\v \x01(\x05R\n" +
  601. "gloryCount\x12&\n" +
  602. "\x0esupremacyCount\x18\f \x01(\x05R\x0esupremacyCount\x12+\n" +
  603. "\x06league\x18\r \x01(\v2\x13.pb.LeaguePlayerJobR\x06league\x12.\n" +
  604. "\bprestige\x18\x0e \x01(\v2\x12.pb.PrestigeDetailR\bprestige\x12%\n" +
  605. "\x05glory\x18\x0f \x01(\v2\x0f.pb.GloryDetailR\x05glory\x122\n" +
  606. "\tshowDatas\x18\x10 \x01(\v2\x14.pb.LordShowDataListR\tshowDatas\x12\x1f\n" +
  607. "\x05point\x18\x11 \x01(\v2\t.pb.PointR\x05point\"\xa8\x01\n" +
  608. "\x0ePrestigeDetail\x12 \n" +
  609. "\vcurPrestige\x18\x0e \x01(\x05R\vcurPrestige\x12(\n" +
  610. "\x0fcurPrestigeRank\x18\x0f \x01(\x05R\x0fcurPrestigeRank\x12 \n" +
  611. "\vmaxPrestige\x18\x10 \x01(\x05R\vmaxPrestige\x12(\n" +
  612. "\x0fmaxPrestigeRank\x18\x11 \x01(\x05R\x0fmaxPrestigeRank\"\x8d\x01\n" +
  613. "\vGloryDetail\x12\x1a\n" +
  614. "\bcurGlory\x18\x01 \x01(\x05R\bcurGlory\x12\"\n" +
  615. "\fcurGloryRank\x18\x02 \x01(\x05R\fcurGloryRank\x12\x1a\n" +
  616. "\bmaxGlory\x18\x03 \x01(\x05R\bmaxGlory\x12\"\n" +
  617. "\fmaxGloryRank\x18\x04 \x01(\x05R\fmaxGloryRank\"/\n" +
  618. "\tLordShows\x12\"\n" +
  619. "\x05shows\x18\x01 \x03(\v2\f.pb.LordShowR\x05shows\"^\n" +
  620. "\bLordShow\x12\x16\n" +
  621. "\x06showID\x18\x01 \x01(\x05R\x06showID\x12\x1e\n" +
  622. "\n" +
  623. "expireTime\x18\x02 \x01(\x03R\n" +
  624. "expireTime\x12\x1a\n" +
  625. "\bisViewed\x18\x03 \x01(\bR\bisViewed\":\n" +
  626. "\x10LordShowDataList\x12&\n" +
  627. "\x05datas\x18\x01 \x03(\v2\x10.pb.LordShowDataR\x05datas\"B\n" +
  628. "\fLordShowData\x12\x1a\n" +
  629. "\bshowType\x18\x01 \x01(\x05R\bshowType\x12\x16\n" +
  630. "\x06isShow\x18\x02 \x01(\bR\x06isShowB\x05Z\x03/pbb\x06proto3"
  631. var (
  632. file_lord_proto_rawDescOnce sync.Once
  633. file_lord_proto_rawDescData []byte
  634. )
  635. func file_lord_proto_rawDescGZIP() []byte {
  636. file_lord_proto_rawDescOnce.Do(func() {
  637. file_lord_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_lord_proto_rawDesc), len(file_lord_proto_rawDesc)))
  638. })
  639. return file_lord_proto_rawDescData
  640. }
  641. var file_lord_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
  642. var file_lord_proto_goTypes = []any{
  643. (*Lord)(nil), // 0: pb.Lord
  644. (*LordDetail)(nil), // 1: pb.LordDetail
  645. (*PrestigeDetail)(nil), // 2: pb.PrestigeDetail
  646. (*GloryDetail)(nil), // 3: pb.GloryDetail
  647. (*LordShows)(nil), // 4: pb.LordShows
  648. (*LordShow)(nil), // 5: pb.LordShow
  649. (*LordShowDataList)(nil), // 6: pb.LordShowDataList
  650. (*LordShowData)(nil), // 7: pb.LordShowData
  651. (*LeaguePlayerJob)(nil), // 8: pb.LeaguePlayerJob
  652. (*Point)(nil), // 9: pb.Point
  653. }
  654. var file_lord_proto_depIdxs = []int32{
  655. 8, // 0: pb.LordDetail.league:type_name -> pb.LeaguePlayerJob
  656. 2, // 1: pb.LordDetail.prestige:type_name -> pb.PrestigeDetail
  657. 3, // 2: pb.LordDetail.glory:type_name -> pb.GloryDetail
  658. 6, // 3: pb.LordDetail.showDatas:type_name -> pb.LordShowDataList
  659. 9, // 4: pb.LordDetail.point:type_name -> pb.Point
  660. 5, // 5: pb.LordShows.shows:type_name -> pb.LordShow
  661. 7, // 6: pb.LordShowDataList.datas:type_name -> pb.LordShowData
  662. 7, // [7:7] is the sub-list for method output_type
  663. 7, // [7:7] is the sub-list for method input_type
  664. 7, // [7:7] is the sub-list for extension type_name
  665. 7, // [7:7] is the sub-list for extension extendee
  666. 0, // [0:7] is the sub-list for field type_name
  667. }
  668. func init() { file_lord_proto_init() }
  669. func file_lord_proto_init() {
  670. if File_lord_proto != nil {
  671. return
  672. }
  673. file_base_type_proto_init()
  674. file_league_proto_init()
  675. type x struct{}
  676. out := protoimpl.TypeBuilder{
  677. File: protoimpl.DescBuilder{
  678. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  679. RawDescriptor: unsafe.Slice(unsafe.StringData(file_lord_proto_rawDesc), len(file_lord_proto_rawDesc)),
  680. NumEnums: 0,
  681. NumMessages: 8,
  682. NumExtensions: 0,
  683. NumServices: 0,
  684. },
  685. GoTypes: file_lord_proto_goTypes,
  686. DependencyIndexes: file_lord_proto_depIdxs,
  687. MessageInfos: file_lord_proto_msgTypes,
  688. }.Build()
  689. File_lord_proto = out.File
  690. file_lord_proto_goTypes = nil
  691. file_lord_proto_depIdxs = nil
  692. }