league.pb.go 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372
  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: league.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 LeagueList struct {
  23. state protoimpl.MessageState `protogen:"open.v1"`
  24. // 总数
  25. Total int32 `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
  26. // 联盟列表
  27. List []*LeagueSearch `protobuf:"bytes,2,rep,name=list,proto3" json:"list,omitempty"`
  28. unknownFields protoimpl.UnknownFields
  29. sizeCache protoimpl.SizeCache
  30. }
  31. func (x *LeagueList) Reset() {
  32. *x = LeagueList{}
  33. mi := &file_league_proto_msgTypes[0]
  34. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  35. ms.StoreMessageInfo(mi)
  36. }
  37. func (x *LeagueList) String() string {
  38. return protoimpl.X.MessageStringOf(x)
  39. }
  40. func (*LeagueList) ProtoMessage() {}
  41. func (x *LeagueList) ProtoReflect() protoreflect.Message {
  42. mi := &file_league_proto_msgTypes[0]
  43. if x != nil {
  44. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  45. if ms.LoadMessageInfo() == nil {
  46. ms.StoreMessageInfo(mi)
  47. }
  48. return ms
  49. }
  50. return mi.MessageOf(x)
  51. }
  52. // Deprecated: Use LeagueList.ProtoReflect.Descriptor instead.
  53. func (*LeagueList) Descriptor() ([]byte, []int) {
  54. return file_league_proto_rawDescGZIP(), []int{0}
  55. }
  56. func (x *LeagueList) GetTotal() int32 {
  57. if x != nil {
  58. return x.Total
  59. }
  60. return 0
  61. }
  62. func (x *LeagueList) GetList() []*LeagueSearch {
  63. if x != nil {
  64. return x.List
  65. }
  66. return nil
  67. }
  68. // 联盟搜索信息
  69. type LeagueSearch struct {
  70. state protoimpl.MessageState `protogen:"open.v1"`
  71. // 联盟ID
  72. LeagueID int64 `protobuf:"varint,1,opt,name=leagueID,proto3" json:"leagueID,omitempty"`
  73. // 联盟名称
  74. LeagueName string `protobuf:"bytes,2,opt,name=leagueName,proto3" json:"leagueName,omitempty"`
  75. // 联盟简称
  76. LeagueAbbName string `protobuf:"bytes,3,opt,name=leagueAbbName,proto3" json:"leagueAbbName,omitempty"`
  77. // 联盟等级
  78. Level int32 `protobuf:"varint,4,opt,name=level,proto3" json:"level,omitempty"`
  79. // 联盟当前成员数量
  80. MemberCount int32 `protobuf:"varint,5,opt,name=memberCount,proto3" json:"memberCount,omitempty"`
  81. // 所属地坐标
  82. Location *Point `protobuf:"bytes,6,opt,name=location,proto3" json:"location,omitempty"`
  83. // 是否需要审批
  84. NeedApprove bool `protobuf:"varint,7,opt,name=needApprove,proto3" json:"needApprove,omitempty"`
  85. // 霸业积分
  86. GloryScore int32 `protobuf:"varint,8,opt,name=gloryScore,proto3" json:"gloryScore,omitempty"`
  87. // 是否已发送入盟申请
  88. Apply bool `protobuf:"varint,9,opt,name=apply,proto3" json:"apply,omitempty"`
  89. // 加入联盟所需主城等级
  90. JoinNeedLevel int32 `protobuf:"varint,10,opt,name=joinNeedLevel,proto3" json:"joinNeedLevel,omitempty"`
  91. // 创建时间戳 单位秒
  92. CreateTime int64 `protobuf:"varint,11,opt,name=createTime,proto3" json:"createTime,omitempty"`
  93. unknownFields protoimpl.UnknownFields
  94. sizeCache protoimpl.SizeCache
  95. }
  96. func (x *LeagueSearch) Reset() {
  97. *x = LeagueSearch{}
  98. mi := &file_league_proto_msgTypes[1]
  99. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  100. ms.StoreMessageInfo(mi)
  101. }
  102. func (x *LeagueSearch) String() string {
  103. return protoimpl.X.MessageStringOf(x)
  104. }
  105. func (*LeagueSearch) ProtoMessage() {}
  106. func (x *LeagueSearch) ProtoReflect() protoreflect.Message {
  107. mi := &file_league_proto_msgTypes[1]
  108. if x != nil {
  109. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  110. if ms.LoadMessageInfo() == nil {
  111. ms.StoreMessageInfo(mi)
  112. }
  113. return ms
  114. }
  115. return mi.MessageOf(x)
  116. }
  117. // Deprecated: Use LeagueSearch.ProtoReflect.Descriptor instead.
  118. func (*LeagueSearch) Descriptor() ([]byte, []int) {
  119. return file_league_proto_rawDescGZIP(), []int{1}
  120. }
  121. func (x *LeagueSearch) GetLeagueID() int64 {
  122. if x != nil {
  123. return x.LeagueID
  124. }
  125. return 0
  126. }
  127. func (x *LeagueSearch) GetLeagueName() string {
  128. if x != nil {
  129. return x.LeagueName
  130. }
  131. return ""
  132. }
  133. func (x *LeagueSearch) GetLeagueAbbName() string {
  134. if x != nil {
  135. return x.LeagueAbbName
  136. }
  137. return ""
  138. }
  139. func (x *LeagueSearch) GetLevel() int32 {
  140. if x != nil {
  141. return x.Level
  142. }
  143. return 0
  144. }
  145. func (x *LeagueSearch) GetMemberCount() int32 {
  146. if x != nil {
  147. return x.MemberCount
  148. }
  149. return 0
  150. }
  151. func (x *LeagueSearch) GetLocation() *Point {
  152. if x != nil {
  153. return x.Location
  154. }
  155. return nil
  156. }
  157. func (x *LeagueSearch) GetNeedApprove() bool {
  158. if x != nil {
  159. return x.NeedApprove
  160. }
  161. return false
  162. }
  163. func (x *LeagueSearch) GetGloryScore() int32 {
  164. if x != nil {
  165. return x.GloryScore
  166. }
  167. return 0
  168. }
  169. func (x *LeagueSearch) GetApply() bool {
  170. if x != nil {
  171. return x.Apply
  172. }
  173. return false
  174. }
  175. func (x *LeagueSearch) GetJoinNeedLevel() int32 {
  176. if x != nil {
  177. return x.JoinNeedLevel
  178. }
  179. return 0
  180. }
  181. func (x *LeagueSearch) GetCreateTime() int64 {
  182. if x != nil {
  183. return x.CreateTime
  184. }
  185. return 0
  186. }
  187. // 联盟信息推送
  188. type LeaguePush struct {
  189. state protoimpl.MessageState `protogen:"open.v1"`
  190. // 联盟ID
  191. LeagueID int64 `protobuf:"varint,1,opt,name=leagueID,proto3" json:"leagueID,omitempty"`
  192. // 联盟名称
  193. LeagueName string `protobuf:"bytes,2,opt,name=leagueName,proto3" json:"leagueName,omitempty"`
  194. // 联盟简称
  195. LeagueAbbName string `protobuf:"bytes,3,opt,name=leagueAbbName,proto3" json:"leagueAbbName,omitempty"`
  196. // 联盟是否有红点
  197. RedPoint bool `protobuf:"varint,4,opt,name=redPoint,proto3" json:"redPoint,omitempty"`
  198. unknownFields protoimpl.UnknownFields
  199. sizeCache protoimpl.SizeCache
  200. }
  201. func (x *LeaguePush) Reset() {
  202. *x = LeaguePush{}
  203. mi := &file_league_proto_msgTypes[2]
  204. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  205. ms.StoreMessageInfo(mi)
  206. }
  207. func (x *LeaguePush) String() string {
  208. return protoimpl.X.MessageStringOf(x)
  209. }
  210. func (*LeaguePush) ProtoMessage() {}
  211. func (x *LeaguePush) ProtoReflect() protoreflect.Message {
  212. mi := &file_league_proto_msgTypes[2]
  213. if x != nil {
  214. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  215. if ms.LoadMessageInfo() == nil {
  216. ms.StoreMessageInfo(mi)
  217. }
  218. return ms
  219. }
  220. return mi.MessageOf(x)
  221. }
  222. // Deprecated: Use LeaguePush.ProtoReflect.Descriptor instead.
  223. func (*LeaguePush) Descriptor() ([]byte, []int) {
  224. return file_league_proto_rawDescGZIP(), []int{2}
  225. }
  226. func (x *LeaguePush) GetLeagueID() int64 {
  227. if x != nil {
  228. return x.LeagueID
  229. }
  230. return 0
  231. }
  232. func (x *LeaguePush) GetLeagueName() string {
  233. if x != nil {
  234. return x.LeagueName
  235. }
  236. return ""
  237. }
  238. func (x *LeaguePush) GetLeagueAbbName() string {
  239. if x != nil {
  240. return x.LeagueAbbName
  241. }
  242. return ""
  243. }
  244. func (x *LeaguePush) GetRedPoint() bool {
  245. if x != nil {
  246. return x.RedPoint
  247. }
  248. return false
  249. }
  250. // 联盟基础信息
  251. type LeagueBase struct {
  252. state protoimpl.MessageState `protogen:"open.v1"`
  253. // 联盟ID
  254. LeagueID int64 `protobuf:"varint,1,opt,name=leagueID,proto3" json:"leagueID,omitempty"`
  255. // 联盟名称
  256. LeagueName string `protobuf:"bytes,2,opt,name=leagueName,proto3" json:"leagueName,omitempty"`
  257. // 联盟简称
  258. LeagueAbbName string `protobuf:"bytes,3,opt,name=leagueAbbName,proto3" json:"leagueAbbName,omitempty"`
  259. // 联盟盟主ID
  260. LeaderID int64 `protobuf:"varint,4,opt,name=leaderID,proto3" json:"leaderID,omitempty"`
  261. // 联盟盟主名称
  262. LeaderName string `protobuf:"bytes,5,opt,name=leaderName,proto3" json:"leaderName,omitempty"`
  263. // 联盟等级
  264. Level int32 `protobuf:"varint,6,opt,name=level,proto3" json:"level,omitempty"`
  265. // 联盟经验
  266. Exp int32 `protobuf:"varint,7,opt,name=exp,proto3" json:"exp,omitempty"`
  267. // 联盟当前成员数量
  268. MemberCount int32 `protobuf:"varint,8,opt,name=memberCount,proto3" json:"memberCount,omitempty"`
  269. // 旗帜背景
  270. FlagBg int32 `protobuf:"varint,9,opt,name=flagBg,proto3" json:"flagBg,omitempty"`
  271. // 旗帜图标
  272. FlagIcon int32 `protobuf:"varint,10,opt,name=flagIcon,proto3" json:"flagIcon,omitempty"`
  273. // 所属地坐标
  274. Location *Point `protobuf:"bytes,11,opt,name=location,proto3" json:"location,omitempty"`
  275. // 申请所需领主等级
  276. LordLevelLimit int32 `protobuf:"varint,12,opt,name=lordLevelLimit,proto3" json:"lordLevelLimit,omitempty"`
  277. // 是否需要审批
  278. NeedApprove bool `protobuf:"varint,13,opt,name=needApprove,proto3" json:"needApprove,omitempty"`
  279. // 霸业积分
  280. GloryScore int32 `protobuf:"varint,14,opt,name=gloryScore,proto3" json:"gloryScore,omitempty"`
  281. // 联盟公告
  282. LeagueNotice string `protobuf:"bytes,15,opt,name=leagueNotice,proto3" json:"leagueNotice,omitempty"`
  283. // 创建时间戳 单位秒
  284. CreateTime int64 `protobuf:"varint,16,opt,name=createTime,proto3" json:"createTime,omitempty"`
  285. // 属性
  286. Attrs *Attrs `protobuf:"bytes,17,opt,name=attrs,proto3" json:"attrs,omitempty"`
  287. unknownFields protoimpl.UnknownFields
  288. sizeCache protoimpl.SizeCache
  289. }
  290. func (x *LeagueBase) Reset() {
  291. *x = LeagueBase{}
  292. mi := &file_league_proto_msgTypes[3]
  293. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  294. ms.StoreMessageInfo(mi)
  295. }
  296. func (x *LeagueBase) String() string {
  297. return protoimpl.X.MessageStringOf(x)
  298. }
  299. func (*LeagueBase) ProtoMessage() {}
  300. func (x *LeagueBase) ProtoReflect() protoreflect.Message {
  301. mi := &file_league_proto_msgTypes[3]
  302. if x != nil {
  303. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  304. if ms.LoadMessageInfo() == nil {
  305. ms.StoreMessageInfo(mi)
  306. }
  307. return ms
  308. }
  309. return mi.MessageOf(x)
  310. }
  311. // Deprecated: Use LeagueBase.ProtoReflect.Descriptor instead.
  312. func (*LeagueBase) Descriptor() ([]byte, []int) {
  313. return file_league_proto_rawDescGZIP(), []int{3}
  314. }
  315. func (x *LeagueBase) GetLeagueID() int64 {
  316. if x != nil {
  317. return x.LeagueID
  318. }
  319. return 0
  320. }
  321. func (x *LeagueBase) GetLeagueName() string {
  322. if x != nil {
  323. return x.LeagueName
  324. }
  325. return ""
  326. }
  327. func (x *LeagueBase) GetLeagueAbbName() string {
  328. if x != nil {
  329. return x.LeagueAbbName
  330. }
  331. return ""
  332. }
  333. func (x *LeagueBase) GetLeaderID() int64 {
  334. if x != nil {
  335. return x.LeaderID
  336. }
  337. return 0
  338. }
  339. func (x *LeagueBase) GetLeaderName() string {
  340. if x != nil {
  341. return x.LeaderName
  342. }
  343. return ""
  344. }
  345. func (x *LeagueBase) GetLevel() int32 {
  346. if x != nil {
  347. return x.Level
  348. }
  349. return 0
  350. }
  351. func (x *LeagueBase) GetExp() int32 {
  352. if x != nil {
  353. return x.Exp
  354. }
  355. return 0
  356. }
  357. func (x *LeagueBase) GetMemberCount() int32 {
  358. if x != nil {
  359. return x.MemberCount
  360. }
  361. return 0
  362. }
  363. func (x *LeagueBase) GetFlagBg() int32 {
  364. if x != nil {
  365. return x.FlagBg
  366. }
  367. return 0
  368. }
  369. func (x *LeagueBase) GetFlagIcon() int32 {
  370. if x != nil {
  371. return x.FlagIcon
  372. }
  373. return 0
  374. }
  375. func (x *LeagueBase) GetLocation() *Point {
  376. if x != nil {
  377. return x.Location
  378. }
  379. return nil
  380. }
  381. func (x *LeagueBase) GetLordLevelLimit() int32 {
  382. if x != nil {
  383. return x.LordLevelLimit
  384. }
  385. return 0
  386. }
  387. func (x *LeagueBase) GetNeedApprove() bool {
  388. if x != nil {
  389. return x.NeedApprove
  390. }
  391. return false
  392. }
  393. func (x *LeagueBase) GetGloryScore() int32 {
  394. if x != nil {
  395. return x.GloryScore
  396. }
  397. return 0
  398. }
  399. func (x *LeagueBase) GetLeagueNotice() string {
  400. if x != nil {
  401. return x.LeagueNotice
  402. }
  403. return ""
  404. }
  405. func (x *LeagueBase) GetCreateTime() int64 {
  406. if x != nil {
  407. return x.CreateTime
  408. }
  409. return 0
  410. }
  411. func (x *LeagueBase) GetAttrs() *Attrs {
  412. if x != nil {
  413. return x.Attrs
  414. }
  415. return nil
  416. }
  417. // 联盟详细信息
  418. type League struct {
  419. state protoimpl.MessageState `protogen:"open.v1"`
  420. // 联盟基础信息
  421. LeagueBase *LeagueBase `protobuf:"bytes,1,opt,name=leagueBase,proto3" json:"leagueBase,omitempty"`
  422. // 联盟声望
  423. LeaguePrestige int32 `protobuf:"varint,2,opt,name=leaguePrestige,proto3" json:"leaguePrestige,omitempty"`
  424. // 联盟城池数
  425. LeagueCityCount int32 `protobuf:"varint,3,opt,name=leagueCityCount,proto3" json:"leagueCityCount,omitempty"`
  426. // 联盟外交
  427. Diplomacy *LeagueDiplomacy `protobuf:"bytes,4,opt,name=diplomacy,proto3" json:"diplomacy,omitempty"`
  428. unknownFields protoimpl.UnknownFields
  429. sizeCache protoimpl.SizeCache
  430. }
  431. func (x *League) Reset() {
  432. *x = League{}
  433. mi := &file_league_proto_msgTypes[4]
  434. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  435. ms.StoreMessageInfo(mi)
  436. }
  437. func (x *League) String() string {
  438. return protoimpl.X.MessageStringOf(x)
  439. }
  440. func (*League) ProtoMessage() {}
  441. func (x *League) ProtoReflect() protoreflect.Message {
  442. mi := &file_league_proto_msgTypes[4]
  443. if x != nil {
  444. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  445. if ms.LoadMessageInfo() == nil {
  446. ms.StoreMessageInfo(mi)
  447. }
  448. return ms
  449. }
  450. return mi.MessageOf(x)
  451. }
  452. // Deprecated: Use League.ProtoReflect.Descriptor instead.
  453. func (*League) Descriptor() ([]byte, []int) {
  454. return file_league_proto_rawDescGZIP(), []int{4}
  455. }
  456. func (x *League) GetLeagueBase() *LeagueBase {
  457. if x != nil {
  458. return x.LeagueBase
  459. }
  460. return nil
  461. }
  462. func (x *League) GetLeaguePrestige() int32 {
  463. if x != nil {
  464. return x.LeaguePrestige
  465. }
  466. return 0
  467. }
  468. func (x *League) GetLeagueCityCount() int32 {
  469. if x != nil {
  470. return x.LeagueCityCount
  471. }
  472. return 0
  473. }
  474. func (x *League) GetDiplomacy() *LeagueDiplomacy {
  475. if x != nil {
  476. return x.Diplomacy
  477. }
  478. return nil
  479. }
  480. // 联盟成员列表
  481. type LeagueMembers struct {
  482. state protoimpl.MessageState `protogen:"open.v1"`
  483. // 联盟成员列表
  484. List []*LeagueMember `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  485. // 转让信息 为空不存在
  486. Transfer *LeagueTransfer `protobuf:"bytes,2,opt,name=transfer,proto3" json:"transfer,omitempty"`
  487. unknownFields protoimpl.UnknownFields
  488. sizeCache protoimpl.SizeCache
  489. }
  490. func (x *LeagueMembers) Reset() {
  491. *x = LeagueMembers{}
  492. mi := &file_league_proto_msgTypes[5]
  493. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  494. ms.StoreMessageInfo(mi)
  495. }
  496. func (x *LeagueMembers) String() string {
  497. return protoimpl.X.MessageStringOf(x)
  498. }
  499. func (*LeagueMembers) ProtoMessage() {}
  500. func (x *LeagueMembers) ProtoReflect() protoreflect.Message {
  501. mi := &file_league_proto_msgTypes[5]
  502. if x != nil {
  503. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  504. if ms.LoadMessageInfo() == nil {
  505. ms.StoreMessageInfo(mi)
  506. }
  507. return ms
  508. }
  509. return mi.MessageOf(x)
  510. }
  511. // Deprecated: Use LeagueMembers.ProtoReflect.Descriptor instead.
  512. func (*LeagueMembers) Descriptor() ([]byte, []int) {
  513. return file_league_proto_rawDescGZIP(), []int{5}
  514. }
  515. func (x *LeagueMembers) GetList() []*LeagueMember {
  516. if x != nil {
  517. return x.List
  518. }
  519. return nil
  520. }
  521. func (x *LeagueMembers) GetTransfer() *LeagueTransfer {
  522. if x != nil {
  523. return x.Transfer
  524. }
  525. return nil
  526. }
  527. // 联盟成员信息
  528. type LeagueMember struct {
  529. state protoimpl.MessageState `protogen:"open.v1"`
  530. // 联盟成员ID
  531. PlayerID int64 `protobuf:"varint,1,opt,name=playerID,proto3" json:"playerID,omitempty"`
  532. // 联盟成员名称
  533. PlayerName string `protobuf:"bytes,2,opt,name=playerName,proto3" json:"playerName,omitempty"`
  534. // 成员职位
  535. Job int32 `protobuf:"varint,3,opt,name=job,proto3" json:"job,omitempty"`
  536. // 成员等级
  537. Level int32 `protobuf:"varint,4,opt,name=level,proto3" json:"level,omitempty"`
  538. // 成员声望
  539. Prestige int32 `protobuf:"varint,5,opt,name=prestige,proto3" json:"prestige,omitempty"`
  540. // 成员功勋
  541. Glory int32 `protobuf:"varint,6,opt,name=glory,proto3" json:"glory,omitempty"`
  542. // 成员累计功勋
  543. TotalGlory int32 `protobuf:"varint,7,opt,name=totalGlory,proto3" json:"totalGlory,omitempty"`
  544. // 成员贡献
  545. Contribution int32 `protobuf:"varint,8,opt,name=contribution,proto3" json:"contribution,omitempty"`
  546. // 成员累计贡献
  547. TotalContribution int32 `protobuf:"varint,9,opt,name=totalContribution,proto3" json:"totalContribution,omitempty"`
  548. // 成员坐标
  549. Point *Point `protobuf:"bytes,10,opt,name=point,proto3" json:"point,omitempty"`
  550. // 当前状态 0无 1离线超过x天 2玩家x天内入盟 3玩家当前处于整顿状态
  551. Status int32 `protobuf:"varint,11,opt,name=status,proto3" json:"status,omitempty"`
  552. // 成员加入时间
  553. JoinTime int64 `protobuf:"varint,12,opt,name=joinTime,proto3" json:"joinTime,omitempty"`
  554. // 本周分配的F币
  555. WeeklyFund int64 `protobuf:"varint,13,opt,name=weeklyFund,proto3" json:"weeklyFund,omitempty"`
  556. unknownFields protoimpl.UnknownFields
  557. sizeCache protoimpl.SizeCache
  558. }
  559. func (x *LeagueMember) Reset() {
  560. *x = LeagueMember{}
  561. mi := &file_league_proto_msgTypes[6]
  562. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  563. ms.StoreMessageInfo(mi)
  564. }
  565. func (x *LeagueMember) String() string {
  566. return protoimpl.X.MessageStringOf(x)
  567. }
  568. func (*LeagueMember) ProtoMessage() {}
  569. func (x *LeagueMember) ProtoReflect() protoreflect.Message {
  570. mi := &file_league_proto_msgTypes[6]
  571. if x != nil {
  572. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  573. if ms.LoadMessageInfo() == nil {
  574. ms.StoreMessageInfo(mi)
  575. }
  576. return ms
  577. }
  578. return mi.MessageOf(x)
  579. }
  580. // Deprecated: Use LeagueMember.ProtoReflect.Descriptor instead.
  581. func (*LeagueMember) Descriptor() ([]byte, []int) {
  582. return file_league_proto_rawDescGZIP(), []int{6}
  583. }
  584. func (x *LeagueMember) GetPlayerID() int64 {
  585. if x != nil {
  586. return x.PlayerID
  587. }
  588. return 0
  589. }
  590. func (x *LeagueMember) GetPlayerName() string {
  591. if x != nil {
  592. return x.PlayerName
  593. }
  594. return ""
  595. }
  596. func (x *LeagueMember) GetJob() int32 {
  597. if x != nil {
  598. return x.Job
  599. }
  600. return 0
  601. }
  602. func (x *LeagueMember) GetLevel() int32 {
  603. if x != nil {
  604. return x.Level
  605. }
  606. return 0
  607. }
  608. func (x *LeagueMember) GetPrestige() int32 {
  609. if x != nil {
  610. return x.Prestige
  611. }
  612. return 0
  613. }
  614. func (x *LeagueMember) GetGlory() int32 {
  615. if x != nil {
  616. return x.Glory
  617. }
  618. return 0
  619. }
  620. func (x *LeagueMember) GetTotalGlory() int32 {
  621. if x != nil {
  622. return x.TotalGlory
  623. }
  624. return 0
  625. }
  626. func (x *LeagueMember) GetContribution() int32 {
  627. if x != nil {
  628. return x.Contribution
  629. }
  630. return 0
  631. }
  632. func (x *LeagueMember) GetTotalContribution() int32 {
  633. if x != nil {
  634. return x.TotalContribution
  635. }
  636. return 0
  637. }
  638. func (x *LeagueMember) GetPoint() *Point {
  639. if x != nil {
  640. return x.Point
  641. }
  642. return nil
  643. }
  644. func (x *LeagueMember) GetStatus() int32 {
  645. if x != nil {
  646. return x.Status
  647. }
  648. return 0
  649. }
  650. func (x *LeagueMember) GetJoinTime() int64 {
  651. if x != nil {
  652. return x.JoinTime
  653. }
  654. return 0
  655. }
  656. func (x *LeagueMember) GetWeeklyFund() int64 {
  657. if x != nil {
  658. return x.WeeklyFund
  659. }
  660. return 0
  661. }
  662. // 联盟职位设置
  663. type LeagueJobRequest struct {
  664. state protoimpl.MessageState `protogen:"open.v1"`
  665. // 联盟成员列表 Key职位ID value联盟成员玩家ID
  666. Jobs []*I32I64 `protobuf:"bytes,1,rep,name=jobs,proto3" json:"jobs,omitempty"`
  667. unknownFields protoimpl.UnknownFields
  668. sizeCache protoimpl.SizeCache
  669. }
  670. func (x *LeagueJobRequest) Reset() {
  671. *x = LeagueJobRequest{}
  672. mi := &file_league_proto_msgTypes[7]
  673. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  674. ms.StoreMessageInfo(mi)
  675. }
  676. func (x *LeagueJobRequest) String() string {
  677. return protoimpl.X.MessageStringOf(x)
  678. }
  679. func (*LeagueJobRequest) ProtoMessage() {}
  680. func (x *LeagueJobRequest) ProtoReflect() protoreflect.Message {
  681. mi := &file_league_proto_msgTypes[7]
  682. if x != nil {
  683. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  684. if ms.LoadMessageInfo() == nil {
  685. ms.StoreMessageInfo(mi)
  686. }
  687. return ms
  688. }
  689. return mi.MessageOf(x)
  690. }
  691. // Deprecated: Use LeagueJobRequest.ProtoReflect.Descriptor instead.
  692. func (*LeagueJobRequest) Descriptor() ([]byte, []int) {
  693. return file_league_proto_rawDescGZIP(), []int{7}
  694. }
  695. func (x *LeagueJobRequest) GetJobs() []*I32I64 {
  696. if x != nil {
  697. return x.Jobs
  698. }
  699. return nil
  700. }
  701. // 科技列表
  702. type LeagueTechList struct {
  703. state protoimpl.MessageState `protogen:"open.v1"`
  704. // 科技列表 Key科技ID value科技等级
  705. Techs []*I32I32 `protobuf:"bytes,1,rep,name=techs,proto3" json:"techs,omitempty"`
  706. unknownFields protoimpl.UnknownFields
  707. sizeCache protoimpl.SizeCache
  708. }
  709. func (x *LeagueTechList) Reset() {
  710. *x = LeagueTechList{}
  711. mi := &file_league_proto_msgTypes[8]
  712. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  713. ms.StoreMessageInfo(mi)
  714. }
  715. func (x *LeagueTechList) String() string {
  716. return protoimpl.X.MessageStringOf(x)
  717. }
  718. func (*LeagueTechList) ProtoMessage() {}
  719. func (x *LeagueTechList) ProtoReflect() protoreflect.Message {
  720. mi := &file_league_proto_msgTypes[8]
  721. if x != nil {
  722. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  723. if ms.LoadMessageInfo() == nil {
  724. ms.StoreMessageInfo(mi)
  725. }
  726. return ms
  727. }
  728. return mi.MessageOf(x)
  729. }
  730. // Deprecated: Use LeagueTechList.ProtoReflect.Descriptor instead.
  731. func (*LeagueTechList) Descriptor() ([]byte, []int) {
  732. return file_league_proto_rawDescGZIP(), []int{8}
  733. }
  734. func (x *LeagueTechList) GetTechs() []*I32I32 {
  735. if x != nil {
  736. return x.Techs
  737. }
  738. return nil
  739. }
  740. // 联盟设施列表
  741. type LeagueBuildList struct {
  742. state protoimpl.MessageState `protogen:"open.v1"`
  743. List []*LeagueBuild `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  744. unknownFields protoimpl.UnknownFields
  745. sizeCache protoimpl.SizeCache
  746. }
  747. func (x *LeagueBuildList) Reset() {
  748. *x = LeagueBuildList{}
  749. mi := &file_league_proto_msgTypes[9]
  750. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  751. ms.StoreMessageInfo(mi)
  752. }
  753. func (x *LeagueBuildList) String() string {
  754. return protoimpl.X.MessageStringOf(x)
  755. }
  756. func (*LeagueBuildList) ProtoMessage() {}
  757. func (x *LeagueBuildList) ProtoReflect() protoreflect.Message {
  758. mi := &file_league_proto_msgTypes[9]
  759. if x != nil {
  760. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  761. if ms.LoadMessageInfo() == nil {
  762. ms.StoreMessageInfo(mi)
  763. }
  764. return ms
  765. }
  766. return mi.MessageOf(x)
  767. }
  768. // Deprecated: Use LeagueBuildList.ProtoReflect.Descriptor instead.
  769. func (*LeagueBuildList) Descriptor() ([]byte, []int) {
  770. return file_league_proto_rawDescGZIP(), []int{9}
  771. }
  772. func (x *LeagueBuildList) GetList() []*LeagueBuild {
  773. if x != nil {
  774. return x.List
  775. }
  776. return nil
  777. }
  778. // 联盟设施
  779. type LeagueBuild struct {
  780. state protoimpl.MessageState `protogen:"open.v1"`
  781. // 设施对象ID
  782. ObjectID int64 `protobuf:"varint,1,opt,name=objectID,proto3" json:"objectID,omitempty"`
  783. // 设施配置ID
  784. ConfigID int32 `protobuf:"varint,2,opt,name=configID,proto3" json:"configID,omitempty"`
  785. // 坐标
  786. Point *Point `protobuf:"bytes,3,opt,name=point,proto3" json:"point,omitempty"`
  787. // 是否建造中
  788. IsOperating bool `protobuf:"varint,4,opt,name=isOperating,proto3" json:"isOperating,omitempty"`
  789. // 建造完成时间(毫秒)
  790. BuildEndTime int64 `protobuf:"varint,5,opt,name=buildEndTime,proto3" json:"buildEndTime,omitempty"`
  791. // 放弃截止时间(毫秒)
  792. DiscardTime int64 `protobuf:"varint,6,opt,name=discardTime,proto3" json:"discardTime,omitempty"`
  793. // 升级完成时间(毫秒)
  794. UpgradeEndTime int64 `protobuf:"varint,7,opt,name=upgradeEndTime,proto3" json:"upgradeEndTime,omitempty"`
  795. unknownFields protoimpl.UnknownFields
  796. sizeCache protoimpl.SizeCache
  797. }
  798. func (x *LeagueBuild) Reset() {
  799. *x = LeagueBuild{}
  800. mi := &file_league_proto_msgTypes[10]
  801. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  802. ms.StoreMessageInfo(mi)
  803. }
  804. func (x *LeagueBuild) String() string {
  805. return protoimpl.X.MessageStringOf(x)
  806. }
  807. func (*LeagueBuild) ProtoMessage() {}
  808. func (x *LeagueBuild) ProtoReflect() protoreflect.Message {
  809. mi := &file_league_proto_msgTypes[10]
  810. if x != nil {
  811. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  812. if ms.LoadMessageInfo() == nil {
  813. ms.StoreMessageInfo(mi)
  814. }
  815. return ms
  816. }
  817. return mi.MessageOf(x)
  818. }
  819. // Deprecated: Use LeagueBuild.ProtoReflect.Descriptor instead.
  820. func (*LeagueBuild) Descriptor() ([]byte, []int) {
  821. return file_league_proto_rawDescGZIP(), []int{10}
  822. }
  823. func (x *LeagueBuild) GetObjectID() int64 {
  824. if x != nil {
  825. return x.ObjectID
  826. }
  827. return 0
  828. }
  829. func (x *LeagueBuild) GetConfigID() int32 {
  830. if x != nil {
  831. return x.ConfigID
  832. }
  833. return 0
  834. }
  835. func (x *LeagueBuild) GetPoint() *Point {
  836. if x != nil {
  837. return x.Point
  838. }
  839. return nil
  840. }
  841. func (x *LeagueBuild) GetIsOperating() bool {
  842. if x != nil {
  843. return x.IsOperating
  844. }
  845. return false
  846. }
  847. func (x *LeagueBuild) GetBuildEndTime() int64 {
  848. if x != nil {
  849. return x.BuildEndTime
  850. }
  851. return 0
  852. }
  853. func (x *LeagueBuild) GetDiscardTime() int64 {
  854. if x != nil {
  855. return x.DiscardTime
  856. }
  857. return 0
  858. }
  859. func (x *LeagueBuild) GetUpgradeEndTime() int64 {
  860. if x != nil {
  861. return x.UpgradeEndTime
  862. }
  863. return 0
  864. }
  865. // 联盟城池列表
  866. type LeagueCastleList struct {
  867. state protoimpl.MessageState `protogen:"open.v1"`
  868. List []*LeagueCastle `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  869. unknownFields protoimpl.UnknownFields
  870. sizeCache protoimpl.SizeCache
  871. }
  872. func (x *LeagueCastleList) Reset() {
  873. *x = LeagueCastleList{}
  874. mi := &file_league_proto_msgTypes[11]
  875. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  876. ms.StoreMessageInfo(mi)
  877. }
  878. func (x *LeagueCastleList) String() string {
  879. return protoimpl.X.MessageStringOf(x)
  880. }
  881. func (*LeagueCastleList) ProtoMessage() {}
  882. func (x *LeagueCastleList) ProtoReflect() protoreflect.Message {
  883. mi := &file_league_proto_msgTypes[11]
  884. if x != nil {
  885. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  886. if ms.LoadMessageInfo() == nil {
  887. ms.StoreMessageInfo(mi)
  888. }
  889. return ms
  890. }
  891. return mi.MessageOf(x)
  892. }
  893. // Deprecated: Use LeagueCastleList.ProtoReflect.Descriptor instead.
  894. func (*LeagueCastleList) Descriptor() ([]byte, []int) {
  895. return file_league_proto_rawDescGZIP(), []int{11}
  896. }
  897. func (x *LeagueCastleList) GetList() []*LeagueCastle {
  898. if x != nil {
  899. return x.List
  900. }
  901. return nil
  902. }
  903. // 联盟城池
  904. type LeagueCastle struct {
  905. state protoimpl.MessageState `protogen:"open.v1"`
  906. // 城池对象ID
  907. ObjectID int64 `protobuf:"varint,1,opt,name=objectID,proto3" json:"objectID,omitempty"`
  908. // 城池配置ID
  909. ConfigID int32 `protobuf:"varint,2,opt,name=configID,proto3" json:"configID,omitempty"`
  910. // 城池位置
  911. Point *Point `protobuf:"bytes,3,opt,name=point,proto3" json:"point,omitempty"`
  912. // 占领时间(毫秒)
  913. OccupyTime int64 `protobuf:"varint,4,opt,name=occupyTime,proto3" json:"occupyTime,omitempty"`
  914. // 城主ID 0表示没有任命城主
  915. OwnerID int64 `protobuf:"varint,5,opt,name=ownerID,proto3" json:"ownerID,omitempty"`
  916. unknownFields protoimpl.UnknownFields
  917. sizeCache protoimpl.SizeCache
  918. }
  919. func (x *LeagueCastle) Reset() {
  920. *x = LeagueCastle{}
  921. mi := &file_league_proto_msgTypes[12]
  922. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  923. ms.StoreMessageInfo(mi)
  924. }
  925. func (x *LeagueCastle) String() string {
  926. return protoimpl.X.MessageStringOf(x)
  927. }
  928. func (*LeagueCastle) ProtoMessage() {}
  929. func (x *LeagueCastle) ProtoReflect() protoreflect.Message {
  930. mi := &file_league_proto_msgTypes[12]
  931. if x != nil {
  932. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  933. if ms.LoadMessageInfo() == nil {
  934. ms.StoreMessageInfo(mi)
  935. }
  936. return ms
  937. }
  938. return mi.MessageOf(x)
  939. }
  940. // Deprecated: Use LeagueCastle.ProtoReflect.Descriptor instead.
  941. func (*LeagueCastle) Descriptor() ([]byte, []int) {
  942. return file_league_proto_rawDescGZIP(), []int{12}
  943. }
  944. func (x *LeagueCastle) GetObjectID() int64 {
  945. if x != nil {
  946. return x.ObjectID
  947. }
  948. return 0
  949. }
  950. func (x *LeagueCastle) GetConfigID() int32 {
  951. if x != nil {
  952. return x.ConfigID
  953. }
  954. return 0
  955. }
  956. func (x *LeagueCastle) GetPoint() *Point {
  957. if x != nil {
  958. return x.Point
  959. }
  960. return nil
  961. }
  962. func (x *LeagueCastle) GetOccupyTime() int64 {
  963. if x != nil {
  964. return x.OccupyTime
  965. }
  966. return 0
  967. }
  968. func (x *LeagueCastle) GetOwnerID() int64 {
  969. if x != nil {
  970. return x.OwnerID
  971. }
  972. return 0
  973. }
  974. // 联盟职位权限设置
  975. type LeaguePermissionRequest struct {
  976. state protoimpl.MessageState `protogen:"open.v1"`
  977. // 变更的联盟职位权限列表
  978. Jobs []*LeaguePermission `protobuf:"bytes,1,rep,name=jobs,proto3" json:"jobs,omitempty"`
  979. unknownFields protoimpl.UnknownFields
  980. sizeCache protoimpl.SizeCache
  981. }
  982. func (x *LeaguePermissionRequest) Reset() {
  983. *x = LeaguePermissionRequest{}
  984. mi := &file_league_proto_msgTypes[13]
  985. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  986. ms.StoreMessageInfo(mi)
  987. }
  988. func (x *LeaguePermissionRequest) String() string {
  989. return protoimpl.X.MessageStringOf(x)
  990. }
  991. func (*LeaguePermissionRequest) ProtoMessage() {}
  992. func (x *LeaguePermissionRequest) ProtoReflect() protoreflect.Message {
  993. mi := &file_league_proto_msgTypes[13]
  994. if x != nil {
  995. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  996. if ms.LoadMessageInfo() == nil {
  997. ms.StoreMessageInfo(mi)
  998. }
  999. return ms
  1000. }
  1001. return mi.MessageOf(x)
  1002. }
  1003. // Deprecated: Use LeaguePermissionRequest.ProtoReflect.Descriptor instead.
  1004. func (*LeaguePermissionRequest) Descriptor() ([]byte, []int) {
  1005. return file_league_proto_rawDescGZIP(), []int{13}
  1006. }
  1007. func (x *LeaguePermissionRequest) GetJobs() []*LeaguePermission {
  1008. if x != nil {
  1009. return x.Jobs
  1010. }
  1011. return nil
  1012. }
  1013. // 联盟职位权限
  1014. type LeaguePermission struct {
  1015. state protoimpl.MessageState `protogen:"open.v1"`
  1016. // 职位ID L-联盟-职位表职位ID
  1017. Job int32 `protobuf:"varint,1,opt,name=job,proto3" json:"job,omitempty"`
  1018. // 权限ID L-联盟-权限表权限ID
  1019. Permissions []int32 `protobuf:"varint,2,rep,packed,name=permissions,proto3" json:"permissions,omitempty"`
  1020. unknownFields protoimpl.UnknownFields
  1021. sizeCache protoimpl.SizeCache
  1022. }
  1023. func (x *LeaguePermission) Reset() {
  1024. *x = LeaguePermission{}
  1025. mi := &file_league_proto_msgTypes[14]
  1026. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1027. ms.StoreMessageInfo(mi)
  1028. }
  1029. func (x *LeaguePermission) String() string {
  1030. return protoimpl.X.MessageStringOf(x)
  1031. }
  1032. func (*LeaguePermission) ProtoMessage() {}
  1033. func (x *LeaguePermission) ProtoReflect() protoreflect.Message {
  1034. mi := &file_league_proto_msgTypes[14]
  1035. if x != nil {
  1036. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1037. if ms.LoadMessageInfo() == nil {
  1038. ms.StoreMessageInfo(mi)
  1039. }
  1040. return ms
  1041. }
  1042. return mi.MessageOf(x)
  1043. }
  1044. // Deprecated: Use LeaguePermission.ProtoReflect.Descriptor instead.
  1045. func (*LeaguePermission) Descriptor() ([]byte, []int) {
  1046. return file_league_proto_rawDescGZIP(), []int{14}
  1047. }
  1048. func (x *LeaguePermission) GetJob() int32 {
  1049. if x != nil {
  1050. return x.Job
  1051. }
  1052. return 0
  1053. }
  1054. func (x *LeaguePermission) GetPermissions() []int32 {
  1055. if x != nil {
  1056. return x.Permissions
  1057. }
  1058. return nil
  1059. }
  1060. // 创建联盟
  1061. type LeagueCreateRequest struct {
  1062. state protoimpl.MessageState `protogen:"open.v1"`
  1063. // 联盟名称
  1064. LeagueName string `protobuf:"bytes,1,opt,name=leagueName,proto3" json:"leagueName,omitempty"`
  1065. // 联盟简称
  1066. LeagueAbbName string `protobuf:"bytes,2,opt,name=leagueAbbName,proto3" json:"leagueAbbName,omitempty"`
  1067. // 旗帜背景ID L-联盟-旗帜表旗帜ID
  1068. FlagBg int32 `protobuf:"varint,3,opt,name=flagBg,proto3" json:"flagBg,omitempty"`
  1069. // 旗帜图标ID L-联盟-旗帜表旗帜ID
  1070. FlagIcon int32 `protobuf:"varint,4,opt,name=flagIcon,proto3" json:"flagIcon,omitempty"`
  1071. unknownFields protoimpl.UnknownFields
  1072. sizeCache protoimpl.SizeCache
  1073. }
  1074. func (x *LeagueCreateRequest) Reset() {
  1075. *x = LeagueCreateRequest{}
  1076. mi := &file_league_proto_msgTypes[15]
  1077. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1078. ms.StoreMessageInfo(mi)
  1079. }
  1080. func (x *LeagueCreateRequest) String() string {
  1081. return protoimpl.X.MessageStringOf(x)
  1082. }
  1083. func (*LeagueCreateRequest) ProtoMessage() {}
  1084. func (x *LeagueCreateRequest) ProtoReflect() protoreflect.Message {
  1085. mi := &file_league_proto_msgTypes[15]
  1086. if x != nil {
  1087. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1088. if ms.LoadMessageInfo() == nil {
  1089. ms.StoreMessageInfo(mi)
  1090. }
  1091. return ms
  1092. }
  1093. return mi.MessageOf(x)
  1094. }
  1095. // Deprecated: Use LeagueCreateRequest.ProtoReflect.Descriptor instead.
  1096. func (*LeagueCreateRequest) Descriptor() ([]byte, []int) {
  1097. return file_league_proto_rawDescGZIP(), []int{15}
  1098. }
  1099. func (x *LeagueCreateRequest) GetLeagueName() string {
  1100. if x != nil {
  1101. return x.LeagueName
  1102. }
  1103. return ""
  1104. }
  1105. func (x *LeagueCreateRequest) GetLeagueAbbName() string {
  1106. if x != nil {
  1107. return x.LeagueAbbName
  1108. }
  1109. return ""
  1110. }
  1111. func (x *LeagueCreateRequest) GetFlagBg() int32 {
  1112. if x != nil {
  1113. return x.FlagBg
  1114. }
  1115. return 0
  1116. }
  1117. func (x *LeagueCreateRequest) GetFlagIcon() int32 {
  1118. if x != nil {
  1119. return x.FlagIcon
  1120. }
  1121. return 0
  1122. }
  1123. // 联盟日志列表
  1124. type LeagueLogList struct {
  1125. state protoimpl.MessageState `protogen:"open.v1"`
  1126. // 联盟日志列表
  1127. List []*LeagueLog `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1128. unknownFields protoimpl.UnknownFields
  1129. sizeCache protoimpl.SizeCache
  1130. }
  1131. func (x *LeagueLogList) Reset() {
  1132. *x = LeagueLogList{}
  1133. mi := &file_league_proto_msgTypes[16]
  1134. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1135. ms.StoreMessageInfo(mi)
  1136. }
  1137. func (x *LeagueLogList) String() string {
  1138. return protoimpl.X.MessageStringOf(x)
  1139. }
  1140. func (*LeagueLogList) ProtoMessage() {}
  1141. func (x *LeagueLogList) ProtoReflect() protoreflect.Message {
  1142. mi := &file_league_proto_msgTypes[16]
  1143. if x != nil {
  1144. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1145. if ms.LoadMessageInfo() == nil {
  1146. ms.StoreMessageInfo(mi)
  1147. }
  1148. return ms
  1149. }
  1150. return mi.MessageOf(x)
  1151. }
  1152. // Deprecated: Use LeagueLogList.ProtoReflect.Descriptor instead.
  1153. func (*LeagueLogList) Descriptor() ([]byte, []int) {
  1154. return file_league_proto_rawDescGZIP(), []int{16}
  1155. }
  1156. func (x *LeagueLogList) GetList() []*LeagueLog {
  1157. if x != nil {
  1158. return x.List
  1159. }
  1160. return nil
  1161. }
  1162. // 联盟日志
  1163. type LeagueLog struct {
  1164. state protoimpl.MessageState `protogen:"open.v1"`
  1165. // 联盟日志ID L-联盟-日志表日志类型ID
  1166. LogID int32 `protobuf:"varint,1,opt,name=logID,proto3" json:"logID,omitempty"`
  1167. // 联盟日志参数
  1168. Params []string `protobuf:"bytes,2,rep,name=params,proto3" json:"params,omitempty"`
  1169. // 日志时间戳 单位秒
  1170. LogTime int64 `protobuf:"varint,3,opt,name=logTime,proto3" json:"logTime,omitempty"`
  1171. unknownFields protoimpl.UnknownFields
  1172. sizeCache protoimpl.SizeCache
  1173. }
  1174. func (x *LeagueLog) Reset() {
  1175. *x = LeagueLog{}
  1176. mi := &file_league_proto_msgTypes[17]
  1177. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1178. ms.StoreMessageInfo(mi)
  1179. }
  1180. func (x *LeagueLog) String() string {
  1181. return protoimpl.X.MessageStringOf(x)
  1182. }
  1183. func (*LeagueLog) ProtoMessage() {}
  1184. func (x *LeagueLog) ProtoReflect() protoreflect.Message {
  1185. mi := &file_league_proto_msgTypes[17]
  1186. if x != nil {
  1187. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1188. if ms.LoadMessageInfo() == nil {
  1189. ms.StoreMessageInfo(mi)
  1190. }
  1191. return ms
  1192. }
  1193. return mi.MessageOf(x)
  1194. }
  1195. // Deprecated: Use LeagueLog.ProtoReflect.Descriptor instead.
  1196. func (*LeagueLog) Descriptor() ([]byte, []int) {
  1197. return file_league_proto_rawDescGZIP(), []int{17}
  1198. }
  1199. func (x *LeagueLog) GetLogID() int32 {
  1200. if x != nil {
  1201. return x.LogID
  1202. }
  1203. return 0
  1204. }
  1205. func (x *LeagueLog) GetParams() []string {
  1206. if x != nil {
  1207. return x.Params
  1208. }
  1209. return nil
  1210. }
  1211. func (x *LeagueLog) GetLogTime() int64 {
  1212. if x != nil {
  1213. return x.LogTime
  1214. }
  1215. return 0
  1216. }
  1217. // 盟主转让
  1218. type LeagueTransfer struct {
  1219. state protoimpl.MessageState `protogen:"open.v1"`
  1220. // 转让玩家ID
  1221. PlayerID int64 `protobuf:"varint,1,opt,name=playerID,proto3" json:"playerID,omitempty"`
  1222. // 转让玩家名称
  1223. PlayerName string `protobuf:"bytes,2,opt,name=playerName,proto3" json:"playerName,omitempty"`
  1224. // 转让结束时间 单位秒
  1225. TransferEndTime int64 `protobuf:"varint,3,opt,name=transferEndTime,proto3" json:"transferEndTime,omitempty"`
  1226. unknownFields protoimpl.UnknownFields
  1227. sizeCache protoimpl.SizeCache
  1228. }
  1229. func (x *LeagueTransfer) Reset() {
  1230. *x = LeagueTransfer{}
  1231. mi := &file_league_proto_msgTypes[18]
  1232. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1233. ms.StoreMessageInfo(mi)
  1234. }
  1235. func (x *LeagueTransfer) String() string {
  1236. return protoimpl.X.MessageStringOf(x)
  1237. }
  1238. func (*LeagueTransfer) ProtoMessage() {}
  1239. func (x *LeagueTransfer) ProtoReflect() protoreflect.Message {
  1240. mi := &file_league_proto_msgTypes[18]
  1241. if x != nil {
  1242. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1243. if ms.LoadMessageInfo() == nil {
  1244. ms.StoreMessageInfo(mi)
  1245. }
  1246. return ms
  1247. }
  1248. return mi.MessageOf(x)
  1249. }
  1250. // Deprecated: Use LeagueTransfer.ProtoReflect.Descriptor instead.
  1251. func (*LeagueTransfer) Descriptor() ([]byte, []int) {
  1252. return file_league_proto_rawDescGZIP(), []int{18}
  1253. }
  1254. func (x *LeagueTransfer) GetPlayerID() int64 {
  1255. if x != nil {
  1256. return x.PlayerID
  1257. }
  1258. return 0
  1259. }
  1260. func (x *LeagueTransfer) GetPlayerName() string {
  1261. if x != nil {
  1262. return x.PlayerName
  1263. }
  1264. return ""
  1265. }
  1266. func (x *LeagueTransfer) GetTransferEndTime() int64 {
  1267. if x != nil {
  1268. return x.TransferEndTime
  1269. }
  1270. return 0
  1271. }
  1272. // 职位列表
  1273. type LeagueJobList struct {
  1274. state protoimpl.MessageState `protogen:"open.v1"`
  1275. List []*LeagueJobInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1276. unknownFields protoimpl.UnknownFields
  1277. sizeCache protoimpl.SizeCache
  1278. }
  1279. func (x *LeagueJobList) Reset() {
  1280. *x = LeagueJobList{}
  1281. mi := &file_league_proto_msgTypes[19]
  1282. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1283. ms.StoreMessageInfo(mi)
  1284. }
  1285. func (x *LeagueJobList) String() string {
  1286. return protoimpl.X.MessageStringOf(x)
  1287. }
  1288. func (*LeagueJobList) ProtoMessage() {}
  1289. func (x *LeagueJobList) ProtoReflect() protoreflect.Message {
  1290. mi := &file_league_proto_msgTypes[19]
  1291. if x != nil {
  1292. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1293. if ms.LoadMessageInfo() == nil {
  1294. ms.StoreMessageInfo(mi)
  1295. }
  1296. return ms
  1297. }
  1298. return mi.MessageOf(x)
  1299. }
  1300. // Deprecated: Use LeagueJobList.ProtoReflect.Descriptor instead.
  1301. func (*LeagueJobList) Descriptor() ([]byte, []int) {
  1302. return file_league_proto_rawDescGZIP(), []int{19}
  1303. }
  1304. func (x *LeagueJobList) GetList() []*LeagueJobInfo {
  1305. if x != nil {
  1306. return x.List
  1307. }
  1308. return nil
  1309. }
  1310. // 职位信息
  1311. type LeagueJobInfo struct {
  1312. state protoimpl.MessageState `protogen:"open.v1"`
  1313. // 职位ID L-联盟-职位表职位ID
  1314. JobID int32 `protobuf:"varint,1,opt,name=jobID,proto3" json:"jobID,omitempty"`
  1315. // 当前职位玩家ID 0为无玩家担任当前职位
  1316. PlayerID int64 `protobuf:"varint,2,opt,name=playerID,proto3" json:"playerID,omitempty"`
  1317. // 玩家名称
  1318. PlayerName string `protobuf:"bytes,3,opt,name=playerName,proto3" json:"playerName,omitempty"`
  1319. // 权限列表
  1320. Permissions []int32 `protobuf:"varint,4,rep,packed,name=permissions,proto3" json:"permissions,omitempty"`
  1321. unknownFields protoimpl.UnknownFields
  1322. sizeCache protoimpl.SizeCache
  1323. }
  1324. func (x *LeagueJobInfo) Reset() {
  1325. *x = LeagueJobInfo{}
  1326. mi := &file_league_proto_msgTypes[20]
  1327. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1328. ms.StoreMessageInfo(mi)
  1329. }
  1330. func (x *LeagueJobInfo) String() string {
  1331. return protoimpl.X.MessageStringOf(x)
  1332. }
  1333. func (*LeagueJobInfo) ProtoMessage() {}
  1334. func (x *LeagueJobInfo) ProtoReflect() protoreflect.Message {
  1335. mi := &file_league_proto_msgTypes[20]
  1336. if x != nil {
  1337. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1338. if ms.LoadMessageInfo() == nil {
  1339. ms.StoreMessageInfo(mi)
  1340. }
  1341. return ms
  1342. }
  1343. return mi.MessageOf(x)
  1344. }
  1345. // Deprecated: Use LeagueJobInfo.ProtoReflect.Descriptor instead.
  1346. func (*LeagueJobInfo) Descriptor() ([]byte, []int) {
  1347. return file_league_proto_rawDescGZIP(), []int{20}
  1348. }
  1349. func (x *LeagueJobInfo) GetJobID() int32 {
  1350. if x != nil {
  1351. return x.JobID
  1352. }
  1353. return 0
  1354. }
  1355. func (x *LeagueJobInfo) GetPlayerID() int64 {
  1356. if x != nil {
  1357. return x.PlayerID
  1358. }
  1359. return 0
  1360. }
  1361. func (x *LeagueJobInfo) GetPlayerName() string {
  1362. if x != nil {
  1363. return x.PlayerName
  1364. }
  1365. return ""
  1366. }
  1367. func (x *LeagueJobInfo) GetPermissions() []int32 {
  1368. if x != nil {
  1369. return x.Permissions
  1370. }
  1371. return nil
  1372. }
  1373. // 联盟申请列表
  1374. type LeagueApplyList struct {
  1375. state protoimpl.MessageState `protogen:"open.v1"`
  1376. List []*LeagueApply `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1377. unknownFields protoimpl.UnknownFields
  1378. sizeCache protoimpl.SizeCache
  1379. }
  1380. func (x *LeagueApplyList) Reset() {
  1381. *x = LeagueApplyList{}
  1382. mi := &file_league_proto_msgTypes[21]
  1383. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1384. ms.StoreMessageInfo(mi)
  1385. }
  1386. func (x *LeagueApplyList) String() string {
  1387. return protoimpl.X.MessageStringOf(x)
  1388. }
  1389. func (*LeagueApplyList) ProtoMessage() {}
  1390. func (x *LeagueApplyList) ProtoReflect() protoreflect.Message {
  1391. mi := &file_league_proto_msgTypes[21]
  1392. if x != nil {
  1393. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1394. if ms.LoadMessageInfo() == nil {
  1395. ms.StoreMessageInfo(mi)
  1396. }
  1397. return ms
  1398. }
  1399. return mi.MessageOf(x)
  1400. }
  1401. // Deprecated: Use LeagueApplyList.ProtoReflect.Descriptor instead.
  1402. func (*LeagueApplyList) Descriptor() ([]byte, []int) {
  1403. return file_league_proto_rawDescGZIP(), []int{21}
  1404. }
  1405. func (x *LeagueApplyList) GetList() []*LeagueApply {
  1406. if x != nil {
  1407. return x.List
  1408. }
  1409. return nil
  1410. }
  1411. // 联盟申请
  1412. type LeagueApply struct {
  1413. state protoimpl.MessageState `protogen:"open.v1"`
  1414. // 申请玩家ID
  1415. PlayerID int64 `protobuf:"varint,1,opt,name=playerID,proto3" json:"playerID,omitempty"`
  1416. // 申请玩家名称
  1417. PlayerName string `protobuf:"bytes,2,opt,name=playerName,proto3" json:"playerName,omitempty"`
  1418. // 玩家领主等级
  1419. Level int32 `protobuf:"varint,3,opt,name=level,proto3" json:"level,omitempty"`
  1420. // 玩家声望
  1421. Prestige int32 `protobuf:"varint,4,opt,name=prestige,proto3" json:"prestige,omitempty"`
  1422. // 玩家主城位置
  1423. Location *Point `protobuf:"bytes,5,opt,name=location,proto3" json:"location,omitempty"`
  1424. // 申请时间戳 单位秒
  1425. ApplyTime int64 `protobuf:"varint,6,opt,name=applyTime,proto3" json:"applyTime,omitempty"`
  1426. unknownFields protoimpl.UnknownFields
  1427. sizeCache protoimpl.SizeCache
  1428. }
  1429. func (x *LeagueApply) Reset() {
  1430. *x = LeagueApply{}
  1431. mi := &file_league_proto_msgTypes[22]
  1432. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1433. ms.StoreMessageInfo(mi)
  1434. }
  1435. func (x *LeagueApply) String() string {
  1436. return protoimpl.X.MessageStringOf(x)
  1437. }
  1438. func (*LeagueApply) ProtoMessage() {}
  1439. func (x *LeagueApply) ProtoReflect() protoreflect.Message {
  1440. mi := &file_league_proto_msgTypes[22]
  1441. if x != nil {
  1442. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1443. if ms.LoadMessageInfo() == nil {
  1444. ms.StoreMessageInfo(mi)
  1445. }
  1446. return ms
  1447. }
  1448. return mi.MessageOf(x)
  1449. }
  1450. // Deprecated: Use LeagueApply.ProtoReflect.Descriptor instead.
  1451. func (*LeagueApply) Descriptor() ([]byte, []int) {
  1452. return file_league_proto_rawDescGZIP(), []int{22}
  1453. }
  1454. func (x *LeagueApply) GetPlayerID() int64 {
  1455. if x != nil {
  1456. return x.PlayerID
  1457. }
  1458. return 0
  1459. }
  1460. func (x *LeagueApply) GetPlayerName() string {
  1461. if x != nil {
  1462. return x.PlayerName
  1463. }
  1464. return ""
  1465. }
  1466. func (x *LeagueApply) GetLevel() int32 {
  1467. if x != nil {
  1468. return x.Level
  1469. }
  1470. return 0
  1471. }
  1472. func (x *LeagueApply) GetPrestige() int32 {
  1473. if x != nil {
  1474. return x.Prestige
  1475. }
  1476. return 0
  1477. }
  1478. func (x *LeagueApply) GetLocation() *Point {
  1479. if x != nil {
  1480. return x.Location
  1481. }
  1482. return nil
  1483. }
  1484. func (x *LeagueApply) GetApplyTime() int64 {
  1485. if x != nil {
  1486. return x.ApplyTime
  1487. }
  1488. return 0
  1489. }
  1490. // 联盟入盟审批&等级&公告设置
  1491. type LeagueBaseSetting struct {
  1492. state protoimpl.MessageState `protogen:"open.v1"`
  1493. // 入盟是否需要审批
  1494. NeedApprove bool `protobuf:"varint,1,opt,name=needApprove,proto3" json:"needApprove,omitempty"`
  1495. // 入盟所需主城等级
  1496. LevelLimit int32 `protobuf:"varint,2,opt,name=levelLimit,proto3" json:"levelLimit,omitempty"`
  1497. // 联盟公告
  1498. LeagueNotice string `protobuf:"bytes,3,opt,name=leagueNotice,proto3" json:"leagueNotice,omitempty"`
  1499. unknownFields protoimpl.UnknownFields
  1500. sizeCache protoimpl.SizeCache
  1501. }
  1502. func (x *LeagueBaseSetting) Reset() {
  1503. *x = LeagueBaseSetting{}
  1504. mi := &file_league_proto_msgTypes[23]
  1505. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1506. ms.StoreMessageInfo(mi)
  1507. }
  1508. func (x *LeagueBaseSetting) String() string {
  1509. return protoimpl.X.MessageStringOf(x)
  1510. }
  1511. func (*LeagueBaseSetting) ProtoMessage() {}
  1512. func (x *LeagueBaseSetting) ProtoReflect() protoreflect.Message {
  1513. mi := &file_league_proto_msgTypes[23]
  1514. if x != nil {
  1515. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1516. if ms.LoadMessageInfo() == nil {
  1517. ms.StoreMessageInfo(mi)
  1518. }
  1519. return ms
  1520. }
  1521. return mi.MessageOf(x)
  1522. }
  1523. // Deprecated: Use LeagueBaseSetting.ProtoReflect.Descriptor instead.
  1524. func (*LeagueBaseSetting) Descriptor() ([]byte, []int) {
  1525. return file_league_proto_rawDescGZIP(), []int{23}
  1526. }
  1527. func (x *LeagueBaseSetting) GetNeedApprove() bool {
  1528. if x != nil {
  1529. return x.NeedApprove
  1530. }
  1531. return false
  1532. }
  1533. func (x *LeagueBaseSetting) GetLevelLimit() int32 {
  1534. if x != nil {
  1535. return x.LevelLimit
  1536. }
  1537. return 0
  1538. }
  1539. func (x *LeagueBaseSetting) GetLeagueNotice() string {
  1540. if x != nil {
  1541. return x.LeagueNotice
  1542. }
  1543. return ""
  1544. }
  1545. // 弹劾信息
  1546. type LeagueImpeachInfo struct {
  1547. state protoimpl.MessageState `protogen:"open.v1"`
  1548. // 发起弹劾玩家ID
  1549. PlayerID int64 `protobuf:"varint,1,opt,name=playerID,proto3" json:"playerID,omitempty"`
  1550. // 发起弹劾玩家名称
  1551. PlayerName string `protobuf:"bytes,2,opt,name=playerName,proto3" json:"playerName,omitempty"`
  1552. // 同意人数
  1553. AgreeCount int32 `protobuf:"varint,3,opt,name=agreeCount,proto3" json:"agreeCount,omitempty"`
  1554. // 反对人数
  1555. RejectCount int32 `protobuf:"varint,4,opt,name=rejectCount,proto3" json:"rejectCount,omitempty"`
  1556. // 我的投票结果 0-未投票 1-同意 2-反对
  1557. MyVote int32 `protobuf:"varint,5,opt,name=myVote,proto3" json:"myVote,omitempty"`
  1558. // 弹劾结束时间 单位秒
  1559. EndTime int64 `protobuf:"varint,6,opt,name=endTime,proto3" json:"endTime,omitempty"`
  1560. unknownFields protoimpl.UnknownFields
  1561. sizeCache protoimpl.SizeCache
  1562. }
  1563. func (x *LeagueImpeachInfo) Reset() {
  1564. *x = LeagueImpeachInfo{}
  1565. mi := &file_league_proto_msgTypes[24]
  1566. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1567. ms.StoreMessageInfo(mi)
  1568. }
  1569. func (x *LeagueImpeachInfo) String() string {
  1570. return protoimpl.X.MessageStringOf(x)
  1571. }
  1572. func (*LeagueImpeachInfo) ProtoMessage() {}
  1573. func (x *LeagueImpeachInfo) ProtoReflect() protoreflect.Message {
  1574. mi := &file_league_proto_msgTypes[24]
  1575. if x != nil {
  1576. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1577. if ms.LoadMessageInfo() == nil {
  1578. ms.StoreMessageInfo(mi)
  1579. }
  1580. return ms
  1581. }
  1582. return mi.MessageOf(x)
  1583. }
  1584. // Deprecated: Use LeagueImpeachInfo.ProtoReflect.Descriptor instead.
  1585. func (*LeagueImpeachInfo) Descriptor() ([]byte, []int) {
  1586. return file_league_proto_rawDescGZIP(), []int{24}
  1587. }
  1588. func (x *LeagueImpeachInfo) GetPlayerID() int64 {
  1589. if x != nil {
  1590. return x.PlayerID
  1591. }
  1592. return 0
  1593. }
  1594. func (x *LeagueImpeachInfo) GetPlayerName() string {
  1595. if x != nil {
  1596. return x.PlayerName
  1597. }
  1598. return ""
  1599. }
  1600. func (x *LeagueImpeachInfo) GetAgreeCount() int32 {
  1601. if x != nil {
  1602. return x.AgreeCount
  1603. }
  1604. return 0
  1605. }
  1606. func (x *LeagueImpeachInfo) GetRejectCount() int32 {
  1607. if x != nil {
  1608. return x.RejectCount
  1609. }
  1610. return 0
  1611. }
  1612. func (x *LeagueImpeachInfo) GetMyVote() int32 {
  1613. if x != nil {
  1614. return x.MyVote
  1615. }
  1616. return 0
  1617. }
  1618. func (x *LeagueImpeachInfo) GetEndTime() int64 {
  1619. if x != nil {
  1620. return x.EndTime
  1621. }
  1622. return 0
  1623. }
  1624. // 职位信息
  1625. type LeagueJob struct {
  1626. state protoimpl.MessageState `protogen:"open.v1"`
  1627. // 当前职位 0表示已没有任何职位
  1628. Job int32 `protobuf:"varint,1,opt,name=job,proto3" json:"job,omitempty"`
  1629. // 权限列表
  1630. Permissions []int32 `protobuf:"varint,2,rep,packed,name=permissions,proto3" json:"permissions,omitempty"`
  1631. unknownFields protoimpl.UnknownFields
  1632. sizeCache protoimpl.SizeCache
  1633. }
  1634. func (x *LeagueJob) Reset() {
  1635. *x = LeagueJob{}
  1636. mi := &file_league_proto_msgTypes[25]
  1637. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1638. ms.StoreMessageInfo(mi)
  1639. }
  1640. func (x *LeagueJob) String() string {
  1641. return protoimpl.X.MessageStringOf(x)
  1642. }
  1643. func (*LeagueJob) ProtoMessage() {}
  1644. func (x *LeagueJob) ProtoReflect() protoreflect.Message {
  1645. mi := &file_league_proto_msgTypes[25]
  1646. if x != nil {
  1647. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1648. if ms.LoadMessageInfo() == nil {
  1649. ms.StoreMessageInfo(mi)
  1650. }
  1651. return ms
  1652. }
  1653. return mi.MessageOf(x)
  1654. }
  1655. // Deprecated: Use LeagueJob.ProtoReflect.Descriptor instead.
  1656. func (*LeagueJob) Descriptor() ([]byte, []int) {
  1657. return file_league_proto_rawDescGZIP(), []int{25}
  1658. }
  1659. func (x *LeagueJob) GetJob() int32 {
  1660. if x != nil {
  1661. return x.Job
  1662. }
  1663. return 0
  1664. }
  1665. func (x *LeagueJob) GetPermissions() []int32 {
  1666. if x != nil {
  1667. return x.Permissions
  1668. }
  1669. return nil
  1670. }
  1671. // 联盟驻地列表
  1672. type LeagueResidenceList struct {
  1673. state protoimpl.MessageState `protogen:"open.v1"`
  1674. List []*LeagueResidence `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  1675. unknownFields protoimpl.UnknownFields
  1676. sizeCache protoimpl.SizeCache
  1677. }
  1678. func (x *LeagueResidenceList) Reset() {
  1679. *x = LeagueResidenceList{}
  1680. mi := &file_league_proto_msgTypes[26]
  1681. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1682. ms.StoreMessageInfo(mi)
  1683. }
  1684. func (x *LeagueResidenceList) String() string {
  1685. return protoimpl.X.MessageStringOf(x)
  1686. }
  1687. func (*LeagueResidenceList) ProtoMessage() {}
  1688. func (x *LeagueResidenceList) ProtoReflect() protoreflect.Message {
  1689. mi := &file_league_proto_msgTypes[26]
  1690. if x != nil {
  1691. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1692. if ms.LoadMessageInfo() == nil {
  1693. ms.StoreMessageInfo(mi)
  1694. }
  1695. return ms
  1696. }
  1697. return mi.MessageOf(x)
  1698. }
  1699. // Deprecated: Use LeagueResidenceList.ProtoReflect.Descriptor instead.
  1700. func (*LeagueResidenceList) Descriptor() ([]byte, []int) {
  1701. return file_league_proto_rawDescGZIP(), []int{26}
  1702. }
  1703. func (x *LeagueResidenceList) GetList() []*LeagueResidence {
  1704. if x != nil {
  1705. return x.List
  1706. }
  1707. return nil
  1708. }
  1709. // 入住联盟驻地玩家基础信息
  1710. type LeagueResidence struct {
  1711. state protoimpl.MessageState `protogen:"open.v1"`
  1712. // 玩家ID
  1713. PlayerID int64 `protobuf:"varint,1,opt,name=playerID,proto3" json:"playerID,omitempty"`
  1714. // 玩家名称
  1715. PlayerName string `protobuf:"bytes,2,opt,name=playerName,proto3" json:"playerName,omitempty"`
  1716. // 驻地下标索引 从0开始
  1717. Index int32 `protobuf:"varint,3,opt,name=index,proto3" json:"index,omitempty"`
  1718. unknownFields protoimpl.UnknownFields
  1719. sizeCache protoimpl.SizeCache
  1720. }
  1721. func (x *LeagueResidence) Reset() {
  1722. *x = LeagueResidence{}
  1723. mi := &file_league_proto_msgTypes[27]
  1724. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1725. ms.StoreMessageInfo(mi)
  1726. }
  1727. func (x *LeagueResidence) String() string {
  1728. return protoimpl.X.MessageStringOf(x)
  1729. }
  1730. func (*LeagueResidence) ProtoMessage() {}
  1731. func (x *LeagueResidence) ProtoReflect() protoreflect.Message {
  1732. mi := &file_league_proto_msgTypes[27]
  1733. if x != nil {
  1734. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1735. if ms.LoadMessageInfo() == nil {
  1736. ms.StoreMessageInfo(mi)
  1737. }
  1738. return ms
  1739. }
  1740. return mi.MessageOf(x)
  1741. }
  1742. // Deprecated: Use LeagueResidence.ProtoReflect.Descriptor instead.
  1743. func (*LeagueResidence) Descriptor() ([]byte, []int) {
  1744. return file_league_proto_rawDescGZIP(), []int{27}
  1745. }
  1746. func (x *LeagueResidence) GetPlayerID() int64 {
  1747. if x != nil {
  1748. return x.PlayerID
  1749. }
  1750. return 0
  1751. }
  1752. func (x *LeagueResidence) GetPlayerName() string {
  1753. if x != nil {
  1754. return x.PlayerName
  1755. }
  1756. return ""
  1757. }
  1758. func (x *LeagueResidence) GetIndex() int32 {
  1759. if x != nil {
  1760. return x.Index
  1761. }
  1762. return 0
  1763. }
  1764. // 联盟成员战绩信息
  1765. type LeagueMemberRecordInfo struct {
  1766. state protoimpl.MessageState `protogen:"open.v1"`
  1767. // 玩家ID
  1768. PlayerID int64 `protobuf:"varint,1,opt,name=playerID,proto3" json:"playerID,omitempty"`
  1769. // 玩家名称
  1770. PlayerName string `protobuf:"bytes,2,opt,name=playerName,proto3" json:"playerName,omitempty"`
  1771. // 领主等级
  1772. LordLevel int32 `protobuf:"varint,3,opt,name=lordLevel,proto3" json:"lordLevel,omitempty"`
  1773. // 头像
  1774. IconID int32 `protobuf:"varint,4,opt,name=iconID,proto3" json:"iconID,omitempty"`
  1775. // 头像框ID
  1776. FrameID int32 `protobuf:"varint,5,opt,name=frameID,proto3" json:"frameID,omitempty"`
  1777. // 职位
  1778. Job int32 `protobuf:"varint,6,opt,name=job,proto3" json:"job,omitempty"`
  1779. // 玩家战绩列表 0本周 1上周 2上上周 空则无战绩
  1780. Records map[int32]*LeagueMemberRecord `protobuf:"bytes,7,rep,name=records,proto3" json:"records,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1781. unknownFields protoimpl.UnknownFields
  1782. sizeCache protoimpl.SizeCache
  1783. }
  1784. func (x *LeagueMemberRecordInfo) Reset() {
  1785. *x = LeagueMemberRecordInfo{}
  1786. mi := &file_league_proto_msgTypes[28]
  1787. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1788. ms.StoreMessageInfo(mi)
  1789. }
  1790. func (x *LeagueMemberRecordInfo) String() string {
  1791. return protoimpl.X.MessageStringOf(x)
  1792. }
  1793. func (*LeagueMemberRecordInfo) ProtoMessage() {}
  1794. func (x *LeagueMemberRecordInfo) ProtoReflect() protoreflect.Message {
  1795. mi := &file_league_proto_msgTypes[28]
  1796. if x != nil {
  1797. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1798. if ms.LoadMessageInfo() == nil {
  1799. ms.StoreMessageInfo(mi)
  1800. }
  1801. return ms
  1802. }
  1803. return mi.MessageOf(x)
  1804. }
  1805. // Deprecated: Use LeagueMemberRecordInfo.ProtoReflect.Descriptor instead.
  1806. func (*LeagueMemberRecordInfo) Descriptor() ([]byte, []int) {
  1807. return file_league_proto_rawDescGZIP(), []int{28}
  1808. }
  1809. func (x *LeagueMemberRecordInfo) GetPlayerID() int64 {
  1810. if x != nil {
  1811. return x.PlayerID
  1812. }
  1813. return 0
  1814. }
  1815. func (x *LeagueMemberRecordInfo) GetPlayerName() string {
  1816. if x != nil {
  1817. return x.PlayerName
  1818. }
  1819. return ""
  1820. }
  1821. func (x *LeagueMemberRecordInfo) GetLordLevel() int32 {
  1822. if x != nil {
  1823. return x.LordLevel
  1824. }
  1825. return 0
  1826. }
  1827. func (x *LeagueMemberRecordInfo) GetIconID() int32 {
  1828. if x != nil {
  1829. return x.IconID
  1830. }
  1831. return 0
  1832. }
  1833. func (x *LeagueMemberRecordInfo) GetFrameID() int32 {
  1834. if x != nil {
  1835. return x.FrameID
  1836. }
  1837. return 0
  1838. }
  1839. func (x *LeagueMemberRecordInfo) GetJob() int32 {
  1840. if x != nil {
  1841. return x.Job
  1842. }
  1843. return 0
  1844. }
  1845. func (x *LeagueMemberRecordInfo) GetRecords() map[int32]*LeagueMemberRecord {
  1846. if x != nil {
  1847. return x.Records
  1848. }
  1849. return nil
  1850. }
  1851. // 联盟成员战绩
  1852. type LeagueMemberRecord struct {
  1853. state protoimpl.MessageState `protogen:"open.v1"`
  1854. // 玩家战绩 key 战绩枚举类型 value 对应值
  1855. WeekDatas map[int32]int32 `protobuf:"bytes,1,rep,name=weekDatas,proto3" json:"weekDatas,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  1856. unknownFields protoimpl.UnknownFields
  1857. sizeCache protoimpl.SizeCache
  1858. }
  1859. func (x *LeagueMemberRecord) Reset() {
  1860. *x = LeagueMemberRecord{}
  1861. mi := &file_league_proto_msgTypes[29]
  1862. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1863. ms.StoreMessageInfo(mi)
  1864. }
  1865. func (x *LeagueMemberRecord) String() string {
  1866. return protoimpl.X.MessageStringOf(x)
  1867. }
  1868. func (*LeagueMemberRecord) ProtoMessage() {}
  1869. func (x *LeagueMemberRecord) ProtoReflect() protoreflect.Message {
  1870. mi := &file_league_proto_msgTypes[29]
  1871. if x != nil {
  1872. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1873. if ms.LoadMessageInfo() == nil {
  1874. ms.StoreMessageInfo(mi)
  1875. }
  1876. return ms
  1877. }
  1878. return mi.MessageOf(x)
  1879. }
  1880. // Deprecated: Use LeagueMemberRecord.ProtoReflect.Descriptor instead.
  1881. func (*LeagueMemberRecord) Descriptor() ([]byte, []int) {
  1882. return file_league_proto_rawDescGZIP(), []int{29}
  1883. }
  1884. func (x *LeagueMemberRecord) GetWeekDatas() map[int32]int32 {
  1885. if x != nil {
  1886. return x.WeekDatas
  1887. }
  1888. return nil
  1889. }
  1890. // 联盟仓库
  1891. type LeagueStorage struct {
  1892. state protoimpl.MessageState `protogen:"open.v1"`
  1893. // 仓库货币列表
  1894. Currencies map[int32]*Currency `protobuf:"bytes,1,rep,name=currencies,proto3" json:"currencies,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1895. // 货币税率
  1896. Ratios map[int32]*StorageRatio `protobuf:"bytes,2,rep,name=ratios,proto3" json:"ratios,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1897. // F币分配剩余次数(每日重置)
  1898. FBonusRemainCount int32 `protobuf:"varint,3,opt,name=fBonusRemainCount,proto3" json:"fBonusRemainCount,omitempty"`
  1899. unknownFields protoimpl.UnknownFields
  1900. sizeCache protoimpl.SizeCache
  1901. }
  1902. func (x *LeagueStorage) Reset() {
  1903. *x = LeagueStorage{}
  1904. mi := &file_league_proto_msgTypes[30]
  1905. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1906. ms.StoreMessageInfo(mi)
  1907. }
  1908. func (x *LeagueStorage) String() string {
  1909. return protoimpl.X.MessageStringOf(x)
  1910. }
  1911. func (*LeagueStorage) ProtoMessage() {}
  1912. func (x *LeagueStorage) ProtoReflect() protoreflect.Message {
  1913. mi := &file_league_proto_msgTypes[30]
  1914. if x != nil {
  1915. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1916. if ms.LoadMessageInfo() == nil {
  1917. ms.StoreMessageInfo(mi)
  1918. }
  1919. return ms
  1920. }
  1921. return mi.MessageOf(x)
  1922. }
  1923. // Deprecated: Use LeagueStorage.ProtoReflect.Descriptor instead.
  1924. func (*LeagueStorage) Descriptor() ([]byte, []int) {
  1925. return file_league_proto_rawDescGZIP(), []int{30}
  1926. }
  1927. func (x *LeagueStorage) GetCurrencies() map[int32]*Currency {
  1928. if x != nil {
  1929. return x.Currencies
  1930. }
  1931. return nil
  1932. }
  1933. func (x *LeagueStorage) GetRatios() map[int32]*StorageRatio {
  1934. if x != nil {
  1935. return x.Ratios
  1936. }
  1937. return nil
  1938. }
  1939. func (x *LeagueStorage) GetFBonusRemainCount() int32 {
  1940. if x != nil {
  1941. return x.FBonusRemainCount
  1942. }
  1943. return 0
  1944. }
  1945. // 联盟资源税率
  1946. type StorageRatio struct {
  1947. state protoimpl.MessageState `protogen:"open.v1"`
  1948. // 货币ID
  1949. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1950. // 税率 百分比
  1951. Ratio int32 `protobuf:"varint,2,opt,name=ratio,proto3" json:"ratio,omitempty"`
  1952. // 剩余调整次数(每日重置)
  1953. RemainCount int32 `protobuf:"varint,3,opt,name=remainCount,proto3" json:"remainCount,omitempty"`
  1954. unknownFields protoimpl.UnknownFields
  1955. sizeCache protoimpl.SizeCache
  1956. }
  1957. func (x *StorageRatio) Reset() {
  1958. *x = StorageRatio{}
  1959. mi := &file_league_proto_msgTypes[31]
  1960. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1961. ms.StoreMessageInfo(mi)
  1962. }
  1963. func (x *StorageRatio) String() string {
  1964. return protoimpl.X.MessageStringOf(x)
  1965. }
  1966. func (*StorageRatio) ProtoMessage() {}
  1967. func (x *StorageRatio) ProtoReflect() protoreflect.Message {
  1968. mi := &file_league_proto_msgTypes[31]
  1969. if x != nil {
  1970. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1971. if ms.LoadMessageInfo() == nil {
  1972. ms.StoreMessageInfo(mi)
  1973. }
  1974. return ms
  1975. }
  1976. return mi.MessageOf(x)
  1977. }
  1978. // Deprecated: Use StorageRatio.ProtoReflect.Descriptor instead.
  1979. func (*StorageRatio) Descriptor() ([]byte, []int) {
  1980. return file_league_proto_rawDescGZIP(), []int{31}
  1981. }
  1982. func (x *StorageRatio) GetId() int32 {
  1983. if x != nil {
  1984. return x.Id
  1985. }
  1986. return 0
  1987. }
  1988. func (x *StorageRatio) GetRatio() int32 {
  1989. if x != nil {
  1990. return x.Ratio
  1991. }
  1992. return 0
  1993. }
  1994. func (x *StorageRatio) GetRemainCount() int32 {
  1995. if x != nil {
  1996. return x.RemainCount
  1997. }
  1998. return 0
  1999. }
  2000. // F币分红
  2001. type LeagueFundBonus struct {
  2002. state protoimpl.MessageState `protogen:"open.v1"`
  2003. // 总分红F币数量
  2004. TotalFund int64 `protobuf:"varint,1,opt,name=totalFund,proto3" json:"totalFund,omitempty"`
  2005. // 成员ID列表
  2006. MemberIDList []int64 `protobuf:"varint,2,rep,packed,name=memberIDList,proto3" json:"memberIDList,omitempty"`
  2007. unknownFields protoimpl.UnknownFields
  2008. sizeCache protoimpl.SizeCache
  2009. }
  2010. func (x *LeagueFundBonus) Reset() {
  2011. *x = LeagueFundBonus{}
  2012. mi := &file_league_proto_msgTypes[32]
  2013. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2014. ms.StoreMessageInfo(mi)
  2015. }
  2016. func (x *LeagueFundBonus) String() string {
  2017. return protoimpl.X.MessageStringOf(x)
  2018. }
  2019. func (*LeagueFundBonus) ProtoMessage() {}
  2020. func (x *LeagueFundBonus) ProtoReflect() protoreflect.Message {
  2021. mi := &file_league_proto_msgTypes[32]
  2022. if x != nil {
  2023. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2024. if ms.LoadMessageInfo() == nil {
  2025. ms.StoreMessageInfo(mi)
  2026. }
  2027. return ms
  2028. }
  2029. return mi.MessageOf(x)
  2030. }
  2031. // Deprecated: Use LeagueFundBonus.ProtoReflect.Descriptor instead.
  2032. func (*LeagueFundBonus) Descriptor() ([]byte, []int) {
  2033. return file_league_proto_rawDescGZIP(), []int{32}
  2034. }
  2035. func (x *LeagueFundBonus) GetTotalFund() int64 {
  2036. if x != nil {
  2037. return x.TotalFund
  2038. }
  2039. return 0
  2040. }
  2041. func (x *LeagueFundBonus) GetMemberIDList() []int64 {
  2042. if x != nil {
  2043. return x.MemberIDList
  2044. }
  2045. return nil
  2046. }
  2047. // 联盟职位
  2048. type LeaguePlayerJob struct {
  2049. state protoimpl.MessageState `protogen:"open.v1"`
  2050. // 联盟ID 没加入为0
  2051. LeagueID int64 `protobuf:"varint,7,opt,name=leagueID,proto3" json:"leagueID,omitempty"`
  2052. // 联盟名称
  2053. LeagueName string `protobuf:"bytes,8,opt,name=leagueName,proto3" json:"leagueName,omitempty"`
  2054. // 联盟简称
  2055. LeagueAbbName string `protobuf:"bytes,9,opt,name=leagueAbbName,proto3" json:"leagueAbbName,omitempty"`
  2056. // 所在联盟职位ID L-联盟-职位表职位ID
  2057. JobID int32 `protobuf:"varint,10,opt,name=jobID,proto3" json:"jobID,omitempty"`
  2058. unknownFields protoimpl.UnknownFields
  2059. sizeCache protoimpl.SizeCache
  2060. }
  2061. func (x *LeaguePlayerJob) Reset() {
  2062. *x = LeaguePlayerJob{}
  2063. mi := &file_league_proto_msgTypes[33]
  2064. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2065. ms.StoreMessageInfo(mi)
  2066. }
  2067. func (x *LeaguePlayerJob) String() string {
  2068. return protoimpl.X.MessageStringOf(x)
  2069. }
  2070. func (*LeaguePlayerJob) ProtoMessage() {}
  2071. func (x *LeaguePlayerJob) ProtoReflect() protoreflect.Message {
  2072. mi := &file_league_proto_msgTypes[33]
  2073. if x != nil {
  2074. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2075. if ms.LoadMessageInfo() == nil {
  2076. ms.StoreMessageInfo(mi)
  2077. }
  2078. return ms
  2079. }
  2080. return mi.MessageOf(x)
  2081. }
  2082. // Deprecated: Use LeaguePlayerJob.ProtoReflect.Descriptor instead.
  2083. func (*LeaguePlayerJob) Descriptor() ([]byte, []int) {
  2084. return file_league_proto_rawDescGZIP(), []int{33}
  2085. }
  2086. func (x *LeaguePlayerJob) GetLeagueID() int64 {
  2087. if x != nil {
  2088. return x.LeagueID
  2089. }
  2090. return 0
  2091. }
  2092. func (x *LeaguePlayerJob) GetLeagueName() string {
  2093. if x != nil {
  2094. return x.LeagueName
  2095. }
  2096. return ""
  2097. }
  2098. func (x *LeaguePlayerJob) GetLeagueAbbName() string {
  2099. if x != nil {
  2100. return x.LeagueAbbName
  2101. }
  2102. return ""
  2103. }
  2104. func (x *LeaguePlayerJob) GetJobID() int32 {
  2105. if x != nil {
  2106. return x.JobID
  2107. }
  2108. return 0
  2109. }
  2110. // 联盟外交列表
  2111. type LeagueDiplomacyInfos struct {
  2112. state protoimpl.MessageState `protogen:"open.v1"`
  2113. List []*LeagueDiplomacyInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list,omitempty"`
  2114. unknownFields protoimpl.UnknownFields
  2115. sizeCache protoimpl.SizeCache
  2116. }
  2117. func (x *LeagueDiplomacyInfos) Reset() {
  2118. *x = LeagueDiplomacyInfos{}
  2119. mi := &file_league_proto_msgTypes[34]
  2120. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2121. ms.StoreMessageInfo(mi)
  2122. }
  2123. func (x *LeagueDiplomacyInfos) String() string {
  2124. return protoimpl.X.MessageStringOf(x)
  2125. }
  2126. func (*LeagueDiplomacyInfos) ProtoMessage() {}
  2127. func (x *LeagueDiplomacyInfos) ProtoReflect() protoreflect.Message {
  2128. mi := &file_league_proto_msgTypes[34]
  2129. if x != nil {
  2130. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2131. if ms.LoadMessageInfo() == nil {
  2132. ms.StoreMessageInfo(mi)
  2133. }
  2134. return ms
  2135. }
  2136. return mi.MessageOf(x)
  2137. }
  2138. // Deprecated: Use LeagueDiplomacyInfos.ProtoReflect.Descriptor instead.
  2139. func (*LeagueDiplomacyInfos) Descriptor() ([]byte, []int) {
  2140. return file_league_proto_rawDescGZIP(), []int{34}
  2141. }
  2142. func (x *LeagueDiplomacyInfos) GetList() []*LeagueDiplomacyInfo {
  2143. if x != nil {
  2144. return x.List
  2145. }
  2146. return nil
  2147. }
  2148. // 联盟外交信息
  2149. type LeagueDiplomacyInfo struct {
  2150. state protoimpl.MessageState `protogen:"open.v1"`
  2151. // 联盟ID
  2152. LeagueID int64 `protobuf:"varint,1,opt,name=leagueID,proto3" json:"leagueID,omitempty"`
  2153. // 联盟名称
  2154. LeagueName string `protobuf:"bytes,2,opt,name=leagueName,proto3" json:"leagueName,omitempty"`
  2155. // 联盟简称
  2156. LeagueAbbName string `protobuf:"bytes,3,opt,name=leagueAbbName,proto3" json:"leagueAbbName,omitempty"`
  2157. // 联盟等级
  2158. Level int32 `protobuf:"varint,4,opt,name=level,proto3" json:"level,omitempty"`
  2159. // 声望
  2160. Prestige int32 `protobuf:"varint,5,opt,name=prestige,proto3" json:"prestige,omitempty"`
  2161. // 联盟当前成员数量
  2162. MemberCount int32 `protobuf:"varint,6,opt,name=memberCount,proto3" json:"memberCount,omitempty"`
  2163. // 旗帜背景
  2164. FlagBg int32 `protobuf:"varint,7,opt,name=flagBg,proto3" json:"flagBg,omitempty"`
  2165. // 旗帜图标
  2166. FlagIcon int32 `protobuf:"varint,8,opt,name=flagIcon,proto3" json:"flagIcon,omitempty"`
  2167. // 所属地坐标
  2168. Location *Point `protobuf:"bytes,9,opt,name=location,proto3" json:"location,omitempty"`
  2169. // 联盟创建时间戳 单位秒
  2170. CreateTime int64 `protobuf:"varint,10,opt,name=createTime,proto3" json:"createTime,omitempty"`
  2171. // 联邦ID
  2172. UninID int64 `protobuf:"varint,21,opt,name=uninID,proto3" json:"uninID,omitempty"`
  2173. // 友盟联盟ID列表
  2174. Umengs []int64 `protobuf:"varint,22,rep,packed,name=umengs,proto3" json:"umengs,omitempty"`
  2175. unknownFields protoimpl.UnknownFields
  2176. sizeCache protoimpl.SizeCache
  2177. }
  2178. func (x *LeagueDiplomacyInfo) Reset() {
  2179. *x = LeagueDiplomacyInfo{}
  2180. mi := &file_league_proto_msgTypes[35]
  2181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2182. ms.StoreMessageInfo(mi)
  2183. }
  2184. func (x *LeagueDiplomacyInfo) String() string {
  2185. return protoimpl.X.MessageStringOf(x)
  2186. }
  2187. func (*LeagueDiplomacyInfo) ProtoMessage() {}
  2188. func (x *LeagueDiplomacyInfo) ProtoReflect() protoreflect.Message {
  2189. mi := &file_league_proto_msgTypes[35]
  2190. if x != nil {
  2191. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2192. if ms.LoadMessageInfo() == nil {
  2193. ms.StoreMessageInfo(mi)
  2194. }
  2195. return ms
  2196. }
  2197. return mi.MessageOf(x)
  2198. }
  2199. // Deprecated: Use LeagueDiplomacyInfo.ProtoReflect.Descriptor instead.
  2200. func (*LeagueDiplomacyInfo) Descriptor() ([]byte, []int) {
  2201. return file_league_proto_rawDescGZIP(), []int{35}
  2202. }
  2203. func (x *LeagueDiplomacyInfo) GetLeagueID() int64 {
  2204. if x != nil {
  2205. return x.LeagueID
  2206. }
  2207. return 0
  2208. }
  2209. func (x *LeagueDiplomacyInfo) GetLeagueName() string {
  2210. if x != nil {
  2211. return x.LeagueName
  2212. }
  2213. return ""
  2214. }
  2215. func (x *LeagueDiplomacyInfo) GetLeagueAbbName() string {
  2216. if x != nil {
  2217. return x.LeagueAbbName
  2218. }
  2219. return ""
  2220. }
  2221. func (x *LeagueDiplomacyInfo) GetLevel() int32 {
  2222. if x != nil {
  2223. return x.Level
  2224. }
  2225. return 0
  2226. }
  2227. func (x *LeagueDiplomacyInfo) GetPrestige() int32 {
  2228. if x != nil {
  2229. return x.Prestige
  2230. }
  2231. return 0
  2232. }
  2233. func (x *LeagueDiplomacyInfo) GetMemberCount() int32 {
  2234. if x != nil {
  2235. return x.MemberCount
  2236. }
  2237. return 0
  2238. }
  2239. func (x *LeagueDiplomacyInfo) GetFlagBg() int32 {
  2240. if x != nil {
  2241. return x.FlagBg
  2242. }
  2243. return 0
  2244. }
  2245. func (x *LeagueDiplomacyInfo) GetFlagIcon() int32 {
  2246. if x != nil {
  2247. return x.FlagIcon
  2248. }
  2249. return 0
  2250. }
  2251. func (x *LeagueDiplomacyInfo) GetLocation() *Point {
  2252. if x != nil {
  2253. return x.Location
  2254. }
  2255. return nil
  2256. }
  2257. func (x *LeagueDiplomacyInfo) GetCreateTime() int64 {
  2258. if x != nil {
  2259. return x.CreateTime
  2260. }
  2261. return 0
  2262. }
  2263. func (x *LeagueDiplomacyInfo) GetUninID() int64 {
  2264. if x != nil {
  2265. return x.UninID
  2266. }
  2267. return 0
  2268. }
  2269. func (x *LeagueDiplomacyInfo) GetUmengs() []int64 {
  2270. if x != nil {
  2271. return x.Umengs
  2272. }
  2273. return nil
  2274. }
  2275. // 联盟外交
  2276. type LeagueDiplomacy struct {
  2277. state protoimpl.MessageState `protogen:"open.v1"`
  2278. // 联邦信息
  2279. Union *LeagueUnion `protobuf:"bytes,1,opt,name=union,proto3" json:"union,omitempty"`
  2280. // 友盟联盟列表 key联盟ID value解除时间戳 0为未解除 单位秒
  2281. Umengs map[int64]int64 `protobuf:"bytes,2,rep,name=umengs,proto3" json:"umengs,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  2282. // 联盟外交接收申请列表
  2283. Applys []*LeagueDiplomacyApply `protobuf:"bytes,3,rep,name=applys,proto3" json:"applys,omitempty"`
  2284. // 联盟外交发送申请列表 key联盟ID value申请类型 1友盟 2联邦
  2285. SendApplys []*I64I32 `protobuf:"bytes,4,rep,name=sendApplys,proto3" json:"sendApplys,omitempty"`
  2286. unknownFields protoimpl.UnknownFields
  2287. sizeCache protoimpl.SizeCache
  2288. }
  2289. func (x *LeagueDiplomacy) Reset() {
  2290. *x = LeagueDiplomacy{}
  2291. mi := &file_league_proto_msgTypes[36]
  2292. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2293. ms.StoreMessageInfo(mi)
  2294. }
  2295. func (x *LeagueDiplomacy) String() string {
  2296. return protoimpl.X.MessageStringOf(x)
  2297. }
  2298. func (*LeagueDiplomacy) ProtoMessage() {}
  2299. func (x *LeagueDiplomacy) ProtoReflect() protoreflect.Message {
  2300. mi := &file_league_proto_msgTypes[36]
  2301. if x != nil {
  2302. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2303. if ms.LoadMessageInfo() == nil {
  2304. ms.StoreMessageInfo(mi)
  2305. }
  2306. return ms
  2307. }
  2308. return mi.MessageOf(x)
  2309. }
  2310. // Deprecated: Use LeagueDiplomacy.ProtoReflect.Descriptor instead.
  2311. func (*LeagueDiplomacy) Descriptor() ([]byte, []int) {
  2312. return file_league_proto_rawDescGZIP(), []int{36}
  2313. }
  2314. func (x *LeagueDiplomacy) GetUnion() *LeagueUnion {
  2315. if x != nil {
  2316. return x.Union
  2317. }
  2318. return nil
  2319. }
  2320. func (x *LeagueDiplomacy) GetUmengs() map[int64]int64 {
  2321. if x != nil {
  2322. return x.Umengs
  2323. }
  2324. return nil
  2325. }
  2326. func (x *LeagueDiplomacy) GetApplys() []*LeagueDiplomacyApply {
  2327. if x != nil {
  2328. return x.Applys
  2329. }
  2330. return nil
  2331. }
  2332. func (x *LeagueDiplomacy) GetSendApplys() []*I64I32 {
  2333. if x != nil {
  2334. return x.SendApplys
  2335. }
  2336. return nil
  2337. }
  2338. // 联盟外交申请变更通知
  2339. type LeagueDiplomacyApplyChange struct {
  2340. state protoimpl.MessageState `protogen:"open.v1"`
  2341. // 变更类型 1添加 2删除
  2342. ChangeType int32 `protobuf:"varint,1,opt,name=changeType,proto3" json:"changeType,omitempty"`
  2343. // 联盟外交申请
  2344. Apply *LeagueDiplomacyApply `protobuf:"bytes,2,opt,name=apply,proto3" json:"apply,omitempty"`
  2345. unknownFields protoimpl.UnknownFields
  2346. sizeCache protoimpl.SizeCache
  2347. }
  2348. func (x *LeagueDiplomacyApplyChange) Reset() {
  2349. *x = LeagueDiplomacyApplyChange{}
  2350. mi := &file_league_proto_msgTypes[37]
  2351. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2352. ms.StoreMessageInfo(mi)
  2353. }
  2354. func (x *LeagueDiplomacyApplyChange) String() string {
  2355. return protoimpl.X.MessageStringOf(x)
  2356. }
  2357. func (*LeagueDiplomacyApplyChange) ProtoMessage() {}
  2358. func (x *LeagueDiplomacyApplyChange) ProtoReflect() protoreflect.Message {
  2359. mi := &file_league_proto_msgTypes[37]
  2360. if x != nil {
  2361. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2362. if ms.LoadMessageInfo() == nil {
  2363. ms.StoreMessageInfo(mi)
  2364. }
  2365. return ms
  2366. }
  2367. return mi.MessageOf(x)
  2368. }
  2369. // Deprecated: Use LeagueDiplomacyApplyChange.ProtoReflect.Descriptor instead.
  2370. func (*LeagueDiplomacyApplyChange) Descriptor() ([]byte, []int) {
  2371. return file_league_proto_rawDescGZIP(), []int{37}
  2372. }
  2373. func (x *LeagueDiplomacyApplyChange) GetChangeType() int32 {
  2374. if x != nil {
  2375. return x.ChangeType
  2376. }
  2377. return 0
  2378. }
  2379. func (x *LeagueDiplomacyApplyChange) GetApply() *LeagueDiplomacyApply {
  2380. if x != nil {
  2381. return x.Apply
  2382. }
  2383. return nil
  2384. }
  2385. // 联盟外交申请
  2386. type LeagueDiplomacyApply struct {
  2387. state protoimpl.MessageState `protogen:"open.v1"`
  2388. // 联盟ID
  2389. LeagueID int64 `protobuf:"varint,1,opt,name=leagueID,proto3" json:"leagueID,omitempty"`
  2390. // 联盟名称
  2391. LeagueName string `protobuf:"bytes,2,opt,name=leagueName,proto3" json:"leagueName,omitempty"`
  2392. // 申请类型 1友盟 2联邦
  2393. ApplyType int32 `protobuf:"varint,3,opt,name=applyType,proto3" json:"applyType,omitempty"`
  2394. unknownFields protoimpl.UnknownFields
  2395. sizeCache protoimpl.SizeCache
  2396. }
  2397. func (x *LeagueDiplomacyApply) Reset() {
  2398. *x = LeagueDiplomacyApply{}
  2399. mi := &file_league_proto_msgTypes[38]
  2400. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2401. ms.StoreMessageInfo(mi)
  2402. }
  2403. func (x *LeagueDiplomacyApply) String() string {
  2404. return protoimpl.X.MessageStringOf(x)
  2405. }
  2406. func (*LeagueDiplomacyApply) ProtoMessage() {}
  2407. func (x *LeagueDiplomacyApply) ProtoReflect() protoreflect.Message {
  2408. mi := &file_league_proto_msgTypes[38]
  2409. if x != nil {
  2410. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2411. if ms.LoadMessageInfo() == nil {
  2412. ms.StoreMessageInfo(mi)
  2413. }
  2414. return ms
  2415. }
  2416. return mi.MessageOf(x)
  2417. }
  2418. // Deprecated: Use LeagueDiplomacyApply.ProtoReflect.Descriptor instead.
  2419. func (*LeagueDiplomacyApply) Descriptor() ([]byte, []int) {
  2420. return file_league_proto_rawDescGZIP(), []int{38}
  2421. }
  2422. func (x *LeagueDiplomacyApply) GetLeagueID() int64 {
  2423. if x != nil {
  2424. return x.LeagueID
  2425. }
  2426. return 0
  2427. }
  2428. func (x *LeagueDiplomacyApply) GetLeagueName() string {
  2429. if x != nil {
  2430. return x.LeagueName
  2431. }
  2432. return ""
  2433. }
  2434. func (x *LeagueDiplomacyApply) GetApplyType() int32 {
  2435. if x != nil {
  2436. return x.ApplyType
  2437. }
  2438. return 0
  2439. }
  2440. // 友盟关系变化
  2441. type LeagueUmengChange struct {
  2442. state protoimpl.MessageState `protogen:"open.v1"`
  2443. // 是否添加 true添加 false删除
  2444. Add bool `protobuf:"varint,1,opt,name=add,proto3" json:"add,omitempty"`
  2445. // 增加/删除的联盟ID
  2446. LeagueIDList []int64 `protobuf:"varint,2,rep,packed,name=leagueIDList,proto3" json:"leagueIDList,omitempty"`
  2447. unknownFields protoimpl.UnknownFields
  2448. sizeCache protoimpl.SizeCache
  2449. }
  2450. func (x *LeagueUmengChange) Reset() {
  2451. *x = LeagueUmengChange{}
  2452. mi := &file_league_proto_msgTypes[39]
  2453. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2454. ms.StoreMessageInfo(mi)
  2455. }
  2456. func (x *LeagueUmengChange) String() string {
  2457. return protoimpl.X.MessageStringOf(x)
  2458. }
  2459. func (*LeagueUmengChange) ProtoMessage() {}
  2460. func (x *LeagueUmengChange) ProtoReflect() protoreflect.Message {
  2461. mi := &file_league_proto_msgTypes[39]
  2462. if x != nil {
  2463. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2464. if ms.LoadMessageInfo() == nil {
  2465. ms.StoreMessageInfo(mi)
  2466. }
  2467. return ms
  2468. }
  2469. return mi.MessageOf(x)
  2470. }
  2471. // Deprecated: Use LeagueUmengChange.ProtoReflect.Descriptor instead.
  2472. func (*LeagueUmengChange) Descriptor() ([]byte, []int) {
  2473. return file_league_proto_rawDescGZIP(), []int{39}
  2474. }
  2475. func (x *LeagueUmengChange) GetAdd() bool {
  2476. if x != nil {
  2477. return x.Add
  2478. }
  2479. return false
  2480. }
  2481. func (x *LeagueUmengChange) GetLeagueIDList() []int64 {
  2482. if x != nil {
  2483. return x.LeagueIDList
  2484. }
  2485. return nil
  2486. }
  2487. type LeagueUnion struct {
  2488. state protoimpl.MessageState `protogen:"open.v1"`
  2489. // 联邦ID
  2490. UnionID int64 `protobuf:"varint,1,opt,name=unionID,proto3" json:"unionID,omitempty"`
  2491. // 联邦对方联盟ID
  2492. UnionLeagueID int64 `protobuf:"varint,2,opt,name=unionLeagueID,proto3" json:"unionLeagueID,omitempty"`
  2493. // 联邦解除时间戳 0未解除 单位秒
  2494. UnionRelieveTime int64 `protobuf:"varint,3,opt,name=unionRelieveTime,proto3" json:"unionRelieveTime,omitempty"`
  2495. unknownFields protoimpl.UnknownFields
  2496. sizeCache protoimpl.SizeCache
  2497. }
  2498. func (x *LeagueUnion) Reset() {
  2499. *x = LeagueUnion{}
  2500. mi := &file_league_proto_msgTypes[40]
  2501. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2502. ms.StoreMessageInfo(mi)
  2503. }
  2504. func (x *LeagueUnion) String() string {
  2505. return protoimpl.X.MessageStringOf(x)
  2506. }
  2507. func (*LeagueUnion) ProtoMessage() {}
  2508. func (x *LeagueUnion) ProtoReflect() protoreflect.Message {
  2509. mi := &file_league_proto_msgTypes[40]
  2510. if x != nil {
  2511. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2512. if ms.LoadMessageInfo() == nil {
  2513. ms.StoreMessageInfo(mi)
  2514. }
  2515. return ms
  2516. }
  2517. return mi.MessageOf(x)
  2518. }
  2519. // Deprecated: Use LeagueUnion.ProtoReflect.Descriptor instead.
  2520. func (*LeagueUnion) Descriptor() ([]byte, []int) {
  2521. return file_league_proto_rawDescGZIP(), []int{40}
  2522. }
  2523. func (x *LeagueUnion) GetUnionID() int64 {
  2524. if x != nil {
  2525. return x.UnionID
  2526. }
  2527. return 0
  2528. }
  2529. func (x *LeagueUnion) GetUnionLeagueID() int64 {
  2530. if x != nil {
  2531. return x.UnionLeagueID
  2532. }
  2533. return 0
  2534. }
  2535. func (x *LeagueUnion) GetUnionRelieveTime() int64 {
  2536. if x != nil {
  2537. return x.UnionRelieveTime
  2538. }
  2539. return 0
  2540. }
  2541. var File_league_proto protoreflect.FileDescriptor
  2542. const file_league_proto_rawDesc = "" +
  2543. "\n" +
  2544. "\fleague.proto\x12\x02pb\x1a\x0fbase_type.proto\x1a\n" +
  2545. "item.proto\"H\n" +
  2546. "\n" +
  2547. "LeagueList\x12\x14\n" +
  2548. "\x05total\x18\x01 \x01(\x05R\x05total\x12$\n" +
  2549. "\x04list\x18\x02 \x03(\v2\x10.pb.LeagueSearchR\x04list\"\xed\x02\n" +
  2550. "\fLeagueSearch\x12\x1a\n" +
  2551. "\bleagueID\x18\x01 \x01(\x03R\bleagueID\x12\x1e\n" +
  2552. "\n" +
  2553. "leagueName\x18\x02 \x01(\tR\n" +
  2554. "leagueName\x12$\n" +
  2555. "\rleagueAbbName\x18\x03 \x01(\tR\rleagueAbbName\x12\x14\n" +
  2556. "\x05level\x18\x04 \x01(\x05R\x05level\x12 \n" +
  2557. "\vmemberCount\x18\x05 \x01(\x05R\vmemberCount\x12%\n" +
  2558. "\blocation\x18\x06 \x01(\v2\t.pb.PointR\blocation\x12 \n" +
  2559. "\vneedApprove\x18\a \x01(\bR\vneedApprove\x12\x1e\n" +
  2560. "\n" +
  2561. "gloryScore\x18\b \x01(\x05R\n" +
  2562. "gloryScore\x12\x14\n" +
  2563. "\x05apply\x18\t \x01(\bR\x05apply\x12$\n" +
  2564. "\rjoinNeedLevel\x18\n" +
  2565. " \x01(\x05R\rjoinNeedLevel\x12\x1e\n" +
  2566. "\n" +
  2567. "createTime\x18\v \x01(\x03R\n" +
  2568. "createTime\"\x8a\x01\n" +
  2569. "\n" +
  2570. "LeaguePush\x12\x1a\n" +
  2571. "\bleagueID\x18\x01 \x01(\x03R\bleagueID\x12\x1e\n" +
  2572. "\n" +
  2573. "leagueName\x18\x02 \x01(\tR\n" +
  2574. "leagueName\x12$\n" +
  2575. "\rleagueAbbName\x18\x03 \x01(\tR\rleagueAbbName\x12\x1a\n" +
  2576. "\bredPoint\x18\x04 \x01(\bR\bredPoint\"\x9e\x04\n" +
  2577. "\n" +
  2578. "LeagueBase\x12\x1a\n" +
  2579. "\bleagueID\x18\x01 \x01(\x03R\bleagueID\x12\x1e\n" +
  2580. "\n" +
  2581. "leagueName\x18\x02 \x01(\tR\n" +
  2582. "leagueName\x12$\n" +
  2583. "\rleagueAbbName\x18\x03 \x01(\tR\rleagueAbbName\x12\x1a\n" +
  2584. "\bleaderID\x18\x04 \x01(\x03R\bleaderID\x12\x1e\n" +
  2585. "\n" +
  2586. "leaderName\x18\x05 \x01(\tR\n" +
  2587. "leaderName\x12\x14\n" +
  2588. "\x05level\x18\x06 \x01(\x05R\x05level\x12\x10\n" +
  2589. "\x03exp\x18\a \x01(\x05R\x03exp\x12 \n" +
  2590. "\vmemberCount\x18\b \x01(\x05R\vmemberCount\x12\x16\n" +
  2591. "\x06flagBg\x18\t \x01(\x05R\x06flagBg\x12\x1a\n" +
  2592. "\bflagIcon\x18\n" +
  2593. " \x01(\x05R\bflagIcon\x12%\n" +
  2594. "\blocation\x18\v \x01(\v2\t.pb.PointR\blocation\x12&\n" +
  2595. "\x0elordLevelLimit\x18\f \x01(\x05R\x0elordLevelLimit\x12 \n" +
  2596. "\vneedApprove\x18\r \x01(\bR\vneedApprove\x12\x1e\n" +
  2597. "\n" +
  2598. "gloryScore\x18\x0e \x01(\x05R\n" +
  2599. "gloryScore\x12\"\n" +
  2600. "\fleagueNotice\x18\x0f \x01(\tR\fleagueNotice\x12\x1e\n" +
  2601. "\n" +
  2602. "createTime\x18\x10 \x01(\x03R\n" +
  2603. "createTime\x12\x1f\n" +
  2604. "\x05attrs\x18\x11 \x01(\v2\t.pb.AttrsR\x05attrs\"\xbd\x01\n" +
  2605. "\x06League\x12.\n" +
  2606. "\n" +
  2607. "leagueBase\x18\x01 \x01(\v2\x0e.pb.LeagueBaseR\n" +
  2608. "leagueBase\x12&\n" +
  2609. "\x0eleaguePrestige\x18\x02 \x01(\x05R\x0eleaguePrestige\x12(\n" +
  2610. "\x0fleagueCityCount\x18\x03 \x01(\x05R\x0fleagueCityCount\x121\n" +
  2611. "\tdiplomacy\x18\x04 \x01(\v2\x13.pb.LeagueDiplomacyR\tdiplomacy\"e\n" +
  2612. "\rLeagueMembers\x12$\n" +
  2613. "\x04list\x18\x01 \x03(\v2\x10.pb.LeagueMemberR\x04list\x12.\n" +
  2614. "\btransfer\x18\x02 \x01(\v2\x12.pb.LeagueTransferR\btransfer\"\x8b\x03\n" +
  2615. "\fLeagueMember\x12\x1a\n" +
  2616. "\bplayerID\x18\x01 \x01(\x03R\bplayerID\x12\x1e\n" +
  2617. "\n" +
  2618. "playerName\x18\x02 \x01(\tR\n" +
  2619. "playerName\x12\x10\n" +
  2620. "\x03job\x18\x03 \x01(\x05R\x03job\x12\x14\n" +
  2621. "\x05level\x18\x04 \x01(\x05R\x05level\x12\x1a\n" +
  2622. "\bprestige\x18\x05 \x01(\x05R\bprestige\x12\x14\n" +
  2623. "\x05glory\x18\x06 \x01(\x05R\x05glory\x12\x1e\n" +
  2624. "\n" +
  2625. "totalGlory\x18\a \x01(\x05R\n" +
  2626. "totalGlory\x12\"\n" +
  2627. "\fcontribution\x18\b \x01(\x05R\fcontribution\x12,\n" +
  2628. "\x11totalContribution\x18\t \x01(\x05R\x11totalContribution\x12\x1f\n" +
  2629. "\x05point\x18\n" +
  2630. " \x01(\v2\t.pb.PointR\x05point\x12\x16\n" +
  2631. "\x06status\x18\v \x01(\x05R\x06status\x12\x1a\n" +
  2632. "\bjoinTime\x18\f \x01(\x03R\bjoinTime\x12\x1e\n" +
  2633. "\n" +
  2634. "weeklyFund\x18\r \x01(\x03R\n" +
  2635. "weeklyFund\"2\n" +
  2636. "\x10LeagueJobRequest\x12\x1e\n" +
  2637. "\x04jobs\x18\x01 \x03(\v2\n" +
  2638. ".pb.I32I64R\x04jobs\"2\n" +
  2639. "\x0eLeagueTechList\x12 \n" +
  2640. "\x05techs\x18\x01 \x03(\v2\n" +
  2641. ".pb.I32I32R\x05techs\"6\n" +
  2642. "\x0fLeagueBuildList\x12#\n" +
  2643. "\x04list\x18\x01 \x03(\v2\x0f.pb.LeagueBuildR\x04list\"\xf6\x01\n" +
  2644. "\vLeagueBuild\x12\x1a\n" +
  2645. "\bobjectID\x18\x01 \x01(\x03R\bobjectID\x12\x1a\n" +
  2646. "\bconfigID\x18\x02 \x01(\x05R\bconfigID\x12\x1f\n" +
  2647. "\x05point\x18\x03 \x01(\v2\t.pb.PointR\x05point\x12 \n" +
  2648. "\visOperating\x18\x04 \x01(\bR\visOperating\x12\"\n" +
  2649. "\fbuildEndTime\x18\x05 \x01(\x03R\fbuildEndTime\x12 \n" +
  2650. "\vdiscardTime\x18\x06 \x01(\x03R\vdiscardTime\x12&\n" +
  2651. "\x0eupgradeEndTime\x18\a \x01(\x03R\x0eupgradeEndTime\"8\n" +
  2652. "\x10LeagueCastleList\x12$\n" +
  2653. "\x04list\x18\x01 \x03(\v2\x10.pb.LeagueCastleR\x04list\"\xa1\x01\n" +
  2654. "\fLeagueCastle\x12\x1a\n" +
  2655. "\bobjectID\x18\x01 \x01(\x03R\bobjectID\x12\x1a\n" +
  2656. "\bconfigID\x18\x02 \x01(\x05R\bconfigID\x12\x1f\n" +
  2657. "\x05point\x18\x03 \x01(\v2\t.pb.PointR\x05point\x12\x1e\n" +
  2658. "\n" +
  2659. "occupyTime\x18\x04 \x01(\x03R\n" +
  2660. "occupyTime\x12\x18\n" +
  2661. "\aownerID\x18\x05 \x01(\x03R\aownerID\"C\n" +
  2662. "\x17LeaguePermissionRequest\x12(\n" +
  2663. "\x04jobs\x18\x01 \x03(\v2\x14.pb.LeaguePermissionR\x04jobs\"F\n" +
  2664. "\x10LeaguePermission\x12\x10\n" +
  2665. "\x03job\x18\x01 \x01(\x05R\x03job\x12 \n" +
  2666. "\vpermissions\x18\x02 \x03(\x05R\vpermissions\"\x8f\x01\n" +
  2667. "\x13LeagueCreateRequest\x12\x1e\n" +
  2668. "\n" +
  2669. "leagueName\x18\x01 \x01(\tR\n" +
  2670. "leagueName\x12$\n" +
  2671. "\rleagueAbbName\x18\x02 \x01(\tR\rleagueAbbName\x12\x16\n" +
  2672. "\x06flagBg\x18\x03 \x01(\x05R\x06flagBg\x12\x1a\n" +
  2673. "\bflagIcon\x18\x04 \x01(\x05R\bflagIcon\"2\n" +
  2674. "\rLeagueLogList\x12!\n" +
  2675. "\x04list\x18\x01 \x03(\v2\r.pb.LeagueLogR\x04list\"S\n" +
  2676. "\tLeagueLog\x12\x14\n" +
  2677. "\x05logID\x18\x01 \x01(\x05R\x05logID\x12\x16\n" +
  2678. "\x06params\x18\x02 \x03(\tR\x06params\x12\x18\n" +
  2679. "\alogTime\x18\x03 \x01(\x03R\alogTime\"v\n" +
  2680. "\x0eLeagueTransfer\x12\x1a\n" +
  2681. "\bplayerID\x18\x01 \x01(\x03R\bplayerID\x12\x1e\n" +
  2682. "\n" +
  2683. "playerName\x18\x02 \x01(\tR\n" +
  2684. "playerName\x12(\n" +
  2685. "\x0ftransferEndTime\x18\x03 \x01(\x03R\x0ftransferEndTime\"6\n" +
  2686. "\rLeagueJobList\x12%\n" +
  2687. "\x04list\x18\x01 \x03(\v2\x11.pb.LeagueJobInfoR\x04list\"\x83\x01\n" +
  2688. "\rLeagueJobInfo\x12\x14\n" +
  2689. "\x05jobID\x18\x01 \x01(\x05R\x05jobID\x12\x1a\n" +
  2690. "\bplayerID\x18\x02 \x01(\x03R\bplayerID\x12\x1e\n" +
  2691. "\n" +
  2692. "playerName\x18\x03 \x01(\tR\n" +
  2693. "playerName\x12 \n" +
  2694. "\vpermissions\x18\x04 \x03(\x05R\vpermissions\"6\n" +
  2695. "\x0fLeagueApplyList\x12#\n" +
  2696. "\x04list\x18\x01 \x03(\v2\x0f.pb.LeagueApplyR\x04list\"\xc0\x01\n" +
  2697. "\vLeagueApply\x12\x1a\n" +
  2698. "\bplayerID\x18\x01 \x01(\x03R\bplayerID\x12\x1e\n" +
  2699. "\n" +
  2700. "playerName\x18\x02 \x01(\tR\n" +
  2701. "playerName\x12\x14\n" +
  2702. "\x05level\x18\x03 \x01(\x05R\x05level\x12\x1a\n" +
  2703. "\bprestige\x18\x04 \x01(\x05R\bprestige\x12%\n" +
  2704. "\blocation\x18\x05 \x01(\v2\t.pb.PointR\blocation\x12\x1c\n" +
  2705. "\tapplyTime\x18\x06 \x01(\x03R\tapplyTime\"y\n" +
  2706. "\x11LeagueBaseSetting\x12 \n" +
  2707. "\vneedApprove\x18\x01 \x01(\bR\vneedApprove\x12\x1e\n" +
  2708. "\n" +
  2709. "levelLimit\x18\x02 \x01(\x05R\n" +
  2710. "levelLimit\x12\"\n" +
  2711. "\fleagueNotice\x18\x03 \x01(\tR\fleagueNotice\"\xc3\x01\n" +
  2712. "\x11LeagueImpeachInfo\x12\x1a\n" +
  2713. "\bplayerID\x18\x01 \x01(\x03R\bplayerID\x12\x1e\n" +
  2714. "\n" +
  2715. "playerName\x18\x02 \x01(\tR\n" +
  2716. "playerName\x12\x1e\n" +
  2717. "\n" +
  2718. "agreeCount\x18\x03 \x01(\x05R\n" +
  2719. "agreeCount\x12 \n" +
  2720. "\vrejectCount\x18\x04 \x01(\x05R\vrejectCount\x12\x16\n" +
  2721. "\x06myVote\x18\x05 \x01(\x05R\x06myVote\x12\x18\n" +
  2722. "\aendTime\x18\x06 \x01(\x03R\aendTime\"?\n" +
  2723. "\tLeagueJob\x12\x10\n" +
  2724. "\x03job\x18\x01 \x01(\x05R\x03job\x12 \n" +
  2725. "\vpermissions\x18\x02 \x03(\x05R\vpermissions\">\n" +
  2726. "\x13LeagueResidenceList\x12'\n" +
  2727. "\x04list\x18\x01 \x03(\v2\x13.pb.LeagueResidenceR\x04list\"c\n" +
  2728. "\x0fLeagueResidence\x12\x1a\n" +
  2729. "\bplayerID\x18\x01 \x01(\x03R\bplayerID\x12\x1e\n" +
  2730. "\n" +
  2731. "playerName\x18\x02 \x01(\tR\n" +
  2732. "playerName\x12\x14\n" +
  2733. "\x05index\x18\x03 \x01(\x05R\x05index\"\xcd\x02\n" +
  2734. "\x16LeagueMemberRecordInfo\x12\x1a\n" +
  2735. "\bplayerID\x18\x01 \x01(\x03R\bplayerID\x12\x1e\n" +
  2736. "\n" +
  2737. "playerName\x18\x02 \x01(\tR\n" +
  2738. "playerName\x12\x1c\n" +
  2739. "\tlordLevel\x18\x03 \x01(\x05R\tlordLevel\x12\x16\n" +
  2740. "\x06iconID\x18\x04 \x01(\x05R\x06iconID\x12\x18\n" +
  2741. "\aframeID\x18\x05 \x01(\x05R\aframeID\x12\x10\n" +
  2742. "\x03job\x18\x06 \x01(\x05R\x03job\x12A\n" +
  2743. "\arecords\x18\a \x03(\v2'.pb.LeagueMemberRecordInfo.RecordsEntryR\arecords\x1aR\n" +
  2744. "\fRecordsEntry\x12\x10\n" +
  2745. "\x03key\x18\x01 \x01(\x05R\x03key\x12,\n" +
  2746. "\x05value\x18\x02 \x01(\v2\x16.pb.LeagueMemberRecordR\x05value:\x028\x01\"\x97\x01\n" +
  2747. "\x12LeagueMemberRecord\x12C\n" +
  2748. "\tweekDatas\x18\x01 \x03(\v2%.pb.LeagueMemberRecord.WeekDatasEntryR\tweekDatas\x1a<\n" +
  2749. "\x0eWeekDatasEntry\x12\x10\n" +
  2750. "\x03key\x18\x01 \x01(\x05R\x03key\x12\x14\n" +
  2751. "\x05value\x18\x02 \x01(\x05R\x05value:\x028\x01\"\xd1\x02\n" +
  2752. "\rLeagueStorage\x12A\n" +
  2753. "\n" +
  2754. "currencies\x18\x01 \x03(\v2!.pb.LeagueStorage.CurrenciesEntryR\n" +
  2755. "currencies\x125\n" +
  2756. "\x06ratios\x18\x02 \x03(\v2\x1d.pb.LeagueStorage.RatiosEntryR\x06ratios\x12,\n" +
  2757. "\x11fBonusRemainCount\x18\x03 \x01(\x05R\x11fBonusRemainCount\x1aK\n" +
  2758. "\x0fCurrenciesEntry\x12\x10\n" +
  2759. "\x03key\x18\x01 \x01(\x05R\x03key\x12\"\n" +
  2760. "\x05value\x18\x02 \x01(\v2\f.pb.CurrencyR\x05value:\x028\x01\x1aK\n" +
  2761. "\vRatiosEntry\x12\x10\n" +
  2762. "\x03key\x18\x01 \x01(\x05R\x03key\x12&\n" +
  2763. "\x05value\x18\x02 \x01(\v2\x10.pb.StorageRatioR\x05value:\x028\x01\"V\n" +
  2764. "\fStorageRatio\x12\x0e\n" +
  2765. "\x02id\x18\x01 \x01(\x05R\x02id\x12\x14\n" +
  2766. "\x05ratio\x18\x02 \x01(\x05R\x05ratio\x12 \n" +
  2767. "\vremainCount\x18\x03 \x01(\x05R\vremainCount\"S\n" +
  2768. "\x0fLeagueFundBonus\x12\x1c\n" +
  2769. "\ttotalFund\x18\x01 \x01(\x03R\ttotalFund\x12\"\n" +
  2770. "\fmemberIDList\x18\x02 \x03(\x03R\fmemberIDList\"\x89\x01\n" +
  2771. "\x0fLeaguePlayerJob\x12\x1a\n" +
  2772. "\bleagueID\x18\a \x01(\x03R\bleagueID\x12\x1e\n" +
  2773. "\n" +
  2774. "leagueName\x18\b \x01(\tR\n" +
  2775. "leagueName\x12$\n" +
  2776. "\rleagueAbbName\x18\t \x01(\tR\rleagueAbbName\x12\x14\n" +
  2777. "\x05jobID\x18\n" +
  2778. " \x01(\x05R\x05jobID\"C\n" +
  2779. "\x14LeagueDiplomacyInfos\x12+\n" +
  2780. "\x04list\x18\x01 \x03(\v2\x17.pb.LeagueDiplomacyInfoR\x04list\"\xf6\x02\n" +
  2781. "\x13LeagueDiplomacyInfo\x12\x1a\n" +
  2782. "\bleagueID\x18\x01 \x01(\x03R\bleagueID\x12\x1e\n" +
  2783. "\n" +
  2784. "leagueName\x18\x02 \x01(\tR\n" +
  2785. "leagueName\x12$\n" +
  2786. "\rleagueAbbName\x18\x03 \x01(\tR\rleagueAbbName\x12\x14\n" +
  2787. "\x05level\x18\x04 \x01(\x05R\x05level\x12\x1a\n" +
  2788. "\bprestige\x18\x05 \x01(\x05R\bprestige\x12 \n" +
  2789. "\vmemberCount\x18\x06 \x01(\x05R\vmemberCount\x12\x16\n" +
  2790. "\x06flagBg\x18\a \x01(\x05R\x06flagBg\x12\x1a\n" +
  2791. "\bflagIcon\x18\b \x01(\x05R\bflagIcon\x12%\n" +
  2792. "\blocation\x18\t \x01(\v2\t.pb.PointR\blocation\x12\x1e\n" +
  2793. "\n" +
  2794. "createTime\x18\n" +
  2795. " \x01(\x03R\n" +
  2796. "createTime\x12\x16\n" +
  2797. "\x06uninID\x18\x15 \x01(\x03R\x06uninID\x12\x16\n" +
  2798. "\x06umengs\x18\x16 \x03(\x03R\x06umengs\"\x8a\x02\n" +
  2799. "\x0fLeagueDiplomacy\x12%\n" +
  2800. "\x05union\x18\x01 \x01(\v2\x0f.pb.LeagueUnionR\x05union\x127\n" +
  2801. "\x06umengs\x18\x02 \x03(\v2\x1f.pb.LeagueDiplomacy.UmengsEntryR\x06umengs\x120\n" +
  2802. "\x06applys\x18\x03 \x03(\v2\x18.pb.LeagueDiplomacyApplyR\x06applys\x12*\n" +
  2803. "\n" +
  2804. "sendApplys\x18\x04 \x03(\v2\n" +
  2805. ".pb.I64I32R\n" +
  2806. "sendApplys\x1a9\n" +
  2807. "\vUmengsEntry\x12\x10\n" +
  2808. "\x03key\x18\x01 \x01(\x03R\x03key\x12\x14\n" +
  2809. "\x05value\x18\x02 \x01(\x03R\x05value:\x028\x01\"l\n" +
  2810. "\x1aLeagueDiplomacyApplyChange\x12\x1e\n" +
  2811. "\n" +
  2812. "changeType\x18\x01 \x01(\x05R\n" +
  2813. "changeType\x12.\n" +
  2814. "\x05apply\x18\x02 \x01(\v2\x18.pb.LeagueDiplomacyApplyR\x05apply\"p\n" +
  2815. "\x14LeagueDiplomacyApply\x12\x1a\n" +
  2816. "\bleagueID\x18\x01 \x01(\x03R\bleagueID\x12\x1e\n" +
  2817. "\n" +
  2818. "leagueName\x18\x02 \x01(\tR\n" +
  2819. "leagueName\x12\x1c\n" +
  2820. "\tapplyType\x18\x03 \x01(\x05R\tapplyType\"I\n" +
  2821. "\x11LeagueUmengChange\x12\x10\n" +
  2822. "\x03add\x18\x01 \x01(\bR\x03add\x12\"\n" +
  2823. "\fleagueIDList\x18\x02 \x03(\x03R\fleagueIDList\"y\n" +
  2824. "\vLeagueUnion\x12\x18\n" +
  2825. "\aunionID\x18\x01 \x01(\x03R\aunionID\x12$\n" +
  2826. "\runionLeagueID\x18\x02 \x01(\x03R\runionLeagueID\x12*\n" +
  2827. "\x10unionRelieveTime\x18\x03 \x01(\x03R\x10unionRelieveTimeB\x05Z\x03/pbb\x06proto3"
  2828. var (
  2829. file_league_proto_rawDescOnce sync.Once
  2830. file_league_proto_rawDescData []byte
  2831. )
  2832. func file_league_proto_rawDescGZIP() []byte {
  2833. file_league_proto_rawDescOnce.Do(func() {
  2834. file_league_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_league_proto_rawDesc), len(file_league_proto_rawDesc)))
  2835. })
  2836. return file_league_proto_rawDescData
  2837. }
  2838. var file_league_proto_msgTypes = make([]protoimpl.MessageInfo, 46)
  2839. var file_league_proto_goTypes = []any{
  2840. (*LeagueList)(nil), // 0: pb.LeagueList
  2841. (*LeagueSearch)(nil), // 1: pb.LeagueSearch
  2842. (*LeaguePush)(nil), // 2: pb.LeaguePush
  2843. (*LeagueBase)(nil), // 3: pb.LeagueBase
  2844. (*League)(nil), // 4: pb.League
  2845. (*LeagueMembers)(nil), // 5: pb.LeagueMembers
  2846. (*LeagueMember)(nil), // 6: pb.LeagueMember
  2847. (*LeagueJobRequest)(nil), // 7: pb.LeagueJobRequest
  2848. (*LeagueTechList)(nil), // 8: pb.LeagueTechList
  2849. (*LeagueBuildList)(nil), // 9: pb.LeagueBuildList
  2850. (*LeagueBuild)(nil), // 10: pb.LeagueBuild
  2851. (*LeagueCastleList)(nil), // 11: pb.LeagueCastleList
  2852. (*LeagueCastle)(nil), // 12: pb.LeagueCastle
  2853. (*LeaguePermissionRequest)(nil), // 13: pb.LeaguePermissionRequest
  2854. (*LeaguePermission)(nil), // 14: pb.LeaguePermission
  2855. (*LeagueCreateRequest)(nil), // 15: pb.LeagueCreateRequest
  2856. (*LeagueLogList)(nil), // 16: pb.LeagueLogList
  2857. (*LeagueLog)(nil), // 17: pb.LeagueLog
  2858. (*LeagueTransfer)(nil), // 18: pb.LeagueTransfer
  2859. (*LeagueJobList)(nil), // 19: pb.LeagueJobList
  2860. (*LeagueJobInfo)(nil), // 20: pb.LeagueJobInfo
  2861. (*LeagueApplyList)(nil), // 21: pb.LeagueApplyList
  2862. (*LeagueApply)(nil), // 22: pb.LeagueApply
  2863. (*LeagueBaseSetting)(nil), // 23: pb.LeagueBaseSetting
  2864. (*LeagueImpeachInfo)(nil), // 24: pb.LeagueImpeachInfo
  2865. (*LeagueJob)(nil), // 25: pb.LeagueJob
  2866. (*LeagueResidenceList)(nil), // 26: pb.LeagueResidenceList
  2867. (*LeagueResidence)(nil), // 27: pb.LeagueResidence
  2868. (*LeagueMemberRecordInfo)(nil), // 28: pb.LeagueMemberRecordInfo
  2869. (*LeagueMemberRecord)(nil), // 29: pb.LeagueMemberRecord
  2870. (*LeagueStorage)(nil), // 30: pb.LeagueStorage
  2871. (*StorageRatio)(nil), // 31: pb.StorageRatio
  2872. (*LeagueFundBonus)(nil), // 32: pb.LeagueFundBonus
  2873. (*LeaguePlayerJob)(nil), // 33: pb.LeaguePlayerJob
  2874. (*LeagueDiplomacyInfos)(nil), // 34: pb.LeagueDiplomacyInfos
  2875. (*LeagueDiplomacyInfo)(nil), // 35: pb.LeagueDiplomacyInfo
  2876. (*LeagueDiplomacy)(nil), // 36: pb.LeagueDiplomacy
  2877. (*LeagueDiplomacyApplyChange)(nil), // 37: pb.LeagueDiplomacyApplyChange
  2878. (*LeagueDiplomacyApply)(nil), // 38: pb.LeagueDiplomacyApply
  2879. (*LeagueUmengChange)(nil), // 39: pb.LeagueUmengChange
  2880. (*LeagueUnion)(nil), // 40: pb.LeagueUnion
  2881. nil, // 41: pb.LeagueMemberRecordInfo.RecordsEntry
  2882. nil, // 42: pb.LeagueMemberRecord.WeekDatasEntry
  2883. nil, // 43: pb.LeagueStorage.CurrenciesEntry
  2884. nil, // 44: pb.LeagueStorage.RatiosEntry
  2885. nil, // 45: pb.LeagueDiplomacy.UmengsEntry
  2886. (*Point)(nil), // 46: pb.Point
  2887. (*Attrs)(nil), // 47: pb.Attrs
  2888. (*I32I64)(nil), // 48: pb.I32I64
  2889. (*I32I32)(nil), // 49: pb.I32I32
  2890. (*I64I32)(nil), // 50: pb.I64I32
  2891. (*Currency)(nil), // 51: pb.Currency
  2892. }
  2893. var file_league_proto_depIdxs = []int32{
  2894. 1, // 0: pb.LeagueList.list:type_name -> pb.LeagueSearch
  2895. 46, // 1: pb.LeagueSearch.location:type_name -> pb.Point
  2896. 46, // 2: pb.LeagueBase.location:type_name -> pb.Point
  2897. 47, // 3: pb.LeagueBase.attrs:type_name -> pb.Attrs
  2898. 3, // 4: pb.League.leagueBase:type_name -> pb.LeagueBase
  2899. 36, // 5: pb.League.diplomacy:type_name -> pb.LeagueDiplomacy
  2900. 6, // 6: pb.LeagueMembers.list:type_name -> pb.LeagueMember
  2901. 18, // 7: pb.LeagueMembers.transfer:type_name -> pb.LeagueTransfer
  2902. 46, // 8: pb.LeagueMember.point:type_name -> pb.Point
  2903. 48, // 9: pb.LeagueJobRequest.jobs:type_name -> pb.I32I64
  2904. 49, // 10: pb.LeagueTechList.techs:type_name -> pb.I32I32
  2905. 10, // 11: pb.LeagueBuildList.list:type_name -> pb.LeagueBuild
  2906. 46, // 12: pb.LeagueBuild.point:type_name -> pb.Point
  2907. 12, // 13: pb.LeagueCastleList.list:type_name -> pb.LeagueCastle
  2908. 46, // 14: pb.LeagueCastle.point:type_name -> pb.Point
  2909. 14, // 15: pb.LeaguePermissionRequest.jobs:type_name -> pb.LeaguePermission
  2910. 17, // 16: pb.LeagueLogList.list:type_name -> pb.LeagueLog
  2911. 20, // 17: pb.LeagueJobList.list:type_name -> pb.LeagueJobInfo
  2912. 22, // 18: pb.LeagueApplyList.list:type_name -> pb.LeagueApply
  2913. 46, // 19: pb.LeagueApply.location:type_name -> pb.Point
  2914. 27, // 20: pb.LeagueResidenceList.list:type_name -> pb.LeagueResidence
  2915. 41, // 21: pb.LeagueMemberRecordInfo.records:type_name -> pb.LeagueMemberRecordInfo.RecordsEntry
  2916. 42, // 22: pb.LeagueMemberRecord.weekDatas:type_name -> pb.LeagueMemberRecord.WeekDatasEntry
  2917. 43, // 23: pb.LeagueStorage.currencies:type_name -> pb.LeagueStorage.CurrenciesEntry
  2918. 44, // 24: pb.LeagueStorage.ratios:type_name -> pb.LeagueStorage.RatiosEntry
  2919. 35, // 25: pb.LeagueDiplomacyInfos.list:type_name -> pb.LeagueDiplomacyInfo
  2920. 46, // 26: pb.LeagueDiplomacyInfo.location:type_name -> pb.Point
  2921. 40, // 27: pb.LeagueDiplomacy.union:type_name -> pb.LeagueUnion
  2922. 45, // 28: pb.LeagueDiplomacy.umengs:type_name -> pb.LeagueDiplomacy.UmengsEntry
  2923. 38, // 29: pb.LeagueDiplomacy.applys:type_name -> pb.LeagueDiplomacyApply
  2924. 50, // 30: pb.LeagueDiplomacy.sendApplys:type_name -> pb.I64I32
  2925. 38, // 31: pb.LeagueDiplomacyApplyChange.apply:type_name -> pb.LeagueDiplomacyApply
  2926. 29, // 32: pb.LeagueMemberRecordInfo.RecordsEntry.value:type_name -> pb.LeagueMemberRecord
  2927. 51, // 33: pb.LeagueStorage.CurrenciesEntry.value:type_name -> pb.Currency
  2928. 31, // 34: pb.LeagueStorage.RatiosEntry.value:type_name -> pb.StorageRatio
  2929. 35, // [35:35] is the sub-list for method output_type
  2930. 35, // [35:35] is the sub-list for method input_type
  2931. 35, // [35:35] is the sub-list for extension type_name
  2932. 35, // [35:35] is the sub-list for extension extendee
  2933. 0, // [0:35] is the sub-list for field type_name
  2934. }
  2935. func init() { file_league_proto_init() }
  2936. func file_league_proto_init() {
  2937. if File_league_proto != nil {
  2938. return
  2939. }
  2940. file_base_type_proto_init()
  2941. file_item_proto_init()
  2942. type x struct{}
  2943. out := protoimpl.TypeBuilder{
  2944. File: protoimpl.DescBuilder{
  2945. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2946. RawDescriptor: unsafe.Slice(unsafe.StringData(file_league_proto_rawDesc), len(file_league_proto_rawDesc)),
  2947. NumEnums: 0,
  2948. NumMessages: 46,
  2949. NumExtensions: 0,
  2950. NumServices: 0,
  2951. },
  2952. GoTypes: file_league_proto_goTypes,
  2953. DependencyIndexes: file_league_proto_depIdxs,
  2954. MessageInfos: file_league_proto_msgTypes,
  2955. }.Build()
  2956. File_league_proto = out.File
  2957. file_league_proto_goTypes = nil
  2958. file_league_proto_depIdxs = nil
  2959. }