fix send mutli goods info
parent
8dc99083d5
commit
617c395096
|
@ -49668,6 +49668,24 @@ public final class CommonProto {
|
|||
*/
|
||||
com.google.protobuf.ByteString
|
||||
getGuildNameBytes();
|
||||
|
||||
// optional int32 force = 8;
|
||||
/**
|
||||
* <code>optional int32 force = 8;</code>
|
||||
*
|
||||
* <pre>
|
||||
*战力
|
||||
* </pre>
|
||||
*/
|
||||
boolean hasForce();
|
||||
/**
|
||||
* <code>optional int32 force = 8;</code>
|
||||
*
|
||||
* <pre>
|
||||
*战力
|
||||
* </pre>
|
||||
*/
|
||||
int getForce();
|
||||
}
|
||||
/**
|
||||
* Protobuf type {@code com.ljsd.jieling.protocols.UserRank}
|
||||
|
@ -49763,6 +49781,11 @@ public final class CommonProto {
|
|||
guildName_ = input.readBytes();
|
||||
break;
|
||||
}
|
||||
case 64: {
|
||||
bitField0_ |= 0x00000080;
|
||||
force_ = input.readInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
||||
|
@ -49995,6 +50018,30 @@ public final class CommonProto {
|
|||
}
|
||||
}
|
||||
|
||||
// optional int32 force = 8;
|
||||
public static final int FORCE_FIELD_NUMBER = 8;
|
||||
private int force_;
|
||||
/**
|
||||
* <code>optional int32 force = 8;</code>
|
||||
*
|
||||
* <pre>
|
||||
*战力
|
||||
* </pre>
|
||||
*/
|
||||
public boolean hasForce() {
|
||||
return ((bitField0_ & 0x00000080) == 0x00000080);
|
||||
}
|
||||
/**
|
||||
* <code>optional int32 force = 8;</code>
|
||||
*
|
||||
* <pre>
|
||||
*战力
|
||||
* </pre>
|
||||
*/
|
||||
public int getForce() {
|
||||
return force_;
|
||||
}
|
||||
|
||||
private void initFields() {
|
||||
uid_ = 0;
|
||||
level_ = 0;
|
||||
|
@ -50003,6 +50050,7 @@ public final class CommonProto {
|
|||
rankInfo_ = com.ljsd.jieling.protocols.CommonProto.RankInfo.getDefaultInstance();
|
||||
headFrame_ = 0;
|
||||
guildName_ = "";
|
||||
force_ = 0;
|
||||
}
|
||||
private byte memoizedIsInitialized = -1;
|
||||
public final boolean isInitialized() {
|
||||
|
@ -50037,6 +50085,9 @@ public final class CommonProto {
|
|||
if (((bitField0_ & 0x00000040) == 0x00000040)) {
|
||||
output.writeBytes(7, getGuildNameBytes());
|
||||
}
|
||||
if (((bitField0_ & 0x00000080) == 0x00000080)) {
|
||||
output.writeInt32(8, force_);
|
||||
}
|
||||
getUnknownFields().writeTo(output);
|
||||
}
|
||||
|
||||
|
@ -50074,6 +50125,10 @@ public final class CommonProto {
|
|||
size += com.google.protobuf.CodedOutputStream
|
||||
.computeBytesSize(7, getGuildNameBytes());
|
||||
}
|
||||
if (((bitField0_ & 0x00000080) == 0x00000080)) {
|
||||
size += com.google.protobuf.CodedOutputStream
|
||||
.computeInt32Size(8, force_);
|
||||
}
|
||||
size += getUnknownFields().getSerializedSize();
|
||||
memoizedSerializedSize = size;
|
||||
return size;
|
||||
|
@ -50209,6 +50264,8 @@ public final class CommonProto {
|
|||
bitField0_ = (bitField0_ & ~0x00000020);
|
||||
guildName_ = "";
|
||||
bitField0_ = (bitField0_ & ~0x00000040);
|
||||
force_ = 0;
|
||||
bitField0_ = (bitField0_ & ~0x00000080);
|
||||
return this;
|
||||
}
|
||||
|
||||
|
@ -50269,6 +50326,10 @@ public final class CommonProto {
|
|||
to_bitField0_ |= 0x00000040;
|
||||
}
|
||||
result.guildName_ = guildName_;
|
||||
if (((from_bitField0_ & 0x00000080) == 0x00000080)) {
|
||||
to_bitField0_ |= 0x00000080;
|
||||
}
|
||||
result.force_ = force_;
|
||||
result.bitField0_ = to_bitField0_;
|
||||
onBuilt();
|
||||
return result;
|
||||
|
@ -50310,6 +50371,9 @@ public final class CommonProto {
|
|||
guildName_ = other.guildName_;
|
||||
onChanged();
|
||||
}
|
||||
if (other.hasForce()) {
|
||||
setForce(other.getForce());
|
||||
}
|
||||
this.mergeUnknownFields(other.getUnknownFields());
|
||||
return this;
|
||||
}
|
||||
|
@ -50774,6 +50838,55 @@ public final class CommonProto {
|
|||
return this;
|
||||
}
|
||||
|
||||
// optional int32 force = 8;
|
||||
private int force_ ;
|
||||
/**
|
||||
* <code>optional int32 force = 8;</code>
|
||||
*
|
||||
* <pre>
|
||||
*战力
|
||||
* </pre>
|
||||
*/
|
||||
public boolean hasForce() {
|
||||
return ((bitField0_ & 0x00000080) == 0x00000080);
|
||||
}
|
||||
/**
|
||||
* <code>optional int32 force = 8;</code>
|
||||
*
|
||||
* <pre>
|
||||
*战力
|
||||
* </pre>
|
||||
*/
|
||||
public int getForce() {
|
||||
return force_;
|
||||
}
|
||||
/**
|
||||
* <code>optional int32 force = 8;</code>
|
||||
*
|
||||
* <pre>
|
||||
*战力
|
||||
* </pre>
|
||||
*/
|
||||
public Builder setForce(int value) {
|
||||
bitField0_ |= 0x00000080;
|
||||
force_ = value;
|
||||
onChanged();
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>optional int32 force = 8;</code>
|
||||
*
|
||||
* <pre>
|
||||
*战力
|
||||
* </pre>
|
||||
*/
|
||||
public Builder clearForce() {
|
||||
bitField0_ = (bitField0_ & ~0x00000080);
|
||||
force_ = 0;
|
||||
onChanged();
|
||||
return this;
|
||||
}
|
||||
|
||||
// @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.UserRank)
|
||||
}
|
||||
|
||||
|
@ -83237,105 +83350,105 @@ public final class CommonProto {
|
|||
" \001(\005\"H\n\010ItemInfo\022\022\n\ntemplateId\030\001 \001(\005\022\017\n\007" +
|
||||
"overlap\030\002 \001(\005\022\027\n\017nextRefreshTime\030\003 \001(\005\"H" +
|
||||
"\n\010RankInfo\022\014\n\004rank\030\001 \001(\005\022\016\n\006param1\030\002 \001(\005" +
|
||||
"\022\016\n\006param2\030\003 \001(\005\022\016\n\006param3\030\004 \001(\005\"\244\001\n\010Use" +
|
||||
"\022\016\n\006param2\030\003 \001(\005\022\016\n\006param3\030\004 \001(\005\"\263\001\n\010Use" +
|
||||
"rRank\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n\004hea" +
|
||||
"d\030\003 \001(\005\022\020\n\010userName\030\004 \001(\t\0226\n\010rankInfo\030\005 " +
|
||||
"\001(\0132$.com.ljsd.jieling.protocols.RankInf" +
|
||||
"o\022\021\n\theadFrame\030\006 \001(\005\022\021\n\tguildName\030\007 \001(\t\"",
|
||||
"\204\001\n\025ActorEffectBufferInfo\022\n\n\002id\030\001 \001(\005\022\014\n" +
|
||||
"\004type\030\002 \001(\005\022\021\n\tstartTime\030\003 \001(\005\022\017\n\007endTim" +
|
||||
"e\030\004 \001(\005\022\016\n\006target\030\005 \001(\005\022\016\n\006caster\030\006 \001(\005\022" +
|
||||
"\r\n\005value\030\007 \003(\005\"T\n\016BloodyHeroInfo\022\016\n\006hero" +
|
||||
"Id\030\001 \001(\t\022\016\n\006heroHp\030\002 \001(\005\022\021\n\theroMaxHp\030\003 " +
|
||||
"\001(\005\022\017\n\007heroTid\030\004 \001(\005\"%\n\010SceneMsg\022\014\n\004time" +
|
||||
"\030\001 \001(\005\022\013\n\003msg\030\002 \001(\t\"\'\n\nPosMineral\022\013\n\003pos" +
|
||||
"\030\001 \001(\005\022\014\n\004nums\030\002 \001(\005\"\264\001\n\010Creature\022\014\n\004pat" +
|
||||
"h\030\001 \003(\005\022\r\n\005speed\030\002 \001(\005\022\r\n\005maxHp\030\003 \001(\005\022\r\n" +
|
||||
"\005curHp\030\004 \001(\005\022\017\n\007mineral\030\005 \001(\005\022\014\n\004camp\030\006 ",
|
||||
"\001(\005\022<\n\010heroInfo\030\007 \003(\0132*.com.ljsd.jieling" +
|
||||
".protocols.BloodyHeroInfo\022\020\n\010killNums\030\010 " +
|
||||
"\001(\005\"\217\001\n\nSceneActor\022\n\n\002id\030\001 \001(\005\022\016\n\006curPos" +
|
||||
"\030\002 \001(\005\022\r\n\005state\030\003 \001(\005\022\014\n\004type\030\004 \001(\005\0226\n\010C" +
|
||||
"reature\030\006 \001(\0132$.com.ljsd.jieling.protoco" +
|
||||
"ls.Creature\022\020\n\010userName\030\007 \001(\t\"\236\002\n\tSceneI" +
|
||||
"nfo\022\016\n\006roomId\030\001 \001(\005\022\r\n\005mapId\030\002 \001(\005\022:\n\nSc" +
|
||||
"eneActor\030\003 \003(\0132&.com.ljsd.jieling.protoc" +
|
||||
"ols.SceneActor\022P\n\025actorEffectBufferInfo\030" +
|
||||
"\004 \003(\01321.com.ljsd.jieling.protocols.Actor",
|
||||
"EffectBufferInfo\022\024\n\014barrierPoint\030\005 \003(\005\022:" +
|
||||
"\n\nposMineral\030\006 \003(\0132&.com.ljsd.jieling.pr" +
|
||||
"otocols.PosMineral\022\022\n\nremainTime\030\007 \001(\005\"S" +
|
||||
"\n\027SceneGetFullMsgResponse\0228\n\tsceneInfo\030\001" +
|
||||
" \001(\0132%.com.ljsd.jieling.protocols.SceneI" +
|
||||
"nfo\"B\n\013blessReward\022\022\n\nlocationId\030\001 \001(\005\022\r" +
|
||||
"\n\005state\030\002 \001(\005\022\020\n\010rewardId\030\003 \001(\005\"5\n\022fiveR" +
|
||||
"esetTowerInfo\022\r\n\005tower\030\001 \001(\005\022\020\n\010intoType" +
|
||||
"\030\002 \001(\005\";\n\020FamilyContribute\022\013\n\003win\030\001 \001(\005\022" +
|
||||
"\014\n\004draw\030\002 \001(\005\022\014\n\004fail\030\003 \001(\005\"\210\002\n\016FamilyBa",
|
||||
"seInfo\022\n\n\002id\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\017\n\007anno" +
|
||||
"uce\030\003 \001(\t\022\r\n\005levle\030\004 \001(\005\022\013\n\003exp\030\005 \001(\005\022\020\n" +
|
||||
"\010totalNum\030\006 \001(\005\022\016\n\006maxNum\030\007 \001(\005\022\020\n\010joinT" +
|
||||
"ype\030\010 \001(\005\022\014\n\004icon\030\t \001(\005\022\021\n\tlevelTime\030\n \001" +
|
||||
"(\005\022A\n\013fightResult\030\013 \001(\0132,.com.ljsd.jieli" +
|
||||
"ng.protocols.FamilyContribute\022\027\n\017playerI" +
|
||||
"ntoLevel\030\014 \001(\005\")\n\013endlessHero\022\016\n\006heroId\030" +
|
||||
"\001 \001(\t\022\n\n\002hp\030\002 \001(\005\"2\n\022EndlessRefreshInfo\022" +
|
||||
"\016\n\006cellId\030\001 \001(\005\022\014\n\004time\030\002 \001(\005\"u\n\014UseForc" +
|
||||
"eInfo\022\014\n\004name\030\001 \001(\t\022\014\n\004leve\030\002 \001(\005\022\r\n\005for",
|
||||
"ce\030\003 \001(\005\022\014\n\004rank\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022\021\n\t" +
|
||||
"headFrame\030\006 \001(\005\022\013\n\003uid\030\007 \001(\005\"H\n\013endlessS" +
|
||||
"ign\022\r\n\005mapId\030\001 \001(\005\022\016\n\006cellId\030\002 \001(\005\022\014\n\004in" +
|
||||
"fo\030\003 \001(\t\022\014\n\004type\030\004 \001(\005\"g\n\nExpertInfo\022\014\n\004" +
|
||||
"name\030\001 \001(\t\022\r\n\005score\030\002 \001(\005\022\014\n\004rank\030\003 \001(\005\022" +
|
||||
"\r\n\005level\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022\021\n\theadFram" +
|
||||
"e\030\006 \001(\005\")\n\nSignInInfo\022\014\n\004days\030\001 \001(\005\022\r\n\005s" +
|
||||
"tate\030\002 \001(\005\"N\n\016TeamSimpleInfo\022\016\n\006heroid\030\001" +
|
||||
" \001(\t\022\017\n\007heroTid\030\002 \001(\005\022\014\n\004star\030\003 \001(\005\022\r\n\005l" +
|
||||
"evel\030\004 \001(\005\"\207\001\n\017TeamOneTeamInfo\0228\n\004team\030\001",
|
||||
" \003(\0132*.com.ljsd.jieling.protocols.TeamSi" +
|
||||
"mpleInfo\022\024\n\014PokemonInfos\030\002 \003(\005\022\022\n\ntotalF" +
|
||||
"orce\030\003 \001(\005\022\020\n\010remainHp\030\004 \003(\005\"\271\001\n\013TeamOne" +
|
||||
"Info\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n\004name" +
|
||||
"\030\003 \001(\t\022\014\n\004head\030\004 \001(\005\022\021\n\theadFrame\030\005 \001(\005\022" +
|
||||
"\021\n\tguildName\030\007 \001(\t\0229\n\004team\030\006 \001(\0132+.com.l" +
|
||||
"jsd.jieling.protocols.TeamOneTeamInfo\022\021\n" +
|
||||
"\tisApplyed\030\010 \001(\005\"y\n\017MonsterRankInfo\022\014\n\004n" +
|
||||
"ame\030\001 \001(\t\022\r\n\005score\030\002 \001(\005\022\014\n\004rank\030\003 \001(\005\022\r" +
|
||||
"\n\005level\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022\021\n\theadFrame",
|
||||
"\030\006 \001(\005\022\013\n\003uid\030\007 \001(\005\"2\n\rHeroBloodInfo\022\016\n\006" +
|
||||
"heroId\030\001 \001(\t\022\021\n\tlostBlood\030\002 \001(\005\"D\n\013Endle" +
|
||||
"ssInfo\022\r\n\005mapId\030\001 \001(\005\022\022\n\nworldLevel\030\002 \001(" +
|
||||
"\005\022\022\n\nbloodScore\030\003 \001(\005\"2\n\017PlayerBindPhone" +
|
||||
"\022\020\n\010phoneNum\030\001 \001(\t\022\r\n\005state\030\002 \001(\005\"3\n\014End" +
|
||||
"lessPoint\022\020\n\010location\030\001 \001(\005\022\021\n\tmonsterId" +
|
||||
"\030\002 \001(\005\"2\n\014StrongerInfo\022\020\n\010curScore\030\001 \001(\005" +
|
||||
"\022\020\n\010maxScore\030\002 \001(\005\"U\n\017QuestionOptions\022\017\n" +
|
||||
"\007content\030\001 \001(\t\022\014\n\004type\030\002 \001(\005\022\017\n\007options\030" +
|
||||
"\003 \003(\t\022\022\n\nanswerType\030\004 \001(\005\"\212\001\n\017BloodPerso",
|
||||
"nInfo\022\n\n\002id\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\021\n\theadF" +
|
||||
"rame\030\003 \001(\005\022\014\n\004head\030\004 \001(\005\022\020\n\010serverId\030\005 \001" +
|
||||
"(\005\022\r\n\005level\030\006 \001(\005\022\014\n\004rank\030\007 \001(\005\022\r\n\005score" +
|
||||
"\030\010 \001(\005\"H\n\026LuckWheelRewardPosInfo\022\013\n\003pos\030" +
|
||||
"\001 \001(\005\022\016\n\006luckId\030\002 \001(\005\022\021\n\tluckTimes\030\003 \001(\005" +
|
||||
"\"W\n\013RefreshTask\022\014\n\004type\030\001 \001(\005\022:\n\005tasks\030\002" +
|
||||
" \003(\0132+.com.ljsd.jieling.protocols.UserMi" +
|
||||
"ssionInfo\"\221\001\n\021MainLevelRankInfo\022\013\n\003uid\030\001" +
|
||||
" \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n\004name\030\003 \001(\t\022\017\n\007fig" +
|
||||
"htId\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022\014\n\004rank\030\006 \001(\005\022\022",
|
||||
"\n\ntotalForce\030\007 \001(\005\022\021\n\theadFrame\030\010 \001(\005\"B\n" +
|
||||
"\017ChampionBetInfo\022\n\n\002id\030\001 \001(\t\022\020\n\010redCoins" +
|
||||
"\030\002 \001(\005\022\021\n\tblueCoins\030\003 \001(\005\"B\n\026ChampionTea" +
|
||||
"mPersonInfo\022\013\n\003uid\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\r" +
|
||||
"\n\005score\030\003 \001(\005\"\323\001\n\022ChampionBattleInfo\0227\n\006" +
|
||||
"myInfo\030\001 \001(\0132\'.com.ljsd.jieling.protocol" +
|
||||
"s.TeamOneInfo\022:\n\tenemyInfo\030\002 \001(\0132\'.com.l" +
|
||||
"jsd.jieling.protocols.TeamOneInfo\022\016\n\006res" +
|
||||
"ult\030\003 \001(\005\0228\n\tfightData\030\004 \001(\0132%.com.ljsd." +
|
||||
"jieling.protocols.FightData\"\202\001\n\026Champion",
|
||||
"BattlePairInfo\022\022\n\nattackName\030\001 \001(\t\022\017\n\007de" +
|
||||
"fName\030\002 \001(\t\022\023\n\013fightResult\030\003 \001(\005\022\n\n\002id\030\004" +
|
||||
" \001(\t\022\022\n\nroundTImes\030\005 \001(\005\022\016\n\006teamId\030\006 \001(\005" +
|
||||
"B\002H\001"
|
||||
"o\022\021\n\theadFrame\030\006 \001(\005\022\021\n\tguildName\030\007 \001(\t\022",
|
||||
"\r\n\005force\030\010 \001(\005\"\204\001\n\025ActorEffectBufferInfo" +
|
||||
"\022\n\n\002id\030\001 \001(\005\022\014\n\004type\030\002 \001(\005\022\021\n\tstartTime\030" +
|
||||
"\003 \001(\005\022\017\n\007endTime\030\004 \001(\005\022\016\n\006target\030\005 \001(\005\022\016" +
|
||||
"\n\006caster\030\006 \001(\005\022\r\n\005value\030\007 \003(\005\"T\n\016BloodyH" +
|
||||
"eroInfo\022\016\n\006heroId\030\001 \001(\t\022\016\n\006heroHp\030\002 \001(\005\022" +
|
||||
"\021\n\theroMaxHp\030\003 \001(\005\022\017\n\007heroTid\030\004 \001(\005\"%\n\010S" +
|
||||
"ceneMsg\022\014\n\004time\030\001 \001(\005\022\013\n\003msg\030\002 \001(\t\"\'\n\nPo" +
|
||||
"sMineral\022\013\n\003pos\030\001 \001(\005\022\014\n\004nums\030\002 \001(\005\"\264\001\n\010" +
|
||||
"Creature\022\014\n\004path\030\001 \003(\005\022\r\n\005speed\030\002 \001(\005\022\r\n" +
|
||||
"\005maxHp\030\003 \001(\005\022\r\n\005curHp\030\004 \001(\005\022\017\n\007mineral\030\005",
|
||||
" \001(\005\022\014\n\004camp\030\006 \001(\005\022<\n\010heroInfo\030\007 \003(\0132*.c" +
|
||||
"om.ljsd.jieling.protocols.BloodyHeroInfo" +
|
||||
"\022\020\n\010killNums\030\010 \001(\005\"\217\001\n\nSceneActor\022\n\n\002id\030" +
|
||||
"\001 \001(\005\022\016\n\006curPos\030\002 \001(\005\022\r\n\005state\030\003 \001(\005\022\014\n\004" +
|
||||
"type\030\004 \001(\005\0226\n\010Creature\030\006 \001(\0132$.com.ljsd." +
|
||||
"jieling.protocols.Creature\022\020\n\010userName\030\007" +
|
||||
" \001(\t\"\236\002\n\tSceneInfo\022\016\n\006roomId\030\001 \001(\005\022\r\n\005ma" +
|
||||
"pId\030\002 \001(\005\022:\n\nSceneActor\030\003 \003(\0132&.com.ljsd" +
|
||||
".jieling.protocols.SceneActor\022P\n\025actorEf" +
|
||||
"fectBufferInfo\030\004 \003(\01321.com.ljsd.jieling.",
|
||||
"protocols.ActorEffectBufferInfo\022\024\n\014barri" +
|
||||
"erPoint\030\005 \003(\005\022:\n\nposMineral\030\006 \003(\0132&.com." +
|
||||
"ljsd.jieling.protocols.PosMineral\022\022\n\nrem" +
|
||||
"ainTime\030\007 \001(\005\"S\n\027SceneGetFullMsgResponse" +
|
||||
"\0228\n\tsceneInfo\030\001 \001(\0132%.com.ljsd.jieling.p" +
|
||||
"rotocols.SceneInfo\"B\n\013blessReward\022\022\n\nloc" +
|
||||
"ationId\030\001 \001(\005\022\r\n\005state\030\002 \001(\005\022\020\n\010rewardId" +
|
||||
"\030\003 \001(\005\"5\n\022fiveResetTowerInfo\022\r\n\005tower\030\001 " +
|
||||
"\001(\005\022\020\n\010intoType\030\002 \001(\005\";\n\020FamilyContribut" +
|
||||
"e\022\013\n\003win\030\001 \001(\005\022\014\n\004draw\030\002 \001(\005\022\014\n\004fail\030\003 \001",
|
||||
"(\005\"\210\002\n\016FamilyBaseInfo\022\n\n\002id\030\001 \001(\005\022\014\n\004nam" +
|
||||
"e\030\002 \001(\t\022\017\n\007annouce\030\003 \001(\t\022\r\n\005levle\030\004 \001(\005\022" +
|
||||
"\013\n\003exp\030\005 \001(\005\022\020\n\010totalNum\030\006 \001(\005\022\016\n\006maxNum" +
|
||||
"\030\007 \001(\005\022\020\n\010joinType\030\010 \001(\005\022\014\n\004icon\030\t \001(\005\022\021" +
|
||||
"\n\tlevelTime\030\n \001(\005\022A\n\013fightResult\030\013 \001(\0132," +
|
||||
".com.ljsd.jieling.protocols.FamilyContri" +
|
||||
"bute\022\027\n\017playerIntoLevel\030\014 \001(\005\")\n\013endless" +
|
||||
"Hero\022\016\n\006heroId\030\001 \001(\t\022\n\n\002hp\030\002 \001(\005\"2\n\022Endl" +
|
||||
"essRefreshInfo\022\016\n\006cellId\030\001 \001(\005\022\014\n\004time\030\002" +
|
||||
" \001(\005\"u\n\014UseForceInfo\022\014\n\004name\030\001 \001(\t\022\014\n\004le",
|
||||
"ve\030\002 \001(\005\022\r\n\005force\030\003 \001(\005\022\014\n\004rank\030\004 \001(\005\022\014\n" +
|
||||
"\004head\030\005 \001(\005\022\021\n\theadFrame\030\006 \001(\005\022\013\n\003uid\030\007 " +
|
||||
"\001(\005\"H\n\013endlessSign\022\r\n\005mapId\030\001 \001(\005\022\016\n\006cel" +
|
||||
"lId\030\002 \001(\005\022\014\n\004info\030\003 \001(\t\022\014\n\004type\030\004 \001(\005\"g\n" +
|
||||
"\nExpertInfo\022\014\n\004name\030\001 \001(\t\022\r\n\005score\030\002 \001(\005" +
|
||||
"\022\014\n\004rank\030\003 \001(\005\022\r\n\005level\030\004 \001(\005\022\014\n\004head\030\005 " +
|
||||
"\001(\005\022\021\n\theadFrame\030\006 \001(\005\")\n\nSignInInfo\022\014\n\004" +
|
||||
"days\030\001 \001(\005\022\r\n\005state\030\002 \001(\005\"N\n\016TeamSimpleI" +
|
||||
"nfo\022\016\n\006heroid\030\001 \001(\t\022\017\n\007heroTid\030\002 \001(\005\022\014\n\004" +
|
||||
"star\030\003 \001(\005\022\r\n\005level\030\004 \001(\005\"\207\001\n\017TeamOneTea",
|
||||
"mInfo\0228\n\004team\030\001 \003(\0132*.com.ljsd.jieling.p" +
|
||||
"rotocols.TeamSimpleInfo\022\024\n\014PokemonInfos\030" +
|
||||
"\002 \003(\005\022\022\n\ntotalForce\030\003 \001(\005\022\020\n\010remainHp\030\004 " +
|
||||
"\003(\005\"\271\001\n\013TeamOneInfo\022\013\n\003uid\030\001 \001(\005\022\r\n\005leve" +
|
||||
"l\030\002 \001(\005\022\014\n\004name\030\003 \001(\t\022\014\n\004head\030\004 \001(\005\022\021\n\th" +
|
||||
"eadFrame\030\005 \001(\005\022\021\n\tguildName\030\007 \001(\t\0229\n\004tea" +
|
||||
"m\030\006 \001(\0132+.com.ljsd.jieling.protocols.Tea" +
|
||||
"mOneTeamInfo\022\021\n\tisApplyed\030\010 \001(\005\"y\n\017Monst" +
|
||||
"erRankInfo\022\014\n\004name\030\001 \001(\t\022\r\n\005score\030\002 \001(\005\022" +
|
||||
"\014\n\004rank\030\003 \001(\005\022\r\n\005level\030\004 \001(\005\022\014\n\004head\030\005 \001",
|
||||
"(\005\022\021\n\theadFrame\030\006 \001(\005\022\013\n\003uid\030\007 \001(\005\"2\n\rHe" +
|
||||
"roBloodInfo\022\016\n\006heroId\030\001 \001(\t\022\021\n\tlostBlood" +
|
||||
"\030\002 \001(\005\"D\n\013EndlessInfo\022\r\n\005mapId\030\001 \001(\005\022\022\n\n" +
|
||||
"worldLevel\030\002 \001(\005\022\022\n\nbloodScore\030\003 \001(\005\"2\n\017" +
|
||||
"PlayerBindPhone\022\020\n\010phoneNum\030\001 \001(\t\022\r\n\005sta" +
|
||||
"te\030\002 \001(\005\"3\n\014EndlessPoint\022\020\n\010location\030\001 \001" +
|
||||
"(\005\022\021\n\tmonsterId\030\002 \001(\005\"2\n\014StrongerInfo\022\020\n" +
|
||||
"\010curScore\030\001 \001(\005\022\020\n\010maxScore\030\002 \001(\005\"U\n\017Que" +
|
||||
"stionOptions\022\017\n\007content\030\001 \001(\t\022\014\n\004type\030\002 " +
|
||||
"\001(\005\022\017\n\007options\030\003 \003(\t\022\022\n\nanswerType\030\004 \001(\005",
|
||||
"\"\212\001\n\017BloodPersonInfo\022\n\n\002id\030\001 \001(\005\022\014\n\004name" +
|
||||
"\030\002 \001(\t\022\021\n\theadFrame\030\003 \001(\005\022\014\n\004head\030\004 \001(\005\022" +
|
||||
"\020\n\010serverId\030\005 \001(\005\022\r\n\005level\030\006 \001(\005\022\014\n\004rank" +
|
||||
"\030\007 \001(\005\022\r\n\005score\030\010 \001(\005\"H\n\026LuckWheelReward" +
|
||||
"PosInfo\022\013\n\003pos\030\001 \001(\005\022\016\n\006luckId\030\002 \001(\005\022\021\n\t" +
|
||||
"luckTimes\030\003 \001(\005\"W\n\013RefreshTask\022\014\n\004type\030\001" +
|
||||
" \001(\005\022:\n\005tasks\030\002 \003(\0132+.com.ljsd.jieling.p" +
|
||||
"rotocols.UserMissionInfo\"\221\001\n\021MainLevelRa" +
|
||||
"nkInfo\022\013\n\003uid\030\001 \001(\005\022\r\n\005level\030\002 \001(\005\022\014\n\004na" +
|
||||
"me\030\003 \001(\t\022\017\n\007fightId\030\004 \001(\005\022\014\n\004head\030\005 \001(\005\022",
|
||||
"\014\n\004rank\030\006 \001(\005\022\022\n\ntotalForce\030\007 \001(\005\022\021\n\thea" +
|
||||
"dFrame\030\010 \001(\005\"B\n\017ChampionBetInfo\022\n\n\002id\030\001 " +
|
||||
"\001(\t\022\020\n\010redCoins\030\002 \001(\005\022\021\n\tblueCoins\030\003 \001(\005" +
|
||||
"\"B\n\026ChampionTeamPersonInfo\022\013\n\003uid\030\001 \001(\005\022" +
|
||||
"\014\n\004name\030\002 \001(\t\022\r\n\005score\030\003 \001(\005\"\323\001\n\022Champio" +
|
||||
"nBattleInfo\0227\n\006myInfo\030\001 \001(\0132\'.com.ljsd.j" +
|
||||
"ieling.protocols.TeamOneInfo\022:\n\tenemyInf" +
|
||||
"o\030\002 \001(\0132\'.com.ljsd.jieling.protocols.Tea" +
|
||||
"mOneInfo\022\016\n\006result\030\003 \001(\005\0228\n\tfightData\030\004 " +
|
||||
"\001(\0132%.com.ljsd.jieling.protocols.FightDa",
|
||||
"ta\"\202\001\n\026ChampionBattlePairInfo\022\022\n\nattackN" +
|
||||
"ame\030\001 \001(\t\022\017\n\007defName\030\002 \001(\t\022\023\n\013fightResul" +
|
||||
"t\030\003 \001(\005\022\n\n\002id\030\004 \001(\t\022\022\n\nroundTImes\030\005 \001(\005\022" +
|
||||
"\016\n\006teamId\030\006 \001(\005B\002H\001"
|
||||
};
|
||||
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
|
||||
new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
|
||||
|
@ -83671,7 +83784,7 @@ public final class CommonProto {
|
|||
internal_static_com_ljsd_jieling_protocols_UserRank_fieldAccessorTable = new
|
||||
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
||||
internal_static_com_ljsd_jieling_protocols_UserRank_descriptor,
|
||||
new java.lang.String[] { "Uid", "Level", "Head", "UserName", "RankInfo", "HeadFrame", "GuildName", });
|
||||
new java.lang.String[] { "Uid", "Level", "Head", "UserName", "RankInfo", "HeadFrame", "GuildName", "Force", });
|
||||
internal_static_com_ljsd_jieling_protocols_ActorEffectBufferInfo_descriptor =
|
||||
getDescriptor().getMessageTypes().get(54);
|
||||
internal_static_com_ljsd_jieling_protocols_ActorEffectBufferInfo_fieldAccessorTable = new
|
||||
|
|
|
@ -4942,6 +4942,24 @@ public final class PlayerInfoProto {
|
|||
* </pre>
|
||||
*/
|
||||
int getVipDaily();
|
||||
|
||||
// optional int32 missingRefreshCount = 28;
|
||||
/**
|
||||
* <code>optional int32 missingRefreshCount = 28;</code>
|
||||
*
|
||||
* <pre>
|
||||
*迷宫寻宝妖精刷新次数
|
||||
* </pre>
|
||||
*/
|
||||
boolean hasMissingRefreshCount();
|
||||
/**
|
||||
* <code>optional int32 missingRefreshCount = 28;</code>
|
||||
*
|
||||
* <pre>
|
||||
*迷宫寻宝妖精刷新次数
|
||||
* </pre>
|
||||
*/
|
||||
int getMissingRefreshCount();
|
||||
}
|
||||
/**
|
||||
* Protobuf type {@code com.ljsd.jieling.protocols.GetPlayerInfoResponse}
|
||||
|
@ -5293,6 +5311,11 @@ public final class PlayerInfoProto {
|
|||
vipDaily_ = input.readInt32();
|
||||
break;
|
||||
}
|
||||
case 224: {
|
||||
bitField0_ |= 0x00010000;
|
||||
missingRefreshCount_ = input.readInt32();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
|
||||
|
@ -6173,6 +6196,30 @@ public final class PlayerInfoProto {
|
|||
return vipDaily_;
|
||||
}
|
||||
|
||||
// optional int32 missingRefreshCount = 28;
|
||||
public static final int MISSINGREFRESHCOUNT_FIELD_NUMBER = 28;
|
||||
private int missingRefreshCount_;
|
||||
/**
|
||||
* <code>optional int32 missingRefreshCount = 28;</code>
|
||||
*
|
||||
* <pre>
|
||||
*迷宫寻宝妖精刷新次数
|
||||
* </pre>
|
||||
*/
|
||||
public boolean hasMissingRefreshCount() {
|
||||
return ((bitField0_ & 0x00010000) == 0x00010000);
|
||||
}
|
||||
/**
|
||||
* <code>optional int32 missingRefreshCount = 28;</code>
|
||||
*
|
||||
* <pre>
|
||||
*迷宫寻宝妖精刷新次数
|
||||
* </pre>
|
||||
*/
|
||||
public int getMissingRefreshCount() {
|
||||
return missingRefreshCount_;
|
||||
}
|
||||
|
||||
private void initFields() {
|
||||
player_ = com.ljsd.jieling.protocols.CommonProto.Player.getDefaultInstance();
|
||||
newPlayerGuidePoint_ = java.util.Collections.emptyList();
|
||||
|
@ -6201,6 +6248,7 @@ public final class PlayerInfoProto {
|
|||
playedMapTypes_ = java.util.Collections.emptyList();
|
||||
amount_ = 0;
|
||||
vipDaily_ = 0;
|
||||
missingRefreshCount_ = 0;
|
||||
}
|
||||
private byte memoizedIsInitialized = -1;
|
||||
public final boolean isInitialized() {
|
||||
|
@ -6295,6 +6343,9 @@ public final class PlayerInfoProto {
|
|||
if (((bitField0_ & 0x00008000) == 0x00008000)) {
|
||||
output.writeInt32(27, vipDaily_);
|
||||
}
|
||||
if (((bitField0_ & 0x00010000) == 0x00010000)) {
|
||||
output.writeInt32(28, missingRefreshCount_);
|
||||
}
|
||||
getUnknownFields().writeTo(output);
|
||||
}
|
||||
|
||||
|
@ -6447,6 +6498,10 @@ public final class PlayerInfoProto {
|
|||
size += com.google.protobuf.CodedOutputStream
|
||||
.computeInt32Size(27, vipDaily_);
|
||||
}
|
||||
if (((bitField0_ & 0x00010000) == 0x00010000)) {
|
||||
size += com.google.protobuf.CodedOutputStream
|
||||
.computeInt32Size(28, missingRefreshCount_);
|
||||
}
|
||||
size += getUnknownFields().getSerializedSize();
|
||||
memoizedSerializedSize = size;
|
||||
return size;
|
||||
|
@ -6662,6 +6717,8 @@ public final class PlayerInfoProto {
|
|||
bitField0_ = (bitField0_ & ~0x02000000);
|
||||
vipDaily_ = 0;
|
||||
bitField0_ = (bitField0_ & ~0x04000000);
|
||||
missingRefreshCount_ = 0;
|
||||
bitField0_ = (bitField0_ & ~0x08000000);
|
||||
return this;
|
||||
}
|
||||
|
||||
|
@ -6845,6 +6902,10 @@ public final class PlayerInfoProto {
|
|||
to_bitField0_ |= 0x00008000;
|
||||
}
|
||||
result.vipDaily_ = vipDaily_;
|
||||
if (((from_bitField0_ & 0x08000000) == 0x08000000)) {
|
||||
to_bitField0_ |= 0x00010000;
|
||||
}
|
||||
result.missingRefreshCount_ = missingRefreshCount_;
|
||||
result.bitField0_ = to_bitField0_;
|
||||
onBuilt();
|
||||
return result;
|
||||
|
@ -7083,6 +7144,9 @@ public final class PlayerInfoProto {
|
|||
if (other.hasVipDaily()) {
|
||||
setVipDaily(other.getVipDaily());
|
||||
}
|
||||
if (other.hasMissingRefreshCount()) {
|
||||
setMissingRefreshCount(other.getMissingRefreshCount());
|
||||
}
|
||||
this.mergeUnknownFields(other.getUnknownFields());
|
||||
return this;
|
||||
}
|
||||
|
@ -10012,6 +10076,55 @@ public final class PlayerInfoProto {
|
|||
return this;
|
||||
}
|
||||
|
||||
// optional int32 missingRefreshCount = 28;
|
||||
private int missingRefreshCount_ ;
|
||||
/**
|
||||
* <code>optional int32 missingRefreshCount = 28;</code>
|
||||
*
|
||||
* <pre>
|
||||
*迷宫寻宝妖精刷新次数
|
||||
* </pre>
|
||||
*/
|
||||
public boolean hasMissingRefreshCount() {
|
||||
return ((bitField0_ & 0x08000000) == 0x08000000);
|
||||
}
|
||||
/**
|
||||
* <code>optional int32 missingRefreshCount = 28;</code>
|
||||
*
|
||||
* <pre>
|
||||
*迷宫寻宝妖精刷新次数
|
||||
* </pre>
|
||||
*/
|
||||
public int getMissingRefreshCount() {
|
||||
return missingRefreshCount_;
|
||||
}
|
||||
/**
|
||||
* <code>optional int32 missingRefreshCount = 28;</code>
|
||||
*
|
||||
* <pre>
|
||||
*迷宫寻宝妖精刷新次数
|
||||
* </pre>
|
||||
*/
|
||||
public Builder setMissingRefreshCount(int value) {
|
||||
bitField0_ |= 0x08000000;
|
||||
missingRefreshCount_ = value;
|
||||
onChanged();
|
||||
return this;
|
||||
}
|
||||
/**
|
||||
* <code>optional int32 missingRefreshCount = 28;</code>
|
||||
*
|
||||
* <pre>
|
||||
*迷宫寻宝妖精刷新次数
|
||||
* </pre>
|
||||
*/
|
||||
public Builder clearMissingRefreshCount() {
|
||||
bitField0_ = (bitField0_ & ~0x08000000);
|
||||
missingRefreshCount_ = 0;
|
||||
onChanged();
|
||||
return this;
|
||||
}
|
||||
|
||||
// @@protoc_insertion_point(builder_scope:com.ljsd.jieling.protocols.GetPlayerInfoResponse)
|
||||
}
|
||||
|
||||
|
@ -92915,7 +93028,7 @@ public final class PlayerInfoProto {
|
|||
"el_s\030\013 \001(\t\022\022\n\nplatform_s\030\014 \001(\t\"5\n\rLoginR" +
|
||||
"esponse\022\022\n\nresultCode\030\001 \001(\005\022\020\n\010newToken\030",
|
||||
"\002 \001(\t\"0\n\024GetPlayerInfoRequest\022\013\n\003num\030\001 \001" +
|
||||
"(\005\022\013\n\003str\030\002 \001(\t\"\354\007\n\025GetPlayerInfoRespons" +
|
||||
"(\005\022\013\n\003str\030\002 \001(\t\"\211\010\n\025GetPlayerInfoRespons" +
|
||||
"e\0222\n\006player\030\001 \001(\0132\".com.ljsd.jieling.pro" +
|
||||
"tocols.Player\022L\n\023newPlayerGuidePoint\030\002 \003" +
|
||||
"(\0132/.com.ljsd.jieling.protocols.NewPlaye" +
|
||||
|
@ -92940,261 +93053,262 @@ public final class PlayerInfoProto {
|
|||
"ljsd.jieling.protocols.PlayerBindPhone\022\025" +
|
||||
"\n\rQuestionState\030\027 \001(\005\022\025\n\rSoulEquipPool\030\030" +
|
||||
" \001(\005\022\026\n\016playedMapTypes\030\031 \003(\005\022\016\n\006amount\030\032" +
|
||||
" \001(\005\022\020\n\010vipDaily\030\033 \001(\005\"#\n\022GetItemInfoReq" +
|
||||
"uest\022\r\n\005index\030\001 \001(\005\"_\n\023GetItemInfoRespon" +
|
||||
"se\0222\n\010itemlist\030\001 \003(\0132 .com.ljsd.jieling." +
|
||||
"protocols.Item\022\024\n\014isSendFinish\030\002 \001(\010\"L\n\026",
|
||||
"GetAllMailInfoResponse\0222\n\010mialList\030\001 \003(\013" +
|
||||
"2 .com.ljsd.jieling.protocols.Mail\"\212\001\n\026U" +
|
||||
"seAndPriceItemRequest\022\014\n\004type\030\001 \001(\005\022\016\n\006i" +
|
||||
"temId\030\002 \001(\005\022/\n\005items\030\003 \003(\0132 .com.ljsd.ji" +
|
||||
"eling.protocols.Item\022\020\n\010equipIds\030\004 \003(\t\022\017" +
|
||||
"\n\007heroIds\030\005 \003(\t\"I\n\027UseAndPriceItemRespon" +
|
||||
"se\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.prot" +
|
||||
"ocols.Drop\"!\n\017MailReadRequest\022\016\n\006mailId\030" +
|
||||
"\001 \001(\t\"\"\n\017TakeMailRequest\022\017\n\007mailIds\030\001 \003(" +
|
||||
"\t\"B\n\020TakeMailResponse\022.\n\004drop\030\001 \001(\0132 .co",
|
||||
"m.ljsd.jieling.protocols.Drop\"=\n\031WorkSho" +
|
||||
"pFoundationRequest\022\022\n\nmaterialId\030\001 \001(\005\022\014" +
|
||||
"\n\004nums\030\002 \001(\005\"N\n\032WorkShopEquipCreateReque" +
|
||||
"st\022\020\n\010equipTid\030\001 \001(\005\022\020\n\010runneIds\030\002 \003(\005\022\014" +
|
||||
"\n\004nums\030\003 \001(\005\"[\n\033WorkShopEquipCreateRespo" +
|
||||
"nse\022\014\n\004type\030\001 \001(\005\022.\n\004drop\030\002 \001(\0132 .com.lj" +
|
||||
"sd.jieling.protocols.Drop\"B\n\026WorkShopReb" +
|
||||
"uildRequest\022\017\n\007equipId\030\001 \001(\t\022\027\n\017consumeE" +
|
||||
"quipIds\030\002 \003(\t\"L\n\030WorkShopRebuildRespoons" +
|
||||
"e\0220\n\005equip\030\001 \001(\0132!.com.ljsd.jieling.prot",
|
||||
"ocols.Equip\"=\n\032WorkTechnologyLevelReques" +
|
||||
"t\022\n\n\002id\030\001 \001(\005\022\023\n\013targetLevel\030\002 \001(\005\">\n\033Wo" +
|
||||
"rkTechnologyLevelResponse\022\n\n\002id\030\001 \001(\005\022\023\n" +
|
||||
"\013targetLevel\030\002 \001(\005\"2\n\032WorkTechnologyRese" +
|
||||
"tRequest\022\024\n\014professionId\030\001 \001(\005\"M\n\033WorkTe" +
|
||||
"chnologyResetResponse\022.\n\004drop\030\001 \001(\0132 .co" +
|
||||
"m.ljsd.jieling.protocols.Drop\";\n\027Activit" +
|
||||
"eWorkShopReqeust\022\014\n\004type\030\001 \001(\005\022\022\n\nactivi" +
|
||||
"teId\030\002 \001(\005\"\252\002\n\027GetWorkShopInfoResponse\022J" +
|
||||
"\n\022workShopUnLockInfo\030\001 \003(\0132..com.ljsd.ji",
|
||||
"eling.protocols.WorkShopUnLockInfo\022F\n\020wo" +
|
||||
"rkShopBaseInfo\030\002 \003(\0132,.com.ljsd.jieling." +
|
||||
"protocols.WorkShopBaseInfo\0227\n\014unDetermin" +
|
||||
"ed\030\003 \001(\0132!.com.ljsd.jieling.protocols.Eq" +
|
||||
"uip\022B\n\016technologyInfo\030\004 \003(\0132*.com.ljsd.j" +
|
||||
"ieling.protocols.TechnologyInfo\"3\n\017CookF" +
|
||||
"oodRequest\022\022\n\nmaterialId\030\001 \003(\005\022\014\n\004nums\030\002" +
|
||||
" \001(\005\"\212\001\n\020CookFoodResponse\022F\n\020workShopBas" +
|
||||
"eInfo\030\001 \001(\0132,.com.ljsd.jieling.protocols" +
|
||||
".WorkShopBaseInfo\022.\n\004drop\030\002 \001(\0132 .com.lj",
|
||||
"sd.jieling.protocols.Drop\"\034\n\014RedPointInf" +
|
||||
"o\022\014\n\004type\030\001 \001(\005\"i\n\031SaveNewPlayerPointReq" +
|
||||
"uest\022L\n\023newPlayerGuidePoint\030\001 \001(\0132/.com." +
|
||||
"ljsd.jieling.protocols.NewPlayerGuidePoi" +
|
||||
"nt\"B\n\031TakeActivityRewardRequest\022\021\n\tmissi" +
|
||||
"onId\030\001 \001(\005\022\022\n\nactivityId\030\002 \001(\005\"L\n\032TakeAc" +
|
||||
"tivityRewardResponse\022.\n\004drop\030\001 \001(\0132 .com" +
|
||||
".ljsd.jieling.protocols.Drop\"X\n\026GetAllAc" +
|
||||
"tivityResponse\022>\n\014activityInfo\030\001 \003(\0132(.c" +
|
||||
"om.ljsd.jieling.protocols.ActivityInfo\"(",
|
||||
"\n\022RandomNameResponse\022\022\n\nrandomName\030\001 \001(\t" +
|
||||
"\">\n\rReNameRequest\022\014\n\004type\030\001 \001(\005\022\014\n\004name\030" +
|
||||
"\002 \001(\t\022\021\n\tteamPosId\030\003 \001(\005\".\n\035WorkShopRebu" +
|
||||
"ildConfirmRequest\022\r\n\005state\030\001 \001(\005\"9\n\030GetS" +
|
||||
"ecretBoxInfoResponse\022\016\n\006season\030\001 \001(\005\022\r\n\005" +
|
||||
"count\030\002 \001(\005\"(\n\026SecretBoxRandomRequest\022\016\n" +
|
||||
"\006typeId\030\001 \001(\005\"\201\001\n\027SecretBoxRandomRespons" +
|
||||
" \001(\005\022\020\n\010vipDaily\030\033 \001(\005\022\033\n\023missingRefresh" +
|
||||
"Count\030\034 \001(\005\"#\n\022GetItemInfoRequest\022\r\n\005ind" +
|
||||
"ex\030\001 \001(\005\"_\n\023GetItemInfoResponse\0222\n\010iteml" +
|
||||
"ist\030\001 \003(\0132 .com.ljsd.jieling.protocols.I",
|
||||
"tem\022\024\n\014isSendFinish\030\002 \001(\010\"L\n\026GetAllMailI" +
|
||||
"nfoResponse\0222\n\010mialList\030\001 \003(\0132 .com.ljsd" +
|
||||
".jieling.protocols.Mail\"\212\001\n\026UseAndPriceI" +
|
||||
"temRequest\022\014\n\004type\030\001 \001(\005\022\016\n\006itemId\030\002 \001(\005" +
|
||||
"\022/\n\005items\030\003 \003(\0132 .com.ljsd.jieling.proto" +
|
||||
"cols.Item\022\020\n\010equipIds\030\004 \003(\t\022\017\n\007heroIds\030\005" +
|
||||
" \003(\t\"I\n\027UseAndPriceItemResponse\022.\n\004drop\030" +
|
||||
"\001 \001(\0132 .com.ljsd.jieling.protocols.Drop\"" +
|
||||
"!\n\017MailReadRequest\022\016\n\006mailId\030\001 \001(\t\"\"\n\017Ta" +
|
||||
"keMailRequest\022\017\n\007mailIds\030\001 \003(\t\"B\n\020TakeMa",
|
||||
"ilResponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jiel" +
|
||||
"ing.protocols.Drop\"=\n\031WorkShopFoundation" +
|
||||
"Request\022\022\n\nmaterialId\030\001 \001(\005\022\014\n\004nums\030\002 \001(" +
|
||||
"\005\"N\n\032WorkShopEquipCreateRequest\022\020\n\010equip" +
|
||||
"Tid\030\001 \001(\005\022\020\n\010runneIds\030\002 \003(\005\022\014\n\004nums\030\003 \001(" +
|
||||
"\005\"[\n\033WorkShopEquipCreateResponse\022\014\n\004type" +
|
||||
"\030\001 \001(\005\022.\n\004drop\030\002 \001(\0132 .com.ljsd.jieling." +
|
||||
"protocols.Drop\"B\n\026WorkShopRebuildRequest" +
|
||||
"\022\017\n\007equipId\030\001 \001(\t\022\027\n\017consumeEquipIds\030\002 \003" +
|
||||
"(\t\"L\n\030WorkShopRebuildRespoonse\0220\n\005equip\030",
|
||||
"\001 \001(\0132!.com.ljsd.jieling.protocols.Equip" +
|
||||
"\"=\n\032WorkTechnologyLevelRequest\022\n\n\002id\030\001 \001" +
|
||||
"(\005\022\023\n\013targetLevel\030\002 \001(\005\">\n\033WorkTechnolog" +
|
||||
"yLevelResponse\022\n\n\002id\030\001 \001(\005\022\023\n\013targetLeve" +
|
||||
"l\030\002 \001(\005\"2\n\032WorkTechnologyResetRequest\022\024\n" +
|
||||
"\014professionId\030\001 \001(\005\"M\n\033WorkTechnologyRes" +
|
||||
"etResponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jiel" +
|
||||
"ing.protocols.Drop\";\n\027ActiviteWorkShopRe" +
|
||||
"qeust\022\014\n\004type\030\001 \001(\005\022\022\n\nactiviteId\030\002 \001(\005\"" +
|
||||
"\252\002\n\027GetWorkShopInfoResponse\022J\n\022workShopU",
|
||||
"nLockInfo\030\001 \003(\0132..com.ljsd.jieling.proto" +
|
||||
"cols.WorkShopUnLockInfo\022F\n\020workShopBaseI" +
|
||||
"nfo\030\002 \003(\0132,.com.ljsd.jieling.protocols.W" +
|
||||
"orkShopBaseInfo\0227\n\014unDetermined\030\003 \001(\0132!." +
|
||||
"com.ljsd.jieling.protocols.Equip\022B\n\016tech" +
|
||||
"nologyInfo\030\004 \003(\0132*.com.ljsd.jieling.prot" +
|
||||
"ocols.TechnologyInfo\"3\n\017CookFoodRequest\022" +
|
||||
"\022\n\nmaterialId\030\001 \003(\005\022\014\n\004nums\030\002 \001(\005\"\212\001\n\020Co" +
|
||||
"okFoodResponse\022F\n\020workShopBaseInfo\030\001 \001(\013" +
|
||||
"2,.com.ljsd.jieling.protocols.WorkShopBa",
|
||||
"seInfo\022.\n\004drop\030\002 \001(\0132 .com.ljsd.jieling." +
|
||||
"protocols.Drop\"\034\n\014RedPointInfo\022\014\n\004type\030\001" +
|
||||
" \001(\005\"i\n\031SaveNewPlayerPointRequest\022L\n\023new" +
|
||||
"PlayerGuidePoint\030\001 \001(\0132/.com.ljsd.jielin" +
|
||||
"g.protocols.NewPlayerGuidePoint\"B\n\031TakeA" +
|
||||
"ctivityRewardRequest\022\021\n\tmissionId\030\001 \001(\005\022" +
|
||||
"\022\n\nactivityId\030\002 \001(\005\"L\n\032TakeActivityRewar" +
|
||||
"dResponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieli" +
|
||||
"ng.protocols.Drop\"X\n\026GetAllActivityRespo" +
|
||||
"nse\022>\n\014activityInfo\030\001 \003(\0132(.com.ljsd.jie",
|
||||
"ling.protocols.ActivityInfo\"(\n\022RandomNam" +
|
||||
"eResponse\022\022\n\nrandomName\030\001 \001(\t\">\n\rReNameR" +
|
||||
"equest\022\014\n\004type\030\001 \001(\005\022\014\n\004name\030\002 \001(\t\022\021\n\tte" +
|
||||
"amPosId\030\003 \001(\005\".\n\035WorkShopRebuildConfirmR" +
|
||||
"equest\022\r\n\005state\030\001 \001(\005\"9\n\030GetSecretBoxInf" +
|
||||
"oResponse\022\016\n\006season\030\001 \001(\005\022\r\n\005count\030\002 \001(\005" +
|
||||
"\"(\n\026SecretBoxRandomRequest\022\016\n\006typeId\030\001 \001" +
|
||||
"(\005\"\201\001\n\027SecretBoxRandomResponse\022.\n\004drop\030\001" +
|
||||
" \001(\0132 .com.ljsd.jieling.protocols.Drop\0226" +
|
||||
"\n\014extrarReward\030\002 \001(\0132 .com.ljsd.jieling.",
|
||||
"protocols.Drop\"Q\n\025GetStoreInfosResponse\022" +
|
||||
"8\n\tstoreInfo\030\001 \003(\0132%.com.ljsd.jieling.pr" +
|
||||
"otocols.StoreInfo\"G\n\023BuyStoreItemRequest" +
|
||||
"\022\017\n\007storeId\030\001 \001(\005\022\016\n\006itemId\030\002 \001(\005\022\017\n\007ite" +
|
||||
"mNum\030\003 \001(\005\"F\n\024BuyStoreItemResponse\022.\n\004dr" +
|
||||
"op\030\001 \001(\0132 .com.ljsd.jieling.protocols.Dr" +
|
||||
"op\"9\n\030StoreGoodsRefreshRequest\022\014\n\004type\030\001" +
|
||||
" \001(\005\022\017\n\007storeId\030\002 \001(\005\"U\n\031StoreGoodsRefre" +
|
||||
"shResponse\0228\n\tstoreInfo\030\001 \001(\0132%.com.ljsd" +
|
||||
".jieling.protocols.StoreInfo\"_\n\031GetFunct",
|
||||
"ionOfTimeResponse\022B\n\016functionOfTime\030\001 \003(" +
|
||||
"\0132*.com.ljsd.jieling.protocols.FunctionO" +
|
||||
"fTime\"\230\001\n\022VipLevelUpResponse\022<\n\013vipBaseI" +
|
||||
"nfo\030\001 \001(\0132\'.com.ljsd.jieling.protocols.V" +
|
||||
"ipBaseInfo\022D\n\017userMissionInfo\030\002 \003(\0132+.co" +
|
||||
"m.ljsd.jieling.protocols.UserMissionInfo" +
|
||||
"\"c\n\033MissionUpdateListIndication\022D\n\017userM" +
|
||||
"issionInfo\030\002 \003(\0132+.com.ljsd.jieling.prot" +
|
||||
"ocols.UserMissionInfo\";\n\030TakeMissionRewa" +
|
||||
"rdRequest\022\014\n\004type\030\001 \001(\005\022\021\n\tmissionId\030\002 \001",
|
||||
"(\005\"b\n\031TakeMissionRewardResponse\022.\n\004drop\030" +
|
||||
"\001 \001(\0132 .com.ljsd.jieling.protocols.Drop\022" +
|
||||
"\025\n\rtreasureScore\030\002 \001(\005\"(\n\026UserForceChang" +
|
||||
"eRequest\022\016\n\006teamId\030\001 \001(\005\"!\n\021VipTakeBoxRe" +
|
||||
"quest\022\014\n\004type\030\001 \001(\005\"D\n\022VipTakeBoxRespons" +
|
||||
"e\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.proto" +
|
||||
"cols.Drop\0226\n\014extrarReward\030\002 \001(\0132 .com.lj" +
|
||||
"sd.jieling.protocols.Drop\"Q\n\025GetStoreInf",
|
||||
"osResponse\0228\n\tstoreInfo\030\001 \003(\0132%.com.ljsd" +
|
||||
".jieling.protocols.StoreInfo\"G\n\023BuyStore" +
|
||||
"ItemRequest\022\017\n\007storeId\030\001 \001(\005\022\016\n\006itemId\030\002" +
|
||||
" \001(\005\022\017\n\007itemNum\030\003 \001(\005\"F\n\024BuyStoreItemRes" +
|
||||
"ponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.p" +
|
||||
"rotocols.Drop\"9\n\030StoreGoodsRefreshReques" +
|
||||
"t\022\014\n\004type\030\001 \001(\005\022\017\n\007storeId\030\002 \001(\005\"U\n\031Stor" +
|
||||
"eGoodsRefreshResponse\0228\n\tstoreInfo\030\001 \001(\013" +
|
||||
"2%.com.ljsd.jieling.protocols.StoreInfo\"" +
|
||||
"_\n\031GetFunctionOfTimeResponse\022B\n\016function",
|
||||
"OfTime\030\001 \003(\0132*.com.ljsd.jieling.protocol" +
|
||||
"s.FunctionOfTime\"\230\001\n\022VipLevelUpResponse\022" +
|
||||
"<\n\013vipBaseInfo\030\001 \001(\0132\'.com.ljsd.jieling." +
|
||||
"protocols.VipBaseInfo\022D\n\017userMissionInfo" +
|
||||
"\030\002 \003(\0132+.com.ljsd.jieling.protocols.User" +
|
||||
"MissionInfo\"c\n\033MissionUpdateListIndicati" +
|
||||
"on\022D\n\017userMissionInfo\030\002 \003(\0132+.com.ljsd.j" +
|
||||
"ieling.protocols.UserMissionInfo\";\n\030Take" +
|
||||
"MissionRewardRequest\022\014\n\004type\030\001 \001(\005\022\021\n\tmi" +
|
||||
"ssionId\030\002 \001(\005\"b\n\031TakeMissionRewardRespon",
|
||||
"se\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.prot" +
|
||||
"ocols.Drop\022\025\n\rtreasureScore\030\002 \001(\005\"(\n\026Use" +
|
||||
"rForceChangeRequest\022\016\n\006teamId\030\001 \001(\005\"!\n\021V" +
|
||||
"ipTakeBoxRequest\022\014\n\004type\030\001 \001(\005\"D\n\022VipTak" +
|
||||
"eBoxResponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.ji" +
|
||||
"eling.protocols.Drop\"$\n\023RechargeInfoRequ" +
|
||||
"est\022\r\n\005money\030\001 \001(\005\"F\n\024RechargeInfoRespon" +
|
||||
"se\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.prot" +
|
||||
"ocols.Drop\"$\n\024GetFriendInfoRequest\022\014\n\004ty" +
|
||||
"pe\030\001 \001(\005\"L\n\025GetFriendInfoResponse\0223\n\007Fri",
|
||||
"ends\030\001 \003(\0132\".com.ljsd.jieling.protocols." +
|
||||
"Friend\"*\n\027TestBuyGiftGoodsRequest\022\017\n\007goo" +
|
||||
"dsId\030\001 \001(\005\"H\n\026BuyGoodsDropIndication\022.\n\004" +
|
||||
"drop\030\001 \001(\0132 .com.ljsd.jieling.protocols." +
|
||||
"Drop\"Z\n\026AllGiftGoodsIndication\022@\n\rGiftGo" +
|
||||
"odsInfo\030\001 \003(\0132).com.ljsd.jieling.protoco" +
|
||||
"ls.GiftGoodsInfo\")\n\023InviteFriendRequest\022" +
|
||||
"\022\n\ninviteUids\030\001 \003(\005\">\n\034FriendInviteOpera" +
|
||||
"tionRequest\022\014\n\004type\030\001 \001(\005\022\020\n\010friendId\030\002 " +
|
||||
"\001(\005\"]\n\030sendFriendInfoIndication\022\014\n\004type\030",
|
||||
"\001 \001(\005\0223\n\007Friends\030\002 \001(\0132\".com.ljsd.jielin" +
|
||||
"g.protocols.Friend\":\n\030FriendGivePresentR" +
|
||||
"equest\022\014\n\004type\030\001 \001(\005\022\020\n\010friendId\030\002 \001(\005\"$" +
|
||||
"\n\020DelFriendRequest\022\020\n\010friendId\030\001 \001(\005\"8\n\026" +
|
||||
"FriendTakeHeartRequest\022\014\n\004type\030\001 \001(\005\022\020\n\010" +
|
||||
"friendId\030\002 \001(\005\"[\n\027FriendTakeHeartRespons" +
|
||||
"e\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.proto" +
|
||||
"cols.Drop\022\020\n\010friendId\030\002 \003(\005\"#\n\023FriendSea" +
|
||||
"rchRequest\022\014\n\004name\030\001 \001(\t\"Y\n\024FriendSearch" +
|
||||
"Response\022\014\n\004type\030\001 \001(\005\0223\n\007Friends\030\002 \001(\0132",
|
||||
"\".com.ljsd.jieling.protocols.Friend\";\n\031S" +
|
||||
"endFriendStateIndication\022\014\n\004type\030\001 \001(\005\022\020" +
|
||||
"\n\010friendId\030\002 \001(\005\"/\n\032RefreshFriendStateRe" +
|
||||
"sponse\022\021\n\tfriendIds\030\001 \003(\005\"7\n\025FriendBlack" +
|
||||
"OptRequest\022\014\n\004type\030\001 \001(\005\022\020\n\010blackUid\030\002 \001" +
|
||||
"(\005\"\326\004\n\032FivePlayerUpdateIndication\022\027\n\017had" +
|
||||
"TakeDailyBox\030\001 \001(\005\0228\n\tprivilege\030\002 \003(\0132%." +
|
||||
"com.ljsd.jieling.protocols.Privilege\022>\n\014" +
|
||||
"activityInfo\030\003 \003(\0132(.com.ljsd.jieling.pr" +
|
||||
"otocols.ActivityInfo\022D\n\017userMissionInfo\030",
|
||||
"\004 \003(\0132+.com.ljsd.jieling.protocols.UserM" +
|
||||
"issionInfo\022J\n\022fiveResetTowerInfo\030\005 \001(\0132." +
|
||||
".com.ljsd.jieling.protocols.fiveResetTow" +
|
||||
"erInfo\022:\n\nSignInInfo\030\006 \001(\0132&.com.ljsd.ji" +
|
||||
"eling.protocols.SignInInfo\022D\n\017playerBind" +
|
||||
"Phone\030\007 \001(\0132+.com.ljsd.jieling.protocols" +
|
||||
".PlayerBindPhone\022D\n\010posInfos\030\010 \003(\01322.com" +
|
||||
".ljsd.jieling.protocols.LuckWheelRewardP" +
|
||||
"osInfo\022K\n\017posInfosAdvance\030\t \003(\01322.com.lj" +
|
||||
"sd.jieling.protocols.LuckWheelRewardPosI",
|
||||
"nfo\"Z\n\022GetMissionResponse\022D\n\017userMission" +
|
||||
"Info\030\001 \003(\0132+.com.ljsd.jieling.protocols." +
|
||||
"UserMissionInfo\"\'\n\025RefreshItemNumRequest" +
|
||||
"\022\016\n\006itemId\030\001 \003(\005\"P\n\026RefreshItemNumRespon" +
|
||||
"se\0226\n\010itemInfo\030\001 \003(\0132$.com.ljsd.jieling." +
|
||||
"protocols.ItemInfo\"S\n\023UpdateBagIndicatio" +
|
||||
"n\022\014\n\004type\030\001 \001(\005\022.\n\004item\030\002 \003(\0132 .com.ljsd" +
|
||||
".jieling.protocols.Item\"=\n\027ModifyDecorat" +
|
||||
"ionRequest\022\024\n\014decorationId\030\001 \001(\005\022\014\n\004type" +
|
||||
"\030\002 \001(\005\"\336\002\n\rblessResponse\022:\n\tfixReward\030\001 ",
|
||||
"\003(\0132\'.com.ljsd.jieling.protocols.blessRe" +
|
||||
"ward\022=\n\014legendReward\030\002 \003(\0132\'.com.ljsd.ji" +
|
||||
"eling.protocols.blessReward\022>\n\rsupremeRe" +
|
||||
"ward\030\003 \003(\0132\'.com.ljsd.jieling.protocols." +
|
||||
"blessReward\022<\n\013countReward\030\004 \003(\0132\'.com.l" +
|
||||
"jsd.jieling.protocols.blessReward\022;\n\nrew" +
|
||||
"ardView\030\005 \003(\0132\'.com.ljsd.jieling.protoco" +
|
||||
"ls.blessReward\022\027\n\017lastRefreshTime\030\006 \001(\005\"" +
|
||||
"%\n\020blessSaveRequest\022\021\n\trewardIds\030\001 \003(\005\"(" +
|
||||
"\n\022blessChooseRequest\022\022\n\nlocationId\030\001 \001(\005",
|
||||
"\"_\n\023blessChooseResponse\0220\n\006reward\030\001 \001(\0132" +
|
||||
" .com.ljsd.jieling.protocols.Drop\022\026\n\016cho" +
|
||||
"oseRewardId\030\002 \001(\005\"I\n\014blessRefresh\0229\n\006rew" +
|
||||
"ard\030\001 \001(\0132).com.ljsd.jieling.protocols.b" +
|
||||
"lessResponse\"Q\n\025storeUpdateIndication\0228\n" +
|
||||
"\tstoreInfo\030\001 \003(\0132%.com.ljsd.jieling.prot" +
|
||||
"ocols.StoreInfo\"%\n\tLockEquip\022\n\n\002id\030\001 \003(\t" +
|
||||
"\022\014\n\004type\030\002 \001(\005\"r\n\027ActivityUpateIndicatio" +
|
||||
"n\022>\n\014activityInfo\030\001 \003(\0132(.com.ljsd.jieli" +
|
||||
"ng.protocols.ActivityInfo\022\027\n\017closeActivi",
|
||||
"tyId\030\002 \003(\005\";\n\027GetForceRankInfoRequest\022\014\n" +
|
||||
"\004page\030\001 \001(\005\022\022\n\nactiviteId\030\002 \001(\005\"{\n\030GetFo" +
|
||||
"rceRankInfoResponse\022>\n\014useForceInfo\030\001 \003(" +
|
||||
"\0132(.com.ljsd.jieling.protocols.UseForceI" +
|
||||
"nfo\022\017\n\007myForce\030\002 \001(\005\022\016\n\006myRank\030\003 \001(\005\"a\n\037" +
|
||||
"ActivityUpateProgressIndication\022>\n\014activ" +
|
||||
"ityInfo\030\001 \002(\0132(.com.ljsd.jieling.protoco" +
|
||||
"ls.ActivityInfo\"*\n\024GetExpertInfoRequest\022" +
|
||||
"\022\n\nactiviteId\030\001 \001(\005\"p\n\025GetExpertInfoResp" +
|
||||
"onse\0226\n\006expert\030\001 \003(\0132&.com.ljsd.jieling.",
|
||||
"protocols.ExpertInfo\022\017\n\007myScore\030\002 \001(\005\022\016\n" +
|
||||
"\006myRank\030\003 \001(\005\"!\n\rSignInRequest\022\020\n\010dayInd" +
|
||||
"ex\030\001 \001(\005\"@\n\016SignInResponse\022.\n\004drop\030\001 \001(\013" +
|
||||
"2 .com.ljsd.jieling.protocols.Drop\"?\n\033Ge" +
|
||||
"tPlayerOneTeamInfoRequest\022\020\n\010playerId\030\001 " +
|
||||
"\001(\005\022\016\n\006teamId\030\002 \001(\005\"Y\n\034GetPlayerOneTeamI" +
|
||||
"nfoResponse\0229\n\010teamInfo\030\001 \001(\0132\'.com.ljsd" +
|
||||
".jieling.protocols.TeamOneInfo\"O\n\035TakeSe" +
|
||||
"nvenScoreRewardResponse\022.\n\004drop\030\001 \001(\0132 ." +
|
||||
"com.ljsd.jieling.protocols.Drop\"\"\n\022Updat",
|
||||
"eStateRequest\022\014\n\004type\030\001 \001(\005\"5\n\027UpdateUse" +
|
||||
"rExpIndicaiton\022\r\n\005level\030\001 \001(\005\022\013\n\003exp\030\002 \001" +
|
||||
"(\005\"6\n\037UpdateSecretBoxSeasonIndication\022\023\n" +
|
||||
"\013newSeasonId\030\001 \001(\005\"\033\n\031GetMonsterRankInfo" +
|
||||
"Request\"{\n\032GetMonsterRankInfoResponse\022<\n" +
|
||||
"\007monster\030\001 \003(\0132+.com.ljsd.jieling.protoc" +
|
||||
"ols.MonsterRankInfo\022\017\n\007myScore\030\002 \001(\005\022\016\n\006" +
|
||||
"myRank\030\003 \001(\005\"-\n\031PlayerBackCInfoIndicatio" +
|
||||
"n\022\020\n\010nickName\030\001 \001(\t\"*\n\026UpdatePhoneinfoRe" +
|
||||
"quest\022\020\n\010phoneNum\030\001 \001(\t\"(\n\027UpdatePhonein",
|
||||
"foResponse\022\r\n\005state\030\001 \001(\005\"\027\n\025GetPhoneRew" +
|
||||
"ardRequest\"H\n\026GetPhoneRewardResponse\022.\n\004" +
|
||||
"drop\030\001 \001(\0132 .com.ljsd.jieling.protocols." +
|
||||
"Drop\"#\n\022QuestionIndication\022\r\n\005state\030\001 \001(" +
|
||||
"\005\"\024\n\022GetQuestionRequest\"\226\001\n\023GetQuestionR" +
|
||||
"esponse\022\n\n\002id\030\001 \001(\t\022\020\n\010questDes\030\002 \001(\t\022\r\n" +
|
||||
"\005start\030\003 \001(\t\022\017\n\007endtime\030\004 \001(\t\022A\n\014questOp" +
|
||||
"tions\030\005 \003(\0132+.com.ljsd.jieling.protocols" +
|
||||
".QuestionOptions\"(\n\025upDataQuestionReques" +
|
||||
"t\022\017\n\007options\030\001 \003(\t\"(\n\026upDataQuestionResp",
|
||||
"onse\022\016\n\006result\030\001 \001(\005\"\013\n\tBloodRank\"!\n\022Exc" +
|
||||
"hangeCdkRequest\022\013\n\003key\030\001 \001(\t\"0\n\035NotifyPa" +
|
||||
"ySuccessfulIndicaiton\022\017\n\007goodsId\030\001 \001(\005\"V" +
|
||||
"\n\023DirectBuyIndication\022\017\n\007goodsId\030\001 \001(\005\022." +
|
||||
"\n\004drop\030\002 \001(\0132 .com.ljsd.jieling.protocol" +
|
||||
"s.Drop\"=\n\027RefreshLuckWheelRequest\022\022\n\nact" +
|
||||
"ivityId\030\001 \001(\005\022\016\n\006isFree\030\002 \001(\010\"`\n\030Refresh" +
|
||||
"LuckWheelResponse\022D\n\010posInfos\030\001 \003(\01322.co" +
|
||||
"m.ljsd.jieling.protocols.LuckWheelReward" +
|
||||
"PosInfo\"E\n\035GetLuckWheelRandRewardRequest",
|
||||
"\022\022\n\nactivityId\030\001 \001(\005\022\020\n\010repeated\030\002 \001(\010\"\252" +
|
||||
"\001\n\036GetLuckWheelRandRewardResponse\022\022\n\nact" +
|
||||
"ivityId\030\001 \001(\005\022D\n\010posInfos\030\002 \003(\01322.com.lj" +
|
||||
"sd.jieling.protocols.LuckWheelRewardPosI" +
|
||||
"nfo\022.\n\004drop\030\003 \001(\0132 .com.ljsd.jieling.pro" +
|
||||
"tocols.Drop\"\250\001\n\023LuckWheelIndication\022D\n\010p" +
|
||||
"osInfos\030\001 \003(\01322.com.ljsd.jieling.protoco" +
|
||||
"ls.LuckWheelRewardPosInfo\022K\n\017posInfosAdv" +
|
||||
"ance\030\002 \003(\01322.com.ljsd.jieling.protocols." +
|
||||
"LuckWheelRewardPosInfo\"\246\001\n\030GetMainLevelI",
|
||||
"nfoResponse\022\017\n\007fightId\030\001 \001(\005\022\r\n\005state\030\002 " +
|
||||
"\001(\005\022\020\n\010duration\030\003 \001(\005\022H\n\021adventureBossIn" +
|
||||
"fo\030\004 \003(\0132-.com.ljsd.jieling.protocols.Ad" +
|
||||
"ventureBossInfo\022\016\n\006reward\030\005 \001(\t\"-\n\034Quick" +
|
||||
"BuyTreasureLevelRequest\022\r\n\005level\030\001 \001(\005\"S" +
|
||||
"\n\031TreasureRefreshIndication\0226\n\005tasks\030\001 \003" +
|
||||
"(\0132\'.com.ljsd.jieling.protocols.RefreshT" +
|
||||
"ask\"*\n\031TreasureLevelUpIndication\022\r\n\005leve" +
|
||||
"l\030\001 \001(\005\" \n\016MailDelRequest\022\016\n\006mailId\030\001 \003(" +
|
||||
"\t\"8\n\023ViewHeroInfoRequest\022\021\n\ttargetUid\030\001 ",
|
||||
"\001(\005\022\016\n\006heroId\030\002 \001(\t\"\313\001\n\024ViewHeroInfoResp" +
|
||||
"onse\022.\n\004hero\030\001 \001(\0132 .com.ljsd.jieling.pr" +
|
||||
"otocols.Hero\0220\n\005equip\030\002 \003(\0132!.com.ljsd.j" +
|
||||
"ieling.protocols.Equip\022B\n\016SpecialEffects" +
|
||||
"\030\003 \003(\0132*.com.ljsd.jieling.protocols.Spec" +
|
||||
"ialEffects\022\r\n\005force\030\004 \001(\005\"\033\n\013RankRequest" +
|
||||
"\022\014\n\004type\030\001 \001(\005\"}\n\014RankResponse\0223\n\005ranks\030" +
|
||||
"\001 \003(\0132$.com.ljsd.jieling.protocols.UserR" +
|
||||
"ank\0228\n\nmyRankInfo\030\002 \001(\0132$.com.ljsd.jieli" +
|
||||
"ng.protocols.RankInfo\")\n\023NextActivityReq",
|
||||
"uest\022\022\n\nactivityId\030\001 \001(\005\"0\n\024NextActivity" +
|
||||
"Response\022\n\n\002id\030\001 \001(\005\022\014\n\004time\030\002 \001(\005\"+\n\031Re" +
|
||||
"freshRechargeIndication\022\016\n\006amount\030\001 \001(\005\"" +
|
||||
"\024\n\022VipTakeDilyRequest\"E\n\023VipTakeDilyResp" +
|
||||
"onse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.jieling.pr" +
|
||||
"otocols.Drop\"X\n\032MissingRoomRefreshRespon" +
|
||||
"se\022:\n\005infos\030\001 \003(\0132+.com.ljsd.jieling.pro" +
|
||||
"tocols.UserMissionInfo\"@\n\032MissingRoomSen" +
|
||||
"dHeroRequest\022\017\n\007heroIds\030\001 \003(\t\022\021\n\tmission" +
|
||||
"Id\030\002 \001(\005\"1\n\034MissingRoomAccelerateRequest",
|
||||
"\022\021\n\tmissionId\030\001 \001(\005B\002H\001"
|
||||
"cols.Drop\"$\n\023RechargeInfoRequest\022\r\n\005mone" +
|
||||
"y\030\001 \001(\005\"F\n\024RechargeInfoResponse\022.\n\004drop\030" +
|
||||
"\001 \001(\0132 .com.ljsd.jieling.protocols.Drop\"" +
|
||||
"$\n\024GetFriendInfoRequest\022\014\n\004type\030\001 \001(\005\"L\n",
|
||||
"\025GetFriendInfoResponse\0223\n\007Friends\030\001 \003(\0132" +
|
||||
"\".com.ljsd.jieling.protocols.Friend\"*\n\027T" +
|
||||
"estBuyGiftGoodsRequest\022\017\n\007goodsId\030\001 \001(\005\"" +
|
||||
"H\n\026BuyGoodsDropIndication\022.\n\004drop\030\001 \001(\0132" +
|
||||
" .com.ljsd.jieling.protocols.Drop\"Z\n\026All" +
|
||||
"GiftGoodsIndication\022@\n\rGiftGoodsInfo\030\001 \003" +
|
||||
"(\0132).com.ljsd.jieling.protocols.GiftGood" +
|
||||
"sInfo\")\n\023InviteFriendRequest\022\022\n\ninviteUi" +
|
||||
"ds\030\001 \003(\005\">\n\034FriendInviteOperationRequest" +
|
||||
"\022\014\n\004type\030\001 \001(\005\022\020\n\010friendId\030\002 \001(\005\"]\n\030send",
|
||||
"FriendInfoIndication\022\014\n\004type\030\001 \001(\005\0223\n\007Fr" +
|
||||
"iends\030\002 \001(\0132\".com.ljsd.jieling.protocols" +
|
||||
".Friend\":\n\030FriendGivePresentRequest\022\014\n\004t" +
|
||||
"ype\030\001 \001(\005\022\020\n\010friendId\030\002 \001(\005\"$\n\020DelFriend" +
|
||||
"Request\022\020\n\010friendId\030\001 \001(\005\"8\n\026FriendTakeH" +
|
||||
"eartRequest\022\014\n\004type\030\001 \001(\005\022\020\n\010friendId\030\002 " +
|
||||
"\001(\005\"[\n\027FriendTakeHeartResponse\022.\n\004drop\030\001" +
|
||||
" \001(\0132 .com.ljsd.jieling.protocols.Drop\022\020" +
|
||||
"\n\010friendId\030\002 \003(\005\"#\n\023FriendSearchRequest\022" +
|
||||
"\014\n\004name\030\001 \001(\t\"Y\n\024FriendSearchResponse\022\014\n",
|
||||
"\004type\030\001 \001(\005\0223\n\007Friends\030\002 \001(\0132\".com.ljsd." +
|
||||
"jieling.protocols.Friend\";\n\031SendFriendSt" +
|
||||
"ateIndication\022\014\n\004type\030\001 \001(\005\022\020\n\010friendId\030" +
|
||||
"\002 \001(\005\"/\n\032RefreshFriendStateResponse\022\021\n\tf" +
|
||||
"riendIds\030\001 \003(\005\"7\n\025FriendBlackOptRequest\022" +
|
||||
"\014\n\004type\030\001 \001(\005\022\020\n\010blackUid\030\002 \001(\005\"\326\004\n\032Five" +
|
||||
"PlayerUpdateIndication\022\027\n\017hadTakeDailyBo" +
|
||||
"x\030\001 \001(\005\0228\n\tprivilege\030\002 \003(\0132%.com.ljsd.ji" +
|
||||
"eling.protocols.Privilege\022>\n\014activityInf" +
|
||||
"o\030\003 \003(\0132(.com.ljsd.jieling.protocols.Act",
|
||||
"ivityInfo\022D\n\017userMissionInfo\030\004 \003(\0132+.com" +
|
||||
".ljsd.jieling.protocols.UserMissionInfo\022" +
|
||||
"J\n\022fiveResetTowerInfo\030\005 \001(\0132..com.ljsd.j" +
|
||||
"ieling.protocols.fiveResetTowerInfo\022:\n\nS" +
|
||||
"ignInInfo\030\006 \001(\0132&.com.ljsd.jieling.proto" +
|
||||
"cols.SignInInfo\022D\n\017playerBindPhone\030\007 \001(\013" +
|
||||
"2+.com.ljsd.jieling.protocols.PlayerBind" +
|
||||
"Phone\022D\n\010posInfos\030\010 \003(\01322.com.ljsd.jieli" +
|
||||
"ng.protocols.LuckWheelRewardPosInfo\022K\n\017p" +
|
||||
"osInfosAdvance\030\t \003(\01322.com.ljsd.jieling.",
|
||||
"protocols.LuckWheelRewardPosInfo\"Z\n\022GetM" +
|
||||
"issionResponse\022D\n\017userMissionInfo\030\001 \003(\0132" +
|
||||
"+.com.ljsd.jieling.protocols.UserMission" +
|
||||
"Info\"\'\n\025RefreshItemNumRequest\022\016\n\006itemId\030" +
|
||||
"\001 \003(\005\"P\n\026RefreshItemNumResponse\0226\n\010itemI" +
|
||||
"nfo\030\001 \003(\0132$.com.ljsd.jieling.protocols.I" +
|
||||
"temInfo\"S\n\023UpdateBagIndication\022\014\n\004type\030\001" +
|
||||
" \001(\005\022.\n\004item\030\002 \003(\0132 .com.ljsd.jieling.pr" +
|
||||
"otocols.Item\"=\n\027ModifyDecorationRequest\022" +
|
||||
"\024\n\014decorationId\030\001 \001(\005\022\014\n\004type\030\002 \001(\005\"\336\002\n\r",
|
||||
"blessResponse\022:\n\tfixReward\030\001 \003(\0132\'.com.l" +
|
||||
"jsd.jieling.protocols.blessReward\022=\n\014leg" +
|
||||
"endReward\030\002 \003(\0132\'.com.ljsd.jieling.proto" +
|
||||
"cols.blessReward\022>\n\rsupremeReward\030\003 \003(\0132" +
|
||||
"\'.com.ljsd.jieling.protocols.blessReward" +
|
||||
"\022<\n\013countReward\030\004 \003(\0132\'.com.ljsd.jieling" +
|
||||
".protocols.blessReward\022;\n\nrewardView\030\005 \003" +
|
||||
"(\0132\'.com.ljsd.jieling.protocols.blessRew" +
|
||||
"ard\022\027\n\017lastRefreshTime\030\006 \001(\005\"%\n\020blessSav" +
|
||||
"eRequest\022\021\n\trewardIds\030\001 \003(\005\"(\n\022blessChoo",
|
||||
"seRequest\022\022\n\nlocationId\030\001 \001(\005\"_\n\023blessCh" +
|
||||
"ooseResponse\0220\n\006reward\030\001 \001(\0132 .com.ljsd." +
|
||||
"jieling.protocols.Drop\022\026\n\016chooseRewardId" +
|
||||
"\030\002 \001(\005\"I\n\014blessRefresh\0229\n\006reward\030\001 \001(\0132)" +
|
||||
".com.ljsd.jieling.protocols.blessRespons" +
|
||||
"e\"Q\n\025storeUpdateIndication\0228\n\tstoreInfo\030" +
|
||||
"\001 \003(\0132%.com.ljsd.jieling.protocols.Store" +
|
||||
"Info\"%\n\tLockEquip\022\n\n\002id\030\001 \003(\t\022\014\n\004type\030\002 " +
|
||||
"\001(\005\"r\n\027ActivityUpateIndication\022>\n\014activi" +
|
||||
"tyInfo\030\001 \003(\0132(.com.ljsd.jieling.protocol",
|
||||
"s.ActivityInfo\022\027\n\017closeActivityId\030\002 \003(\005\"" +
|
||||
";\n\027GetForceRankInfoRequest\022\014\n\004page\030\001 \001(\005" +
|
||||
"\022\022\n\nactiviteId\030\002 \001(\005\"{\n\030GetForceRankInfo" +
|
||||
"Response\022>\n\014useForceInfo\030\001 \003(\0132(.com.ljs" +
|
||||
"d.jieling.protocols.UseForceInfo\022\017\n\007myFo" +
|
||||
"rce\030\002 \001(\005\022\016\n\006myRank\030\003 \001(\005\"a\n\037ActivityUpa" +
|
||||
"teProgressIndication\022>\n\014activityInfo\030\001 \002" +
|
||||
"(\0132(.com.ljsd.jieling.protocols.Activity" +
|
||||
"Info\"*\n\024GetExpertInfoRequest\022\022\n\nactivite" +
|
||||
"Id\030\001 \001(\005\"p\n\025GetExpertInfoResponse\0226\n\006exp",
|
||||
"ert\030\001 \003(\0132&.com.ljsd.jieling.protocols.E" +
|
||||
"xpertInfo\022\017\n\007myScore\030\002 \001(\005\022\016\n\006myRank\030\003 \001" +
|
||||
"(\005\"!\n\rSignInRequest\022\020\n\010dayIndex\030\001 \001(\005\"@\n" +
|
||||
"\016SignInResponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd" +
|
||||
".jieling.protocols.Drop\"?\n\033GetPlayerOneT" +
|
||||
"eamInfoRequest\022\020\n\010playerId\030\001 \001(\005\022\016\n\006team" +
|
||||
"Id\030\002 \001(\005\"Y\n\034GetPlayerOneTeamInfoResponse" +
|
||||
"\0229\n\010teamInfo\030\001 \001(\0132\'.com.ljsd.jieling.pr" +
|
||||
"otocols.TeamOneInfo\"O\n\035TakeSenvenScoreRe" +
|
||||
"wardResponse\022.\n\004drop\030\001 \001(\0132 .com.ljsd.ji",
|
||||
"eling.protocols.Drop\"\"\n\022UpdateStateReque" +
|
||||
"st\022\014\n\004type\030\001 \001(\005\"5\n\027UpdateUserExpIndicai" +
|
||||
"ton\022\r\n\005level\030\001 \001(\005\022\013\n\003exp\030\002 \001(\005\"6\n\037Updat" +
|
||||
"eSecretBoxSeasonIndication\022\023\n\013newSeasonI" +
|
||||
"d\030\001 \001(\005\"\033\n\031GetMonsterRankInfoRequest\"{\n\032" +
|
||||
"GetMonsterRankInfoResponse\022<\n\007monster\030\001 " +
|
||||
"\003(\0132+.com.ljsd.jieling.protocols.Monster" +
|
||||
"RankInfo\022\017\n\007myScore\030\002 \001(\005\022\016\n\006myRank\030\003 \001(" +
|
||||
"\005\"-\n\031PlayerBackCInfoIndication\022\020\n\010nickNa" +
|
||||
"me\030\001 \001(\t\"*\n\026UpdatePhoneinfoRequest\022\020\n\010ph",
|
||||
"oneNum\030\001 \001(\t\"(\n\027UpdatePhoneinfoResponse\022" +
|
||||
"\r\n\005state\030\001 \001(\005\"\027\n\025GetPhoneRewardRequest\"" +
|
||||
"H\n\026GetPhoneRewardResponse\022.\n\004drop\030\001 \001(\0132" +
|
||||
" .com.ljsd.jieling.protocols.Drop\"#\n\022Que" +
|
||||
"stionIndication\022\r\n\005state\030\001 \001(\005\"\024\n\022GetQue" +
|
||||
"stionRequest\"\226\001\n\023GetQuestionResponse\022\n\n\002" +
|
||||
"id\030\001 \001(\t\022\020\n\010questDes\030\002 \001(\t\022\r\n\005start\030\003 \001(" +
|
||||
"\t\022\017\n\007endtime\030\004 \001(\t\022A\n\014questOptions\030\005 \003(\013" +
|
||||
"2+.com.ljsd.jieling.protocols.QuestionOp" +
|
||||
"tions\"(\n\025upDataQuestionRequest\022\017\n\007option",
|
||||
"s\030\001 \003(\t\"(\n\026upDataQuestionResponse\022\016\n\006res" +
|
||||
"ult\030\001 \001(\005\"\013\n\tBloodRank\"!\n\022ExchangeCdkReq" +
|
||||
"uest\022\013\n\003key\030\001 \001(\t\"0\n\035NotifyPaySuccessful" +
|
||||
"Indicaiton\022\017\n\007goodsId\030\001 \001(\005\"V\n\023DirectBuy" +
|
||||
"Indication\022\017\n\007goodsId\030\001 \001(\005\022.\n\004drop\030\002 \001(" +
|
||||
"\0132 .com.ljsd.jieling.protocols.Drop\"=\n\027R" +
|
||||
"efreshLuckWheelRequest\022\022\n\nactivityId\030\001 \001" +
|
||||
"(\005\022\016\n\006isFree\030\002 \001(\010\"`\n\030RefreshLuckWheelRe" +
|
||||
"sponse\022D\n\010posInfos\030\001 \003(\01322.com.ljsd.jiel" +
|
||||
"ing.protocols.LuckWheelRewardPosInfo\"E\n\035",
|
||||
"GetLuckWheelRandRewardRequest\022\022\n\nactivit" +
|
||||
"yId\030\001 \001(\005\022\020\n\010repeated\030\002 \001(\010\"\252\001\n\036GetLuckW" +
|
||||
"heelRandRewardResponse\022\022\n\nactivityId\030\001 \001" +
|
||||
"(\005\022D\n\010posInfos\030\002 \003(\01322.com.ljsd.jieling." +
|
||||
"protocols.LuckWheelRewardPosInfo\022.\n\004drop" +
|
||||
"\030\003 \001(\0132 .com.ljsd.jieling.protocols.Drop" +
|
||||
"\"\250\001\n\023LuckWheelIndication\022D\n\010posInfos\030\001 \003" +
|
||||
"(\01322.com.ljsd.jieling.protocols.LuckWhee" +
|
||||
"lRewardPosInfo\022K\n\017posInfosAdvance\030\002 \003(\0132" +
|
||||
"2.com.ljsd.jieling.protocols.LuckWheelRe",
|
||||
"wardPosInfo\"\246\001\n\030GetMainLevelInfoResponse" +
|
||||
"\022\017\n\007fightId\030\001 \001(\005\022\r\n\005state\030\002 \001(\005\022\020\n\010dura" +
|
||||
"tion\030\003 \001(\005\022H\n\021adventureBossInfo\030\004 \003(\0132-." +
|
||||
"com.ljsd.jieling.protocols.AdventureBoss" +
|
||||
"Info\022\016\n\006reward\030\005 \001(\t\"-\n\034QuickBuyTreasure" +
|
||||
"LevelRequest\022\r\n\005level\030\001 \001(\005\"S\n\031TreasureR" +
|
||||
"efreshIndication\0226\n\005tasks\030\001 \003(\0132\'.com.lj" +
|
||||
"sd.jieling.protocols.RefreshTask\"*\n\031Trea" +
|
||||
"sureLevelUpIndication\022\r\n\005level\030\001 \001(\005\" \n\016" +
|
||||
"MailDelRequest\022\016\n\006mailId\030\001 \003(\t\"8\n\023ViewHe",
|
||||
"roInfoRequest\022\021\n\ttargetUid\030\001 \001(\005\022\016\n\006hero" +
|
||||
"Id\030\002 \001(\t\"\313\001\n\024ViewHeroInfoResponse\022.\n\004her" +
|
||||
"o\030\001 \001(\0132 .com.ljsd.jieling.protocols.Her" +
|
||||
"o\0220\n\005equip\030\002 \003(\0132!.com.ljsd.jieling.prot" +
|
||||
"ocols.Equip\022B\n\016SpecialEffects\030\003 \003(\0132*.co" +
|
||||
"m.ljsd.jieling.protocols.SpecialEffects\022" +
|
||||
"\r\n\005force\030\004 \001(\005\"\033\n\013RankRequest\022\014\n\004type\030\001 " +
|
||||
"\001(\005\"}\n\014RankResponse\0223\n\005ranks\030\001 \003(\0132$.com" +
|
||||
".ljsd.jieling.protocols.UserRank\0228\n\nmyRa" +
|
||||
"nkInfo\030\002 \001(\0132$.com.ljsd.jieling.protocol",
|
||||
"s.RankInfo\")\n\023NextActivityRequest\022\022\n\nact" +
|
||||
"ivityId\030\001 \001(\005\"0\n\024NextActivityResponse\022\n\n" +
|
||||
"\002id\030\001 \001(\005\022\014\n\004time\030\002 \001(\005\"+\n\031RefreshRechar" +
|
||||
"geIndication\022\016\n\006amount\030\001 \001(\005\"\024\n\022VipTakeD" +
|
||||
"ilyRequest\"E\n\023VipTakeDilyResponse\022.\n\004dro" +
|
||||
"p\030\001 \001(\0132 .com.ljsd.jieling.protocols.Dro" +
|
||||
"p\"X\n\032MissingRoomRefreshResponse\022:\n\005infos" +
|
||||
"\030\001 \003(\0132+.com.ljsd.jieling.protocols.User" +
|
||||
"MissionInfo\"@\n\032MissingRoomSendHeroReques" +
|
||||
"t\022\017\n\007heroIds\030\001 \003(\t\022\021\n\tmissionId\030\002 \001(\005\"1\n",
|
||||
"\034MissingRoomAccelerateRequest\022\021\n\tmission" +
|
||||
"Id\030\001 \001(\005B\002H\001"
|
||||
};
|
||||
com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner assigner =
|
||||
new com.google.protobuf.Descriptors.FileDescriptor.InternalDescriptorAssigner() {
|
||||
|
@ -93230,7 +93344,7 @@ public final class PlayerInfoProto {
|
|||
internal_static_com_ljsd_jieling_protocols_GetPlayerInfoResponse_fieldAccessorTable = new
|
||||
com.google.protobuf.GeneratedMessage.FieldAccessorTable(
|
||||
internal_static_com_ljsd_jieling_protocols_GetPlayerInfoResponse_descriptor,
|
||||
new java.lang.String[] { "Player", "NewPlayerGuidePoint", "Privilege", "GiftGoodsInfo", "BuyGoodsId", "SuddenlyBossInfo", "VipLeveTake", "UserCreateTime", "RedType", "RandCount", "HeroHandBook", "EquipHandBook", "TowerReceivedReward", "GoodsTypeDuration", "TreasureLevel", "HadBuyTreasure", "SignInInfo", "FirstTenth", "MonsterAttackTime", "IsDayFirst", "EndInfo", "PlayerBindPhone", "QuestionState", "SoulEquipPool", "PlayedMapTypes", "Amount", "VipDaily", });
|
||||
new java.lang.String[] { "Player", "NewPlayerGuidePoint", "Privilege", "GiftGoodsInfo", "BuyGoodsId", "SuddenlyBossInfo", "VipLeveTake", "UserCreateTime", "RedType", "RandCount", "HeroHandBook", "EquipHandBook", "TowerReceivedReward", "GoodsTypeDuration", "TreasureLevel", "HadBuyTreasure", "SignInInfo", "FirstTenth", "MonsterAttackTime", "IsDayFirst", "EndInfo", "PlayerBindPhone", "QuestionState", "SoulEquipPool", "PlayedMapTypes", "Amount", "VipDaily", "MissingRefreshCount", });
|
||||
internal_static_com_ljsd_jieling_protocols_GetItemInfoRequest_descriptor =
|
||||
getDescriptor().getMessageTypes().get(5);
|
||||
internal_static_com_ljsd_jieling_protocols_GetItemInfoRequest_fieldAccessorTable = new
|
||||
|
|
|
@ -402,7 +402,7 @@ public class BuyGoodsLogic {
|
|||
}
|
||||
if(endTime!=0 && now > endTime){
|
||||
boolean isNew = rechargeInfo.addNewSendId(goodsId);
|
||||
if(!isNew){
|
||||
if(isNew){
|
||||
needChange = true;
|
||||
}
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue