Blame view

pb/game.pb.go 56.2 KB
7f269318   zhangqijia   add pb.go; 添加关闭连接...
1
2
  // Code generated by protoc-gen-go. DO NOT EDIT.
  // versions:
f74e34e3   zhangqijia   fix: 批量删除装备
3
4
  // 	protoc-gen-go v1.28.0
  // 	protoc        v3.8.0
7f269318   zhangqijia   add pb.go; 添加关闭连接...
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  // source: game.proto
  
  package pb
  
  import (
  	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  	reflect "reflect"
  	sync "sync"
  )
  
  const (
  	// Verify that this generated code is sufficiently up-to-date.
  	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  	// Verify that runtime/protoimpl is sufficiently up-to-date.
  	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  )
  
7f269318   zhangqijia   add pb.go; 添加关闭连接...
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  type HeartReq struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  }
  
  func (x *HeartReq) Reset() {
  	*x = HeartReq{}
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[0]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *HeartReq) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*HeartReq) ProtoMessage() {}
  
  func (x *HeartReq) ProtoReflect() protoreflect.Message {
  	mi := &file_game_proto_msgTypes[0]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use HeartReq.ProtoReflect.Descriptor instead.
  func (*HeartReq) Descriptor() ([]byte, []int) {
  	return file_game_proto_rawDescGZIP(), []int{0}
  }
  
  func (x *HeartReq) GetCode() int64 {
  	if x != nil {
  		return x.Code
  	}
  	return 0
  }
  
8d983031   zhangqijia   loginReq uid -> t...
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
  type HeartRsp struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	Code int64 `protobuf:"varint,1,opt,name=code,proto3" json:"code,omitempty"`
  }
  
  func (x *HeartRsp) Reset() {
  	*x = HeartRsp{}
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[1]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *HeartRsp) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*HeartRsp) ProtoMessage() {}
  
  func (x *HeartRsp) ProtoReflect() protoreflect.Message {
  	mi := &file_game_proto_msgTypes[1]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use HeartRsp.ProtoReflect.Descriptor instead.
  func (*HeartRsp) Descriptor() ([]byte, []int) {
  	return file_game_proto_rawDescGZIP(), []int{1}
  }
  
  func (x *HeartRsp) GetCode() int64 {
  	if x != nil {
  		return x.Code
  	}
  	return 0
  }
  
7f269318   zhangqijia   add pb.go; 添加关闭连接...
117
118
119
120
121
  type LoginReq struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
436e0af4   zhangqijia   reactor: dir; Ac...
122
  	Token  string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
7f269318   zhangqijia   add pb.go; 添加关闭连接...
123
124
125
126
127
128
  	Device string `protobuf:"bytes,2,opt,name=device,proto3" json:"device,omitempty"`
  }
  
  func (x *LoginReq) Reset() {
  	*x = LoginReq{}
  	if protoimpl.UnsafeEnabled {
8d983031   zhangqijia   loginReq uid -> t...
129
  		mi := &file_game_proto_msgTypes[2]
7f269318   zhangqijia   add pb.go; 添加关闭连接...
130
131
132
133
134
135
136
137
138
139
140
141
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *LoginReq) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*LoginReq) ProtoMessage() {}
  
  func (x *LoginReq) ProtoReflect() protoreflect.Message {
8d983031   zhangqijia   loginReq uid -> t...
142
  	mi := &file_game_proto_msgTypes[2]
7f269318   zhangqijia   add pb.go; 添加关闭连接...
143
144
145
146
147
148
149
150
151
152
153
154
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use LoginReq.ProtoReflect.Descriptor instead.
  func (*LoginReq) Descriptor() ([]byte, []int) {
8d983031   zhangqijia   loginReq uid -> t...
155
  	return file_game_proto_rawDescGZIP(), []int{2}
7f269318   zhangqijia   add pb.go; 添加关闭连接...
156
157
  }
  
436e0af4   zhangqijia   reactor: dir; Ac...
158
  func (x *LoginReq) GetToken() string {
7f269318   zhangqijia   add pb.go; 添加关闭连接...
159
  	if x != nil {
436e0af4   zhangqijia   reactor: dir; Ac...
160
  		return x.Token
7f269318   zhangqijia   add pb.go; 添加关闭连接...
161
162
163
164
165
166
167
168
169
170
171
  	}
  	return ""
  }
  
  func (x *LoginReq) GetDevice() string {
  	if x != nil {
  		return x.Device
  	}
  	return ""
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
172
  type LoginRsp struct {
7f269318   zhangqijia   add pb.go; 添加关闭连接...
173
174
175
176
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
177
178
179
180
  	Role       *Role        `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
  	Hero       []*Hero      `protobuf:"bytes,3,rep,name=hero,proto3" json:"hero,omitempty"`
  	Team       []*Team      `protobuf:"bytes,4,rep,name=team,proto3" json:"team,omitempty"`
  	Equipments []*Equipment `protobuf:"bytes,5,rep,name=equipments,proto3" json:"equipments,omitempty"`
7f269318   zhangqijia   add pb.go; 添加关闭连接...
181
182
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
183
184
  func (x *LoginRsp) Reset() {
  	*x = LoginRsp{}
7f269318   zhangqijia   add pb.go; 添加关闭连接...
185
  	if protoimpl.UnsafeEnabled {
8d983031   zhangqijia   loginReq uid -> t...
186
  		mi := &file_game_proto_msgTypes[3]
7f269318   zhangqijia   add pb.go; 添加关闭连接...
187
188
189
190
191
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
192
  func (x *LoginRsp) String() string {
7f269318   zhangqijia   add pb.go; 添加关闭连接...
193
194
195
  	return protoimpl.X.MessageStringOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
196
  func (*LoginRsp) ProtoMessage() {}
7f269318   zhangqijia   add pb.go; 添加关闭连接...
197
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
198
  func (x *LoginRsp) ProtoReflect() protoreflect.Message {
8d983031   zhangqijia   loginReq uid -> t...
199
  	mi := &file_game_proto_msgTypes[3]
7f269318   zhangqijia   add pb.go; 添加关闭连接...
200
201
202
203
204
205
206
207
208
209
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
210
211
  // Deprecated: Use LoginRsp.ProtoReflect.Descriptor instead.
  func (*LoginRsp) Descriptor() ([]byte, []int) {
8d983031   zhangqijia   loginReq uid -> t...
212
  	return file_game_proto_rawDescGZIP(), []int{3}
7f269318   zhangqijia   add pb.go; 添加关闭连接...
213
214
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
215
  func (x *LoginRsp) GetRole() *Role {
7f269318   zhangqijia   add pb.go; 添加关闭连接...
216
  	if x != nil {
f8ce769e   zhangqijia   fix: rpc = rar + ...
217
  		return x.Role
7f269318   zhangqijia   add pb.go; 添加关闭连接...
218
  	}
f8ce769e   zhangqijia   fix: rpc = rar + ...
219
  	return nil
7f269318   zhangqijia   add pb.go; 添加关闭连接...
220
221
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
222
  func (x *LoginRsp) GetHero() []*Hero {
7f269318   zhangqijia   add pb.go; 添加关闭连接...
223
  	if x != nil {
f8ce769e   zhangqijia   fix: rpc = rar + ...
224
  		return x.Hero
7f269318   zhangqijia   add pb.go; 添加关闭连接...
225
  	}
f8ce769e   zhangqijia   fix: rpc = rar + ...
226
  	return nil
7f269318   zhangqijia   add pb.go; 添加关闭连接...
227
228
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
  func (x *LoginRsp) GetTeam() []*Team {
  	if x != nil {
  		return x.Team
  	}
  	return nil
  }
  
  func (x *LoginRsp) GetEquipments() []*Equipment {
  	if x != nil {
  		return x.Equipments
  	}
  	return nil
  }
  
  type CreateRar struct {
495e9142   zhangqijia   fix: 增加DisConnect...
244
245
246
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
f8ce769e   zhangqijia   fix: rpc = rar + ...
247
248
249
  
  	Token  string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
  	Device string `protobuf:"bytes,2,opt,name=device,proto3" json:"device,omitempty"`
495e9142   zhangqijia   fix: 增加DisConnect...
250
251
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
252
253
  func (x *CreateRar) Reset() {
  	*x = CreateRar{}
495e9142   zhangqijia   fix: 增加DisConnect...
254
255
256
257
258
259
260
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[4]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
261
  func (x *CreateRar) String() string {
495e9142   zhangqijia   fix: 增加DisConnect...
262
263
264
  	return protoimpl.X.MessageStringOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
265
  func (*CreateRar) ProtoMessage() {}
495e9142   zhangqijia   fix: 增加DisConnect...
266
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
267
  func (x *CreateRar) ProtoReflect() protoreflect.Message {
495e9142   zhangqijia   fix: 增加DisConnect...
268
269
270
271
272
273
274
275
276
277
278
  	mi := &file_game_proto_msgTypes[4]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
279
280
  // Deprecated: Use CreateRar.ProtoReflect.Descriptor instead.
  func (*CreateRar) Descriptor() ([]byte, []int) {
495e9142   zhangqijia   fix: 增加DisConnect...
281
282
283
  	return file_game_proto_rawDescGZIP(), []int{4}
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
  func (x *CreateRar) GetToken() string {
  	if x != nil {
  		return x.Token
  	}
  	return ""
  }
  
  func (x *CreateRar) GetDevice() string {
  	if x != nil {
  		return x.Device
  	}
  	return ""
  }
  
  type DisConnectNty struct {
7f269318   zhangqijia   add pb.go; 添加关闭连接...
299
300
301
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
7f269318   zhangqijia   add pb.go; 添加关闭连接...
302
303
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
304
305
  func (x *DisConnectNty) Reset() {
  	*x = DisConnectNty{}
7f269318   zhangqijia   add pb.go; 添加关闭连接...
306
  	if protoimpl.UnsafeEnabled {
495e9142   zhangqijia   fix: 增加DisConnect...
307
  		mi := &file_game_proto_msgTypes[5]
7f269318   zhangqijia   add pb.go; 添加关闭连接...
308
309
310
311
312
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
313
  func (x *DisConnectNty) String() string {
7f269318   zhangqijia   add pb.go; 添加关闭连接...
314
315
316
  	return protoimpl.X.MessageStringOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
317
  func (*DisConnectNty) ProtoMessage() {}
7f269318   zhangqijia   add pb.go; 添加关闭连接...
318
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
319
  func (x *DisConnectNty) ProtoReflect() protoreflect.Message {
495e9142   zhangqijia   fix: 增加DisConnect...
320
  	mi := &file_game_proto_msgTypes[5]
7f269318   zhangqijia   add pb.go; 添加关闭连接...
321
322
323
324
325
326
327
328
329
330
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
331
332
  // Deprecated: Use DisConnectNty.ProtoReflect.Descriptor instead.
  func (*DisConnectNty) Descriptor() ([]byte, []int) {
495e9142   zhangqijia   fix: 增加DisConnect...
333
  	return file_game_proto_rawDescGZIP(), []int{5}
7f269318   zhangqijia   add pb.go; 添加关闭连接...
334
335
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
336
  type ChangeTeamRar struct {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
337
338
339
340
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
341
  	Team []*Team `protobuf:"bytes,1,rep,name=team,proto3" json:"team,omitempty"`
4e75670c   zhangqijia   fix: 首次通关记录到数据库
342
343
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
344
345
  func (x *ChangeTeamRar) Reset() {
  	*x = ChangeTeamRar{}
4e75670c   zhangqijia   fix: 首次通关记录到数据库
346
347
348
349
350
351
352
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[6]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
353
  func (x *ChangeTeamRar) String() string {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
354
355
356
  	return protoimpl.X.MessageStringOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
357
  func (*ChangeTeamRar) ProtoMessage() {}
4e75670c   zhangqijia   fix: 首次通关记录到数据库
358
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
359
  func (x *ChangeTeamRar) ProtoReflect() protoreflect.Message {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
360
361
362
363
364
365
366
367
368
369
370
  	mi := &file_game_proto_msgTypes[6]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
371
372
  // Deprecated: Use ChangeTeamRar.ProtoReflect.Descriptor instead.
  func (*ChangeTeamRar) Descriptor() ([]byte, []int) {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
373
374
375
  	return file_game_proto_rawDescGZIP(), []int{6}
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
376
  func (x *ChangeTeamRar) GetTeam() []*Team {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
377
  	if x != nil {
f8ce769e   zhangqijia   fix: rpc = rar + ...
378
  		return x.Team
4e75670c   zhangqijia   fix: 首次通关记录到数据库
379
  	}
f8ce769e   zhangqijia   fix: rpc = rar + ...
380
  	return nil
4e75670c   zhangqijia   fix: 首次通关记录到数据库
381
382
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
383
  type EquipInfo struct {
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
384
385
386
387
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
388
389
  	EquipId string `protobuf:"bytes,1,opt,name=equipId,proto3" json:"equipId,omitempty"`
  	Pos     int32  `protobuf:"varint,2,opt,name=pos,proto3" json:"pos,omitempty"`
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
390
391
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
392
393
  func (x *EquipInfo) Reset() {
  	*x = EquipInfo{}
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
394
  	if protoimpl.UnsafeEnabled {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
395
  		mi := &file_game_proto_msgTypes[7]
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
396
397
398
399
400
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
401
  func (x *EquipInfo) String() string {
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
402
403
404
  	return protoimpl.X.MessageStringOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
405
  func (*EquipInfo) ProtoMessage() {}
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
406
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
407
  func (x *EquipInfo) ProtoReflect() protoreflect.Message {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
408
  	mi := &file_game_proto_msgTypes[7]
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
409
410
411
412
413
414
415
416
417
418
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
419
420
  // Deprecated: Use EquipInfo.ProtoReflect.Descriptor instead.
  func (*EquipInfo) Descriptor() ([]byte, []int) {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
421
  	return file_game_proto_rawDescGZIP(), []int{7}
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
422
423
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
424
  func (x *EquipInfo) GetEquipId() string {
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
425
  	if x != nil {
f8ce769e   zhangqijia   fix: rpc = rar + ...
426
  		return x.EquipId
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
427
428
429
430
  	}
  	return ""
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
431
  func (x *EquipInfo) GetPos() int32 {
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
432
  	if x != nil {
f8ce769e   zhangqijia   fix: rpc = rar + ...
433
  		return x.Pos
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
434
  	}
f8ce769e   zhangqijia   fix: rpc = rar + ...
435
  	return 0
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
436
437
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
438
  type HeroEquipReferRar struct {
4255fd8e   zhangqijia   feat: 更新字段
439
440
441
442
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
443
444
445
  	EquipIds []*EquipInfo `protobuf:"bytes,1,rep,name=equipIds,proto3" json:"equipIds,omitempty"`
  	HeroId   string       `protobuf:"bytes,2,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  	Refer    bool         `protobuf:"varint,3,opt,name=refer,proto3" json:"refer,omitempty"` //true 穿戴, false 脱下
4255fd8e   zhangqijia   feat: 更新字段
446
447
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
448
449
  func (x *HeroEquipReferRar) Reset() {
  	*x = HeroEquipReferRar{}
4255fd8e   zhangqijia   feat: 更新字段
450
  	if protoimpl.UnsafeEnabled {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
451
  		mi := &file_game_proto_msgTypes[8]
4255fd8e   zhangqijia   feat: 更新字段
452
453
454
455
456
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
457
  func (x *HeroEquipReferRar) String() string {
4255fd8e   zhangqijia   feat: 更新字段
458
459
460
  	return protoimpl.X.MessageStringOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
461
  func (*HeroEquipReferRar) ProtoMessage() {}
4255fd8e   zhangqijia   feat: 更新字段
462
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
463
  func (x *HeroEquipReferRar) ProtoReflect() protoreflect.Message {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
464
  	mi := &file_game_proto_msgTypes[8]
4255fd8e   zhangqijia   feat: 更新字段
465
466
467
468
469
470
471
472
473
474
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
475
476
  // Deprecated: Use HeroEquipReferRar.ProtoReflect.Descriptor instead.
  func (*HeroEquipReferRar) Descriptor() ([]byte, []int) {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
477
  	return file_game_proto_rawDescGZIP(), []int{8}
4255fd8e   zhangqijia   feat: 更新字段
478
479
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
480
  func (x *HeroEquipReferRar) GetEquipIds() []*EquipInfo {
4255fd8e   zhangqijia   feat: 更新字段
481
  	if x != nil {
f8ce769e   zhangqijia   fix: rpc = rar + ...
482
  		return x.EquipIds
4255fd8e   zhangqijia   feat: 更新字段
483
484
485
486
  	}
  	return nil
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
487
  func (x *HeroEquipReferRar) GetHeroId() string {
27a173f5   zhangqijia   fix: 更新背包系统文档,更改角...
488
  	if x != nil {
f8ce769e   zhangqijia   fix: rpc = rar + ...
489
  		return x.HeroId
27a173f5   zhangqijia   fix: 更新背包系统文档,更改角...
490
  	}
f8ce769e   zhangqijia   fix: rpc = rar + ...
491
  	return ""
27a173f5   zhangqijia   fix: 更新背包系统文档,更改角...
492
493
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
494
  func (x *HeroEquipReferRar) GetRefer() bool {
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
495
  	if x != nil {
f8ce769e   zhangqijia   fix: rpc = rar + ...
496
  		return x.Refer
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
497
  	}
f8ce769e   zhangqijia   fix: rpc = rar + ...
498
  	return false
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
499
500
  }
  
23822e2f   zhangqijia   fix: update proto...
501
  type RoleUpdatePropertyNty struct {
eadc9aff   zhangqijia   feat: 增加上阵下阵协议,增加...
502
503
504
505
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
27a173f5   zhangqijia   fix: 更新背包系统文档,更改角...
506
507
  	Id   []int32 `protobuf:"varint,1,rep,packed,name=id,proto3" json:"id,omitempty"`
  	Role *Role   `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
eadc9aff   zhangqijia   feat: 增加上阵下阵协议,增加...
508
509
  }
  
23822e2f   zhangqijia   fix: update proto...
510
511
  func (x *RoleUpdatePropertyNty) Reset() {
  	*x = RoleUpdatePropertyNty{}
eadc9aff   zhangqijia   feat: 增加上阵下阵协议,增加...
512
  	if protoimpl.UnsafeEnabled {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
513
  		mi := &file_game_proto_msgTypes[9]
eadc9aff   zhangqijia   feat: 增加上阵下阵协议,增加...
514
515
516
517
518
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
23822e2f   zhangqijia   fix: update proto...
519
  func (x *RoleUpdatePropertyNty) String() string {
eadc9aff   zhangqijia   feat: 增加上阵下阵协议,增加...
520
521
522
  	return protoimpl.X.MessageStringOf(x)
  }
  
23822e2f   zhangqijia   fix: update proto...
523
  func (*RoleUpdatePropertyNty) ProtoMessage() {}
eadc9aff   zhangqijia   feat: 增加上阵下阵协议,增加...
524
  
23822e2f   zhangqijia   fix: update proto...
525
  func (x *RoleUpdatePropertyNty) ProtoReflect() protoreflect.Message {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
526
  	mi := &file_game_proto_msgTypes[9]
eadc9aff   zhangqijia   feat: 增加上阵下阵协议,增加...
527
528
529
530
531
532
533
534
535
536
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
23822e2f   zhangqijia   fix: update proto...
537
538
  // Deprecated: Use RoleUpdatePropertyNty.ProtoReflect.Descriptor instead.
  func (*RoleUpdatePropertyNty) Descriptor() ([]byte, []int) {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
539
  	return file_game_proto_rawDescGZIP(), []int{9}
eadc9aff   zhangqijia   feat: 增加上阵下阵协议,增加...
540
541
  }
  
23822e2f   zhangqijia   fix: update proto...
542
  func (x *RoleUpdatePropertyNty) GetId() []int32 {
eadc9aff   zhangqijia   feat: 增加上阵下阵协议,增加...
543
  	if x != nil {
27a173f5   zhangqijia   fix: 更新背包系统文档,更改角...
544
545
546
547
548
  		return x.Id
  	}
  	return nil
  }
  
23822e2f   zhangqijia   fix: update proto...
549
  func (x *RoleUpdatePropertyNty) GetRole() *Role {
27a173f5   zhangqijia   fix: 更新背包系统文档,更改角...
550
551
  	if x != nil {
  		return x.Role
eadc9aff   zhangqijia   feat: 增加上阵下阵协议,增加...
552
553
554
555
  	}
  	return nil
  }
  
30e6d227   zhangqijia   fix: add nty
556
  type RoleUpdateItemsNty struct {
f631f225   zhangqijia   feat: 增加背包系统,以及背包...
557
558
559
560
561
562
563
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	Items string `protobuf:"bytes,1,opt,name=items,proto3" json:"items,omitempty"`
  }
  
30e6d227   zhangqijia   fix: add nty
564
565
  func (x *RoleUpdateItemsNty) Reset() {
  	*x = RoleUpdateItemsNty{}
f631f225   zhangqijia   feat: 增加背包系统,以及背包...
566
  	if protoimpl.UnsafeEnabled {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
567
  		mi := &file_game_proto_msgTypes[10]
f631f225   zhangqijia   feat: 增加背包系统,以及背包...
568
569
570
571
572
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
30e6d227   zhangqijia   fix: add nty
573
  func (x *RoleUpdateItemsNty) String() string {
f631f225   zhangqijia   feat: 增加背包系统,以及背包...
574
575
576
  	return protoimpl.X.MessageStringOf(x)
  }
  
30e6d227   zhangqijia   fix: add nty
577
  func (*RoleUpdateItemsNty) ProtoMessage() {}
f631f225   zhangqijia   feat: 增加背包系统,以及背包...
578
  
30e6d227   zhangqijia   fix: add nty
579
  func (x *RoleUpdateItemsNty) ProtoReflect() protoreflect.Message {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
580
  	mi := &file_game_proto_msgTypes[10]
f631f225   zhangqijia   feat: 增加背包系统,以及背包...
581
582
583
584
585
586
587
588
589
590
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
30e6d227   zhangqijia   fix: add nty
591
592
  // Deprecated: Use RoleUpdateItemsNty.ProtoReflect.Descriptor instead.
  func (*RoleUpdateItemsNty) Descriptor() ([]byte, []int) {
4e75670c   zhangqijia   fix: 首次通关记录到数据库
593
  	return file_game_proto_rawDescGZIP(), []int{10}
f631f225   zhangqijia   feat: 增加背包系统,以及背包...
594
595
  }
  
30e6d227   zhangqijia   fix: add nty
596
  func (x *RoleUpdateItemsNty) GetItems() string {
f631f225   zhangqijia   feat: 增加背包系统,以及背包...
597
598
599
600
601
602
  	if x != nil {
  		return x.Items
  	}
  	return ""
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
603
  type RoleClearItemsRar struct {
c8509ef6   zhangqijia   fix: notify equip...
604
605
606
607
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
c99d59cc   zhangqijia   fix: 批量删除物品
608
  	Items []string `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
c8509ef6   zhangqijia   fix: notify equip...
609
610
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
611
612
  func (x *RoleClearItemsRar) Reset() {
  	*x = RoleClearItemsRar{}
c8509ef6   zhangqijia   fix: notify equip...
613
  	if protoimpl.UnsafeEnabled {
18cbcf53   zhangqijia   feat: 英雄升级
614
  		mi := &file_game_proto_msgTypes[11]
c8509ef6   zhangqijia   fix: notify equip...
615
616
617
618
619
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
620
  func (x *RoleClearItemsRar) String() string {
c8509ef6   zhangqijia   fix: notify equip...
621
622
623
  	return protoimpl.X.MessageStringOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
624
  func (*RoleClearItemsRar) ProtoMessage() {}
c8509ef6   zhangqijia   fix: notify equip...
625
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
626
  func (x *RoleClearItemsRar) ProtoReflect() protoreflect.Message {
18cbcf53   zhangqijia   feat: 英雄升级
627
  	mi := &file_game_proto_msgTypes[11]
c8509ef6   zhangqijia   fix: notify equip...
628
629
630
631
632
633
634
635
636
637
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
638
639
  // Deprecated: Use RoleClearItemsRar.ProtoReflect.Descriptor instead.
  func (*RoleClearItemsRar) Descriptor() ([]byte, []int) {
18cbcf53   zhangqijia   feat: 英雄升级
640
  	return file_game_proto_rawDescGZIP(), []int{11}
c8509ef6   zhangqijia   fix: notify equip...
641
642
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
643
  func (x *RoleClearItemsRar) GetItems() []string {
c8509ef6   zhangqijia   fix: notify equip...
644
  	if x != nil {
c99d59cc   zhangqijia   fix: 批量删除物品
645
  		return x.Items
51d48d11   zhangqijia   fix: 删除装备 删除物品请求
646
  	}
c99d59cc   zhangqijia   fix: 批量删除物品
647
  	return nil
c8509ef6   zhangqijia   fix: notify equip...
648
649
  }
  
ddc88bac   zhangqijia   fix: 记录战斗
650
651
652
653
654
655
656
657
658
659
660
661
  type RoleStartBattleReq struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	ChapterId int32 `protobuf:"varint,1,opt,name=chapter_id,json=chapterId,proto3" json:"chapter_id,omitempty"`
  	CarbonId  int32 `protobuf:"varint,2,opt,name=carbon_id,json=carbonId,proto3" json:"carbon_id,omitempty"`
  }
  
  func (x *RoleStartBattleReq) Reset() {
  	*x = RoleStartBattleReq{}
  	if protoimpl.UnsafeEnabled {
18cbcf53   zhangqijia   feat: 英雄升级
662
  		mi := &file_game_proto_msgTypes[12]
ddc88bac   zhangqijia   fix: 记录战斗
663
664
665
666
667
668
669
670
671
672
673
674
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *RoleStartBattleReq) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*RoleStartBattleReq) ProtoMessage() {}
  
  func (x *RoleStartBattleReq) ProtoReflect() protoreflect.Message {
18cbcf53   zhangqijia   feat: 英雄升级
675
  	mi := &file_game_proto_msgTypes[12]
ddc88bac   zhangqijia   fix: 记录战斗
676
677
678
679
680
681
682
683
684
685
686
687
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use RoleStartBattleReq.ProtoReflect.Descriptor instead.
  func (*RoleStartBattleReq) Descriptor() ([]byte, []int) {
18cbcf53   zhangqijia   feat: 英雄升级
688
  	return file_game_proto_rawDescGZIP(), []int{12}
ddc88bac   zhangqijia   fix: 记录战斗
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
  }
  
  func (x *RoleStartBattleReq) GetChapterId() int32 {
  	if x != nil {
  		return x.ChapterId
  	}
  	return 0
  }
  
  func (x *RoleStartBattleReq) GetCarbonId() int32 {
  	if x != nil {
  		return x.CarbonId
  	}
  	return 0
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
  type RoleStartBattleRsp struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  }
  
  func (x *RoleStartBattleRsp) Reset() {
  	*x = RoleStartBattleRsp{}
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[13]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *RoleStartBattleRsp) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*RoleStartBattleRsp) ProtoMessage() {}
  
  func (x *RoleStartBattleRsp) ProtoReflect() protoreflect.Message {
  	mi := &file_game_proto_msgTypes[13]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use RoleStartBattleRsp.ProtoReflect.Descriptor instead.
  func (*RoleStartBattleRsp) Descriptor() ([]byte, []int) {
  	return file_game_proto_rawDescGZIP(), []int{13}
  }
  
ddc88bac   zhangqijia   fix: 记录战斗
743
744
745
746
747
  type RoleEndBattleReq struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
92256e32   zhangqijia   fix: 结束战斗的协议加上队伍id
748
749
750
751
  	ChapterId int32  `protobuf:"varint,1,opt,name=chapter_id,json=chapterId,proto3" json:"chapter_id,omitempty"`
  	CarbonId  int32  `protobuf:"varint,2,opt,name=carbon_id,json=carbonId,proto3" json:"carbon_id,omitempty"`
  	Pass      bool   `protobuf:"varint,3,opt,name=pass,proto3" json:"pass,omitempty"`
  	TeamId    string `protobuf:"bytes,4,opt,name=team_id,json=teamId,proto3" json:"team_id,omitempty"`
ddc88bac   zhangqijia   fix: 记录战斗
752
753
754
755
756
  }
  
  func (x *RoleEndBattleReq) Reset() {
  	*x = RoleEndBattleReq{}
  	if protoimpl.UnsafeEnabled {
f8ce769e   zhangqijia   fix: rpc = rar + ...
757
  		mi := &file_game_proto_msgTypes[14]
ddc88bac   zhangqijia   fix: 记录战斗
758
759
760
761
762
763
764
765
766
767
768
769
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *RoleEndBattleReq) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*RoleEndBattleReq) ProtoMessage() {}
  
  func (x *RoleEndBattleReq) ProtoReflect() protoreflect.Message {
f8ce769e   zhangqijia   fix: rpc = rar + ...
770
  	mi := &file_game_proto_msgTypes[14]
ddc88bac   zhangqijia   fix: 记录战斗
771
772
773
774
775
776
777
778
779
780
781
782
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use RoleEndBattleReq.ProtoReflect.Descriptor instead.
  func (*RoleEndBattleReq) Descriptor() ([]byte, []int) {
f8ce769e   zhangqijia   fix: rpc = rar + ...
783
  	return file_game_proto_rawDescGZIP(), []int{14}
ddc88bac   zhangqijia   fix: 记录战斗
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
  }
  
  func (x *RoleEndBattleReq) GetChapterId() int32 {
  	if x != nil {
  		return x.ChapterId
  	}
  	return 0
  }
  
  func (x *RoleEndBattleReq) GetCarbonId() int32 {
  	if x != nil {
  		return x.CarbonId
  	}
  	return 0
  }
  
  func (x *RoleEndBattleReq) GetPass() bool {
  	if x != nil {
  		return x.Pass
  	}
  	return false
  }
  
92256e32   zhangqijia   fix: 结束战斗的协议加上队伍id
807
808
809
810
811
812
813
  func (x *RoleEndBattleReq) GetTeamId() string {
  	if x != nil {
  		return x.TeamId
  	}
  	return ""
  }
  
ddc88bac   zhangqijia   fix: 记录战斗
814
815
816
817
818
  type RoleEndBattleRsp struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
4e56b6c4   zhangqijia   fix: update
819
820
821
822
823
824
  	RoleLevel     int32   `protobuf:"varint,1,opt,name=role_level,json=roleLevel,proto3" json:"role_level,omitempty"`
  	RoleExp       int32   `protobuf:"varint,2,opt,name=role_exp,json=roleExp,proto3" json:"role_exp,omitempty"`
  	RoleExpamount int32   `protobuf:"varint,3,opt,name=role_expamount,json=roleExpamount,proto3" json:"role_expamount,omitempty"`
  	Reward        string  `protobuf:"bytes,4,opt,name=reward,proto3" json:"reward,omitempty"`
  	Pass          bool    `protobuf:"varint,5,opt,name=pass,proto3" json:"pass,omitempty"`
  	Hero          []*Hero `protobuf:"bytes,6,rep,name=hero,proto3" json:"hero,omitempty"`
ddc88bac   zhangqijia   fix: 记录战斗
825
826
827
828
829
  }
  
  func (x *RoleEndBattleRsp) Reset() {
  	*x = RoleEndBattleRsp{}
  	if protoimpl.UnsafeEnabled {
f8ce769e   zhangqijia   fix: rpc = rar + ...
830
  		mi := &file_game_proto_msgTypes[15]
ddc88bac   zhangqijia   fix: 记录战斗
831
832
833
834
835
836
837
838
839
840
841
842
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *RoleEndBattleRsp) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*RoleEndBattleRsp) ProtoMessage() {}
  
  func (x *RoleEndBattleRsp) ProtoReflect() protoreflect.Message {
f8ce769e   zhangqijia   fix: rpc = rar + ...
843
  	mi := &file_game_proto_msgTypes[15]
ddc88bac   zhangqijia   fix: 记录战斗
844
845
846
847
848
849
850
851
852
853
854
855
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use RoleEndBattleRsp.ProtoReflect.Descriptor instead.
  func (*RoleEndBattleRsp) Descriptor() ([]byte, []int) {
f8ce769e   zhangqijia   fix: rpc = rar + ...
856
  	return file_game_proto_rawDescGZIP(), []int{15}
ddc88bac   zhangqijia   fix: 记录战斗
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
  }
  
  func (x *RoleEndBattleRsp) GetRoleLevel() int32 {
  	if x != nil {
  		return x.RoleLevel
  	}
  	return 0
  }
  
  func (x *RoleEndBattleRsp) GetRoleExp() int32 {
  	if x != nil {
  		return x.RoleExp
  	}
  	return 0
  }
  
4e56b6c4   zhangqijia   fix: update
873
  func (x *RoleEndBattleRsp) GetRoleExpamount() int32 {
ddc88bac   zhangqijia   fix: 记录战斗
874
  	if x != nil {
4e56b6c4   zhangqijia   fix: update
875
  		return x.RoleExpamount
ddc88bac   zhangqijia   fix: 记录战斗
876
  	}
4e56b6c4   zhangqijia   fix: update
877
  	return 0
ddc88bac   zhangqijia   fix: 记录战斗
878
879
880
881
882
883
884
885
886
  }
  
  func (x *RoleEndBattleRsp) GetReward() string {
  	if x != nil {
  		return x.Reward
  	}
  	return ""
  }
  
4e56b6c4   zhangqijia   fix: update
887
888
889
890
891
892
893
894
895
896
897
898
899
900
  func (x *RoleEndBattleRsp) GetPass() bool {
  	if x != nil {
  		return x.Pass
  	}
  	return false
  }
  
  func (x *RoleEndBattleRsp) GetHero() []*Hero {
  	if x != nil {
  		return x.Hero
  	}
  	return nil
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
901
  type EquipmentDelRar struct {
c2791869   zhangqijia   fix: gm增加删除装备删除物品接口
902
903
904
905
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
f74e34e3   zhangqijia   fix: 批量删除装备
906
  	Id []string `protobuf:"bytes,1,rep,name=id,proto3" json:"id,omitempty"`
c2791869   zhangqijia   fix: gm增加删除装备删除物品接口
907
908
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
909
910
  func (x *EquipmentDelRar) Reset() {
  	*x = EquipmentDelRar{}
c2791869   zhangqijia   fix: gm增加删除装备删除物品接口
911
  	if protoimpl.UnsafeEnabled {
f8ce769e   zhangqijia   fix: rpc = rar + ...
912
  		mi := &file_game_proto_msgTypes[16]
c2791869   zhangqijia   fix: gm增加删除装备删除物品接口
913
914
915
916
917
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
918
  func (x *EquipmentDelRar) String() string {
c2791869   zhangqijia   fix: gm增加删除装备删除物品接口
919
920
921
  	return protoimpl.X.MessageStringOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
922
  func (*EquipmentDelRar) ProtoMessage() {}
c2791869   zhangqijia   fix: gm增加删除装备删除物品接口
923
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
924
925
  func (x *EquipmentDelRar) ProtoReflect() protoreflect.Message {
  	mi := &file_game_proto_msgTypes[16]
c2791869   zhangqijia   fix: gm增加删除装备删除物品接口
926
927
928
929
930
931
932
933
934
935
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
936
937
938
  // Deprecated: Use EquipmentDelRar.ProtoReflect.Descriptor instead.
  func (*EquipmentDelRar) Descriptor() ([]byte, []int) {
  	return file_game_proto_rawDescGZIP(), []int{16}
c2791869   zhangqijia   fix: gm增加删除装备删除物品接口
939
940
  }
  
f8ce769e   zhangqijia   fix: rpc = rar + ...
941
  func (x *EquipmentDelRar) GetId() []string {
c2791869   zhangqijia   fix: gm增加删除装备删除物品接口
942
943
944
  	if x != nil {
  		return x.Id
  	}
f74e34e3   zhangqijia   fix: 批量删除装备
945
  	return nil
c2791869   zhangqijia   fix: gm增加删除装备删除物品接口
946
947
  }
  
23822e2f   zhangqijia   fix: update proto...
948
  type EquipmentAddNty struct {
51d48d11   zhangqijia   fix: 删除装备 删除物品请求
949
950
951
952
953
954
955
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	Equip *Equipment `protobuf:"bytes,1,opt,name=equip,proto3" json:"equip,omitempty"`
  }
  
23822e2f   zhangqijia   fix: update proto...
956
957
  func (x *EquipmentAddNty) Reset() {
  	*x = EquipmentAddNty{}
51d48d11   zhangqijia   fix: 删除装备 删除物品请求
958
  	if protoimpl.UnsafeEnabled {
f8ce769e   zhangqijia   fix: rpc = rar + ...
959
  		mi := &file_game_proto_msgTypes[17]
51d48d11   zhangqijia   fix: 删除装备 删除物品请求
960
961
962
963
964
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
23822e2f   zhangqijia   fix: update proto...
965
  func (x *EquipmentAddNty) String() string {
51d48d11   zhangqijia   fix: 删除装备 删除物品请求
966
967
968
  	return protoimpl.X.MessageStringOf(x)
  }
  
23822e2f   zhangqijia   fix: update proto...
969
  func (*EquipmentAddNty) ProtoMessage() {}
51d48d11   zhangqijia   fix: 删除装备 删除物品请求
970
  
23822e2f   zhangqijia   fix: update proto...
971
  func (x *EquipmentAddNty) ProtoReflect() protoreflect.Message {
f8ce769e   zhangqijia   fix: rpc = rar + ...
972
  	mi := &file_game_proto_msgTypes[17]
51d48d11   zhangqijia   fix: 删除装备 删除物品请求
973
974
975
976
977
978
979
980
981
982
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
23822e2f   zhangqijia   fix: update proto...
983
984
  // Deprecated: Use EquipmentAddNty.ProtoReflect.Descriptor instead.
  func (*EquipmentAddNty) Descriptor() ([]byte, []int) {
f8ce769e   zhangqijia   fix: rpc = rar + ...
985
  	return file_game_proto_rawDescGZIP(), []int{17}
51d48d11   zhangqijia   fix: 删除装备 删除物品请求
986
987
  }
  
23822e2f   zhangqijia   fix: update proto...
988
  func (x *EquipmentAddNty) GetEquip() *Equipment {
51d48d11   zhangqijia   fix: 删除装备 删除物品请求
989
990
991
992
993
994
  	if x != nil {
  		return x.Equip
  	}
  	return nil
  }
  
18cbcf53   zhangqijia   feat: 英雄升级
995
996
997
998
999
1000
  type HeroUpLevelReq struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	HeroId string `protobuf:"bytes,1,opt,name=heroId,proto3" json:"heroId,omitempty"`
c8e2cc53   zhangqijia   fix: 英雄升级,经验书批量操作
1001
  	Items  string `protobuf:"bytes,2,opt,name=items,proto3" json:"items,omitempty"` // [itemId1=count1, itemId2=count2]
18cbcf53   zhangqijia   feat: 英雄升级
1002
1003
1004
1005
1006
  }
  
  func (x *HeroUpLevelReq) Reset() {
  	*x = HeroUpLevelReq{}
  	if protoimpl.UnsafeEnabled {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1007
  		mi := &file_game_proto_msgTypes[18]
18cbcf53   zhangqijia   feat: 英雄升级
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *HeroUpLevelReq) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*HeroUpLevelReq) ProtoMessage() {}
  
  func (x *HeroUpLevelReq) ProtoReflect() protoreflect.Message {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1020
  	mi := &file_game_proto_msgTypes[18]
18cbcf53   zhangqijia   feat: 英雄升级
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use HeroUpLevelReq.ProtoReflect.Descriptor instead.
  func (*HeroUpLevelReq) Descriptor() ([]byte, []int) {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1033
  	return file_game_proto_rawDescGZIP(), []int{18}
18cbcf53   zhangqijia   feat: 英雄升级
1034
1035
1036
1037
1038
1039
1040
1041
1042
  }
  
  func (x *HeroUpLevelReq) GetHeroId() string {
  	if x != nil {
  		return x.HeroId
  	}
  	return ""
  }
  
c8e2cc53   zhangqijia   fix: 英雄升级,经验书批量操作
1043
  func (x *HeroUpLevelReq) GetItems() string {
18cbcf53   zhangqijia   feat: 英雄升级
1044
  	if x != nil {
c8e2cc53   zhangqijia   fix: 英雄升级,经验书批量操作
1045
  		return x.Items
18cbcf53   zhangqijia   feat: 英雄升级
1046
  	}
c8e2cc53   zhangqijia   fix: 英雄升级,经验书批量操作
1047
  	return ""
18cbcf53   zhangqijia   feat: 英雄升级
1048
1049
  }
  
2e0d2609   zhangqijia   fix: 英雄升级返回值+prot...
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
  type HeroUpLevelRsp struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	Hero *Hero `protobuf:"bytes,1,opt,name=hero,proto3" json:"hero,omitempty"`
  }
  
  func (x *HeroUpLevelRsp) Reset() {
  	*x = HeroUpLevelRsp{}
  	if protoimpl.UnsafeEnabled {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1061
  		mi := &file_game_proto_msgTypes[19]
2e0d2609   zhangqijia   fix: 英雄升级返回值+prot...
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *HeroUpLevelRsp) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*HeroUpLevelRsp) ProtoMessage() {}
  
  func (x *HeroUpLevelRsp) ProtoReflect() protoreflect.Message {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1074
  	mi := &file_game_proto_msgTypes[19]
2e0d2609   zhangqijia   fix: 英雄升级返回值+prot...
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use HeroUpLevelRsp.ProtoReflect.Descriptor instead.
  func (*HeroUpLevelRsp) Descriptor() ([]byte, []int) {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1087
  	return file_game_proto_rawDescGZIP(), []int{19}
2e0d2609   zhangqijia   fix: 英雄升级返回值+prot...
1088
1089
1090
1091
1092
1093
1094
1095
1096
  }
  
  func (x *HeroUpLevelRsp) GetHero() *Hero {
  	if x != nil {
  		return x.Hero
  	}
  	return nil
  }
  
e172952c   zhangqijia   feat: email 系统搭建
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
  type EmailListReq struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  }
  
  func (x *EmailListReq) Reset() {
  	*x = EmailListReq{}
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[20]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *EmailListReq) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*EmailListReq) ProtoMessage() {}
  
  func (x *EmailListReq) ProtoReflect() protoreflect.Message {
  	mi := &file_game_proto_msgTypes[20]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use EmailListReq.ProtoReflect.Descriptor instead.
  func (*EmailListReq) Descriptor() ([]byte, []int) {
  	return file_game_proto_rawDescGZIP(), []int{20}
  }
  
  type EmailListRsp struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	Emails []*Email `protobuf:"bytes,1,rep,name=emails,proto3" json:"emails,omitempty"`
  }
  
  func (x *EmailListRsp) Reset() {
  	*x = EmailListRsp{}
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[21]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *EmailListRsp) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*EmailListRsp) ProtoMessage() {}
  
  func (x *EmailListRsp) ProtoReflect() protoreflect.Message {
  	mi := &file_game_proto_msgTypes[21]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use EmailListRsp.ProtoReflect.Descriptor instead.
  func (*EmailListRsp) Descriptor() ([]byte, []int) {
  	return file_game_proto_rawDescGZIP(), []int{21}
  }
  
  func (x *EmailListRsp) GetEmails() []*Email {
  	if x != nil {
  		return x.Emails
  	}
  	return nil
  }
  
  type EmailDrawReq struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  }
  
  func (x *EmailDrawReq) Reset() {
  	*x = EmailDrawReq{}
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[22]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *EmailDrawReq) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*EmailDrawReq) ProtoMessage() {}
  
  func (x *EmailDrawReq) ProtoReflect() protoreflect.Message {
  	mi := &file_game_proto_msgTypes[22]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use EmailDrawReq.ProtoReflect.Descriptor instead.
  func (*EmailDrawReq) Descriptor() ([]byte, []int) {
  	return file_game_proto_rawDescGZIP(), []int{22}
  }
  
  func (x *EmailDrawReq) GetId() string {
  	if x != nil {
  		return x.Id
  	}
  	return ""
  }
  
  type EmailDrawRsp struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	Ids    []string `protobuf:"bytes,1,rep,name=ids,proto3" json:"ids,omitempty"`
  	Reward string   `protobuf:"bytes,2,opt,name=reward,proto3" json:"reward,omitempty"`
  }
  
  func (x *EmailDrawRsp) Reset() {
  	*x = EmailDrawRsp{}
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[23]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *EmailDrawRsp) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*EmailDrawRsp) ProtoMessage() {}
  
  func (x *EmailDrawRsp) ProtoReflect() protoreflect.Message {
  	mi := &file_game_proto_msgTypes[23]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use EmailDrawRsp.ProtoReflect.Descriptor instead.
  func (*EmailDrawRsp) Descriptor() ([]byte, []int) {
  	return file_game_proto_rawDescGZIP(), []int{23}
  }
  
  func (x *EmailDrawRsp) GetIds() []string {
  	if x != nil {
  		return x.Ids
  	}
  	return nil
  }
  
  func (x *EmailDrawRsp) GetReward() string {
  	if x != nil {
  		return x.Reward
  	}
  	return ""
  }
  
  type EmailCheckRar struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
  }
  
  func (x *EmailCheckRar) Reset() {
  	*x = EmailCheckRar{}
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[24]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *EmailCheckRar) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*EmailCheckRar) ProtoMessage() {}
  
  func (x *EmailCheckRar) ProtoReflect() protoreflect.Message {
  	mi := &file_game_proto_msgTypes[24]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use EmailCheckRar.ProtoReflect.Descriptor instead.
  func (*EmailCheckRar) Descriptor() ([]byte, []int) {
  	return file_game_proto_rawDescGZIP(), []int{24}
  }
  
  func (x *EmailCheckRar) GetId() string {
  	if x != nil {
  		return x.Id
  	}
  	return ""
  }
  
  type EmailDelReq struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  }
  
  func (x *EmailDelReq) Reset() {
  	*x = EmailDelReq{}
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[25]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *EmailDelReq) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*EmailDelReq) ProtoMessage() {}
  
  func (x *EmailDelReq) ProtoReflect() protoreflect.Message {
  	mi := &file_game_proto_msgTypes[25]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use EmailDelReq.ProtoReflect.Descriptor instead.
  func (*EmailDelReq) Descriptor() ([]byte, []int) {
  	return file_game_proto_rawDescGZIP(), []int{25}
  }
  
  type EmailDelRsp struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	Ids []string `protobuf:"bytes,1,rep,name=ids,proto3" json:"ids,omitempty"`
  }
  
  func (x *EmailDelRsp) Reset() {
  	*x = EmailDelRsp{}
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[26]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *EmailDelRsp) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*EmailDelRsp) ProtoMessage() {}
  
  func (x *EmailDelRsp) ProtoReflect() protoreflect.Message {
  	mi := &file_game_proto_msgTypes[26]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use EmailDelRsp.ProtoReflect.Descriptor instead.
  func (*EmailDelRsp) Descriptor() ([]byte, []int) {
  	return file_game_proto_rawDescGZIP(), []int{26}
  }
  
  func (x *EmailDelRsp) GetIds() []string {
  	if x != nil {
  		return x.Ids
  	}
  	return nil
  }
  
927b2652   zhangqijia   feat: EmailNewNty...
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
  type EmailNewNty struct {
  	state         protoimpl.MessageState
  	sizeCache     protoimpl.SizeCache
  	unknownFields protoimpl.UnknownFields
  
  	Emails *Email `protobuf:"bytes,1,opt,name=emails,proto3" json:"emails,omitempty"`
  }
  
  func (x *EmailNewNty) Reset() {
  	*x = EmailNewNty{}
  	if protoimpl.UnsafeEnabled {
  		mi := &file_game_proto_msgTypes[27]
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		ms.StoreMessageInfo(mi)
  	}
  }
  
  func (x *EmailNewNty) String() string {
  	return protoimpl.X.MessageStringOf(x)
  }
  
  func (*EmailNewNty) ProtoMessage() {}
  
  func (x *EmailNewNty) ProtoReflect() protoreflect.Message {
  	mi := &file_game_proto_msgTypes[27]
  	if protoimpl.UnsafeEnabled && x != nil {
  		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  		if ms.LoadMessageInfo() == nil {
  			ms.StoreMessageInfo(mi)
  		}
  		return ms
  	}
  	return mi.MessageOf(x)
  }
  
  // Deprecated: Use EmailNewNty.ProtoReflect.Descriptor instead.
  func (*EmailNewNty) Descriptor() ([]byte, []int) {
  	return file_game_proto_rawDescGZIP(), []int{27}
  }
  
  func (x *EmailNewNty) GetEmails() *Email {
  	if x != nil {
  		return x.Emails
  	}
  	return nil
  }
  
7f269318   zhangqijia   add pb.go; 添加关闭连接...
1463
1464
1465
1466
1467
1468
1469
  var File_game_proto protoreflect.FileDescriptor
  
  var file_game_proto_rawDesc = []byte{
  	0x0a, 0x0a, 0x67, 0x61, 0x6d, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x04, 0x67, 0x61,
  	0x6d, 0x65, 0x1a, 0x0c, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  	0x22, 0x1e, 0x0a, 0x08, 0x48, 0x65, 0x61, 0x72, 0x74, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04,
  	0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
8d983031   zhangqijia   loginReq uid -> t...
1470
1471
  	0x22, 0x1e, 0x0a, 0x08, 0x48, 0x65, 0x61, 0x72, 0x74, 0x52, 0x73, 0x70, 0x12, 0x12, 0x0a, 0x04,
  	0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x63, 0x6f, 0x64, 0x65,
436e0af4   zhangqijia   reactor: dir; Ac...
1472
1473
1474
  	0x22, 0x38, 0x0a, 0x08, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05,
  	0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b,
  	0x65, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01,
f8ce769e   zhangqijia   fix: rpc = rar + ...
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
  	0x28, 0x09, 0x52, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x22, 0xa3, 0x01, 0x0a, 0x08, 0x4c,
  	0x6f, 0x67, 0x69, 0x6e, 0x52, 0x73, 0x70, 0x12, 0x20, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18,
  	0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2e, 0x52,
  	0x6f, 0x6c, 0x65, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x20, 0x0a, 0x04, 0x68, 0x65, 0x72,
  	0x6f, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73,
  	0x2e, 0x48, 0x65, 0x72, 0x6f, 0x52, 0x04, 0x68, 0x65, 0x72, 0x6f, 0x12, 0x20, 0x0a, 0x04, 0x74,
  	0x65, 0x61, 0x6d, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x6d, 0x6f, 0x64, 0x65,
  	0x6c, 0x73, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x04, 0x74, 0x65, 0x61, 0x6d, 0x12, 0x31, 0x0a,
  	0x0a, 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28,
  	0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2e, 0x45, 0x71, 0x75, 0x69, 0x70,
  	0x6d, 0x65, 0x6e, 0x74, 0x52, 0x0a, 0x65, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x73,
  	0x22, 0x39, 0x0a, 0x09, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x61, 0x72, 0x12, 0x14, 0x0a,
  	0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x6f,
  	0x6b, 0x65, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x02, 0x20,
  	0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x22, 0x0f, 0x0a, 0x0d, 0x44,
  	0x69, 0x73, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x4e, 0x74, 0x79, 0x22, 0x31, 0x0a, 0x0d,
  	0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x61, 0x72, 0x12, 0x20, 0x0a,
  	0x04, 0x74, 0x65, 0x61, 0x6d, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x6d, 0x6f,
  	0x64, 0x65, 0x6c, 0x73, 0x2e, 0x54, 0x65, 0x61, 0x6d, 0x52, 0x04, 0x74, 0x65, 0x61, 0x6d, 0x22,
  	0x37, 0x0a, 0x09, 0x45, 0x71, 0x75, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x0a, 0x07,
  	0x65, 0x71, 0x75, 0x69, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65,
  	0x71, 0x75, 0x69, 0x70, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x6f, 0x73, 0x18, 0x02, 0x20,
  	0x01, 0x28, 0x05, 0x52, 0x03, 0x70, 0x6f, 0x73, 0x22, 0x6f, 0x0a, 0x11, 0x48, 0x65, 0x72, 0x6f,
  	0x45, 0x71, 0x75, 0x69, 0x70, 0x52, 0x65, 0x66, 0x65, 0x72, 0x52, 0x61, 0x72, 0x12, 0x2b, 0x0a,
  	0x08, 0x65, 0x71, 0x75, 0x69, 0x70, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
  	0x0f, 0x2e, 0x67, 0x61, 0x6d, 0x65, 0x2e, 0x45, 0x71, 0x75, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f,
  	0x52, 0x08, 0x65, 0x71, 0x75, 0x69, 0x70, 0x49, 0x64, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x68, 0x65,
  	0x72, 0x6f, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x65, 0x72,
  	0x6f, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x65, 0x66, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01,
  	0x28, 0x08, 0x52, 0x05, 0x72, 0x65, 0x66, 0x65, 0x72, 0x22, 0x49, 0x0a, 0x15, 0x52, 0x6f, 0x6c,
  	0x65, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x4e,
  	0x74, 0x79, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, 0x52, 0x02,
  	0x69, 0x64, 0x12, 0x20, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
  	0x32, 0x0c, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2e, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x04,
  	0x72, 0x6f, 0x6c, 0x65, 0x22, 0x2a, 0x0a, 0x12, 0x52, 0x6f, 0x6c, 0x65, 0x55, 0x70, 0x64, 0x61,
  	0x74, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x4e, 0x74, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x74,
  	0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73,
  	0x22, 0x29, 0x0a, 0x11, 0x52, 0x6f, 0x6c, 0x65, 0x43, 0x6c, 0x65, 0x61, 0x72, 0x49, 0x74, 0x65,
  	0x6d, 0x73, 0x52, 0x61, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x01,
  	0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x22, 0x50, 0x0a, 0x12, 0x52,
  	0x6f, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x52, 0x65,
  	0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,
  	0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x63, 0x68, 0x61, 0x70, 0x74, 0x65, 0x72, 0x49, 0x64,
  	0x12, 0x1b, 0x0a, 0x09, 0x63, 0x61, 0x72, 0x62, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20,
  	0x01, 0x28, 0x05, 0x52, 0x08, 0x63, 0x61, 0x72, 0x62, 0x6f, 0x6e, 0x49, 0x64, 0x22, 0x14, 0x0a,
  	0x12, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x72, 0x74, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65,
  	0x52, 0x73, 0x70, 0x22, 0x7b, 0x0a, 0x10, 0x52, 0x6f, 0x6c, 0x65, 0x45, 0x6e, 0x64, 0x42, 0x61,
  	0x74, 0x74, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x70, 0x74,
  	0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x63, 0x68, 0x61,
  	0x70, 0x74, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x61, 0x72, 0x62, 0x6f, 0x6e,
  	0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x63, 0x61, 0x72, 0x62, 0x6f,
  	0x6e, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x73, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
  	0x08, 0x52, 0x04, 0x70, 0x61, 0x73, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x74, 0x65, 0x61, 0x6d, 0x5f,
  	0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x74, 0x65, 0x61, 0x6d, 0x49, 0x64,
  	0x22, 0xc1, 0x01, 0x0a, 0x10, 0x52, 0x6f, 0x6c, 0x65, 0x45, 0x6e, 0x64, 0x42, 0x61, 0x74, 0x74,
  	0x6c, 0x65, 0x52, 0x73, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6c, 0x65,
  	0x76, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x72, 0x6f, 0x6c, 0x65, 0x4c,
  	0x65, 0x76, 0x65, 0x6c, 0x12, 0x19, 0x0a, 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x70,
  	0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x72, 0x6f, 0x6c, 0x65, 0x45, 0x78, 0x70, 0x12,
  	0x25, 0x0a, 0x0e, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6d, 0x6f, 0x75, 0x6e,
  	0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x6f, 0x6c, 0x65, 0x45, 0x78, 0x70,
  	0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64,
  	0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x12, 0x12,
  	0x0a, 0x04, 0x70, 0x61, 0x73, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x70, 0x61,
  	0x73, 0x73, 0x12, 0x20, 0x0a, 0x04, 0x68, 0x65, 0x72, 0x6f, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b,
  	0x32, 0x0c, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2e, 0x48, 0x65, 0x72, 0x6f, 0x52, 0x04,
  	0x68, 0x65, 0x72, 0x6f, 0x22, 0x21, 0x0a, 0x0f, 0x45, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e,
  	0x74, 0x44, 0x65, 0x6c, 0x52, 0x61, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
  	0x03, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x3a, 0x0a, 0x0f, 0x45, 0x71, 0x75, 0x69, 0x70,
  	0x6d, 0x65, 0x6e, 0x74, 0x41, 0x64, 0x64, 0x4e, 0x74, 0x79, 0x12, 0x27, 0x0a, 0x05, 0x65, 0x71,
  	0x75, 0x69, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x11, 0x2e, 0x6d, 0x6f, 0x64, 0x65,
  	0x6c, 0x73, 0x2e, 0x45, 0x71, 0x75, 0x69, 0x70, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x05, 0x65, 0x71,
  	0x75, 0x69, 0x70, 0x22, 0x3e, 0x0a, 0x0e, 0x48, 0x65, 0x72, 0x6f, 0x55, 0x70, 0x4c, 0x65, 0x76,
  	0x65, 0x6c, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x49, 0x64, 0x18,
  	0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x68, 0x65, 0x72, 0x6f, 0x49, 0x64, 0x12, 0x14, 0x0a,
  	0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x69, 0x74,
  	0x65, 0x6d, 0x73, 0x22, 0x32, 0x0a, 0x0e, 0x48, 0x65, 0x72, 0x6f, 0x55, 0x70, 0x4c, 0x65, 0x76,
  	0x65, 0x6c, 0x52, 0x73, 0x70, 0x12, 0x20, 0x0a, 0x04, 0x68, 0x65, 0x72, 0x6f, 0x18, 0x01, 0x20,
  	0x01, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73, 0x2e, 0x48, 0x65, 0x72,
e172952c   zhangqijia   feat: email 系统搭建
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
  	0x6f, 0x52, 0x04, 0x68, 0x65, 0x72, 0x6f, 0x22, 0x0e, 0x0a, 0x0c, 0x45, 0x6d, 0x61, 0x69, 0x6c,
  	0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x22, 0x35, 0x0a, 0x0c, 0x45, 0x6d, 0x61, 0x69, 0x6c,
  	0x4c, 0x69, 0x73, 0x74, 0x52, 0x73, 0x70, 0x12, 0x25, 0x0a, 0x06, 0x65, 0x6d, 0x61, 0x69, 0x6c,
  	0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x73,
  	0x2e, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x06, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x22, 0x1e,
  	0x0a, 0x0c, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x44, 0x72, 0x61, 0x77, 0x52, 0x65, 0x71, 0x12, 0x0e,
  	0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x38,
  	0x0a, 0x0c, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x44, 0x72, 0x61, 0x77, 0x52, 0x73, 0x70, 0x12, 0x10,
  	0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x03, 0x69, 0x64, 0x73,
  	0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
  	0x52, 0x06, 0x72, 0x65, 0x77, 0x61, 0x72, 0x64, 0x22, 0x1f, 0x0a, 0x0d, 0x45, 0x6d, 0x61, 0x69,
  	0x6c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x61, 0x72, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  	0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x22, 0x0d, 0x0a, 0x0b, 0x45, 0x6d, 0x61,
  	0x69, 0x6c, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x22, 0x1f, 0x0a, 0x0b, 0x45, 0x6d, 0x61, 0x69,
  	0x6c, 0x44, 0x65, 0x6c, 0x52, 0x73, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x69, 0x64, 0x73, 0x18, 0x01,
927b2652   zhangqijia   feat: EmailNewNty...
1569
1570
1571
1572
1573
1574
  	0x20, 0x03, 0x28, 0x09, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0x34, 0x0a, 0x0b, 0x45, 0x6d, 0x61,
  	0x69, 0x6c, 0x4e, 0x65, 0x77, 0x4e, 0x74, 0x79, 0x12, 0x25, 0x0a, 0x06, 0x65, 0x6d, 0x61, 0x69,
  	0x6c, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0d, 0x2e, 0x6d, 0x6f, 0x64, 0x65, 0x6c,
  	0x73, 0x2e, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x06, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x73, 0x42,
  	0x0a, 0x5a, 0x08, 0x2e, 0x2e, 0x2f, 0x70, 0x62, 0x3b, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f,
  	0x74, 0x6f, 0x33,
7f269318   zhangqijia   add pb.go; 添加关闭连接...
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
  }
  
  var (
  	file_game_proto_rawDescOnce sync.Once
  	file_game_proto_rawDescData = file_game_proto_rawDesc
  )
  
  func file_game_proto_rawDescGZIP() []byte {
  	file_game_proto_rawDescOnce.Do(func() {
  		file_game_proto_rawDescData = protoimpl.X.CompressGZIP(file_game_proto_rawDescData)
  	})
  	return file_game_proto_rawDescData
  }
  
927b2652   zhangqijia   feat: EmailNewNty...
1589
  var file_game_proto_msgTypes = make([]protoimpl.MessageInfo, 28)
7f269318   zhangqijia   add pb.go; 添加关闭连接...
1590
  var file_game_proto_goTypes = []interface{}{
4e75670c   zhangqijia   fix: 首次通关记录到数据库
1591
1592
1593
  	(*HeartReq)(nil),              // 0: game.HeartReq
  	(*HeartRsp)(nil),              // 1: game.HeartRsp
  	(*LoginReq)(nil),              // 2: game.LoginReq
f8ce769e   zhangqijia   fix: rpc = rar + ...
1594
1595
1596
1597
1598
1599
  	(*LoginRsp)(nil),              // 3: game.LoginRsp
  	(*CreateRar)(nil),             // 4: game.CreateRar
  	(*DisConnectNty)(nil),         // 5: game.DisConnectNty
  	(*ChangeTeamRar)(nil),         // 6: game.ChangeTeamRar
  	(*EquipInfo)(nil),             // 7: game.EquipInfo
  	(*HeroEquipReferRar)(nil),     // 8: game.HeroEquipReferRar
23822e2f   zhangqijia   fix: update proto...
1600
  	(*RoleUpdatePropertyNty)(nil), // 9: game.RoleUpdatePropertyNty
30e6d227   zhangqijia   fix: add nty
1601
  	(*RoleUpdateItemsNty)(nil),    // 10: game.RoleUpdateItemsNty
f8ce769e   zhangqijia   fix: rpc = rar + ...
1602
  	(*RoleClearItemsRar)(nil),     // 11: game.RoleClearItemsRar
18cbcf53   zhangqijia   feat: 英雄升级
1603
  	(*RoleStartBattleReq)(nil),    // 12: game.RoleStartBattleReq
f8ce769e   zhangqijia   fix: rpc = rar + ...
1604
1605
1606
1607
1608
1609
1610
  	(*RoleStartBattleRsp)(nil),    // 13: game.RoleStartBattleRsp
  	(*RoleEndBattleReq)(nil),      // 14: game.RoleEndBattleReq
  	(*RoleEndBattleRsp)(nil),      // 15: game.RoleEndBattleRsp
  	(*EquipmentDelRar)(nil),       // 16: game.EquipmentDelRar
  	(*EquipmentAddNty)(nil),       // 17: game.EquipmentAddNty
  	(*HeroUpLevelReq)(nil),        // 18: game.HeroUpLevelReq
  	(*HeroUpLevelRsp)(nil),        // 19: game.HeroUpLevelRsp
e172952c   zhangqijia   feat: email 系统搭建
1611
1612
1613
1614
1615
1616
1617
  	(*EmailListReq)(nil),          // 20: game.EmailListReq
  	(*EmailListRsp)(nil),          // 21: game.EmailListRsp
  	(*EmailDrawReq)(nil),          // 22: game.EmailDrawReq
  	(*EmailDrawRsp)(nil),          // 23: game.EmailDrawRsp
  	(*EmailCheckRar)(nil),         // 24: game.EmailCheckRar
  	(*EmailDelReq)(nil),           // 25: game.EmailDelReq
  	(*EmailDelRsp)(nil),           // 26: game.EmailDelRsp
927b2652   zhangqijia   feat: EmailNewNty...
1618
1619
1620
1621
1622
1623
  	(*EmailNewNty)(nil),           // 27: game.EmailNewNty
  	(*Role)(nil),                  // 28: models.Role
  	(*Hero)(nil),                  // 29: models.Hero
  	(*Team)(nil),                  // 30: models.Team
  	(*Equipment)(nil),             // 31: models.Equipment
  	(*Email)(nil),                 // 32: models.Email
7f269318   zhangqijia   add pb.go; 添加关闭连接...
1624
1625
  }
  var file_game_proto_depIdxs = []int32{
927b2652   zhangqijia   feat: EmailNewNty...
1626
1627
1628
1629
1630
  	28, // 0: game.LoginRsp.role:type_name -> models.Role
  	29, // 1: game.LoginRsp.hero:type_name -> models.Hero
  	30, // 2: game.LoginRsp.team:type_name -> models.Team
  	31, // 3: game.LoginRsp.equipments:type_name -> models.Equipment
  	30, // 4: game.ChangeTeamRar.team:type_name -> models.Team
f8ce769e   zhangqijia   fix: rpc = rar + ...
1631
  	7,  // 5: game.HeroEquipReferRar.equipIds:type_name -> game.EquipInfo
927b2652   zhangqijia   feat: EmailNewNty...
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
  	28, // 6: game.RoleUpdatePropertyNty.role:type_name -> models.Role
  	29, // 7: game.RoleEndBattleRsp.hero:type_name -> models.Hero
  	31, // 8: game.EquipmentAddNty.equip:type_name -> models.Equipment
  	29, // 9: game.HeroUpLevelRsp.hero:type_name -> models.Hero
  	32, // 10: game.EmailListRsp.emails:type_name -> models.Email
  	32, // 11: game.EmailNewNty.emails:type_name -> models.Email
  	12, // [12:12] is the sub-list for method output_type
  	12, // [12:12] is the sub-list for method input_type
  	12, // [12:12] is the sub-list for extension type_name
  	12, // [12:12] is the sub-list for extension extendee
  	0,  // [0:12] is the sub-list for field type_name
7f269318   zhangqijia   add pb.go; 添加关闭连接...
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
  }
  
  func init() { file_game_proto_init() }
  func file_game_proto_init() {
  	if File_game_proto != nil {
  		return
  	}
  	file_models_proto_init()
  	if !protoimpl.UnsafeEnabled {
  		file_game_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  			switch v := v.(*HeartReq); i {
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
8d983031   zhangqijia   loginReq uid -> t...
1665
  			switch v := v.(*HeartRsp); i {
7f269318   zhangqijia   add pb.go; 添加关闭连接...
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
8d983031   zhangqijia   loginReq uid -> t...
1677
  			switch v := v.(*LoginReq); i {
7f269318   zhangqijia   add pb.go; 添加关闭连接...
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
436e0af4   zhangqijia   reactor: dir; Ac...
1688
  		file_game_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1689
  			switch v := v.(*LoginRsp); i {
8d983031   zhangqijia   loginReq uid -> t...
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1701
  			switch v := v.(*CreateRar); i {
7f269318   zhangqijia   add pb.go; 添加关闭连接...
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
4255fd8e   zhangqijia   feat: 更新字段
1712
  		file_game_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1713
  			switch v := v.(*DisConnectNty); i {
4255fd8e   zhangqijia   feat: 更新字段
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
eadc9aff   zhangqijia   feat: 增加上阵下阵协议,增加...
1724
  		file_game_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1725
  			switch v := v.(*ChangeTeamRar); i {
eadc9aff   zhangqijia   feat: 增加上阵下阵协议,增加...
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
f631f225   zhangqijia   feat: 增加背包系统,以及背包...
1736
  		file_game_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1737
  			switch v := v.(*EquipInfo); i {
17fe96be   zhangqijia   feat: 增加装备相关数据和协议
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1749
  			switch v := v.(*HeroEquipReferRar); i {
f631f225   zhangqijia   feat: 增加背包系统,以及背包...
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
c8509ef6   zhangqijia   fix: notify equip...
1760
  		file_game_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
23822e2f   zhangqijia   fix: update proto...
1761
  			switch v := v.(*RoleUpdatePropertyNty); i {
c8509ef6   zhangqijia   fix: notify equip...
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
c2791869   zhangqijia   fix: gm增加删除装备删除物品接口
1772
  		file_game_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
30e6d227   zhangqijia   fix: add nty
1773
  			switch v := v.(*RoleUpdateItemsNty); i {
51d48d11   zhangqijia   fix: 删除装备 删除物品请求
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1785
  			switch v := v.(*RoleClearItemsRar); i {
ddc88bac   zhangqijia   fix: 记录战斗
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
18cbcf53   zhangqijia   feat: 英雄升级
1797
  			switch v := v.(*RoleStartBattleReq); i {
ddc88bac   zhangqijia   fix: 记录战斗
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1809
  			switch v := v.(*RoleStartBattleRsp); i {
ddc88bac   zhangqijia   fix: 记录战斗
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1821
  			switch v := v.(*RoleEndBattleReq); i {
495e9142   zhangqijia   fix: 增加DisConnect...
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1833
  			switch v := v.(*RoleEndBattleRsp); i {
35adfcdb   zhangqijia   fix: 裝備戒指类型特殊处理
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1845
  			switch v := v.(*EquipmentDelRar); i {
c2791869   zhangqijia   fix: gm增加删除装备删除物品接口
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
35adfcdb   zhangqijia   fix: 裝備戒指类型特殊处理
1856
  		file_game_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1857
  			switch v := v.(*EquipmentAddNty); i {
35adfcdb   zhangqijia   fix: 裝備戒指类型特殊处理
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
2e0d2609   zhangqijia   fix: 英雄升级返回值+prot...
1868
  		file_game_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
f8ce769e   zhangqijia   fix: rpc = rar + ...
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
  			switch v := v.(*HeroUpLevelReq); i {
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
2e0d2609   zhangqijia   fix: 英雄升级返回值+prot...
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
  			switch v := v.(*HeroUpLevelRsp); i {
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
e172952c   zhangqijia   feat: email 系统搭建
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
  		file_game_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  			switch v := v.(*EmailListReq); i {
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  			switch v := v.(*EmailListRsp); i {
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  			switch v := v.(*EmailDrawReq); i {
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  			switch v := v.(*EmailDrawRsp); i {
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  			switch v := v.(*EmailCheckRar); i {
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  			switch v := v.(*EmailDelReq); i {
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
  		file_game_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  			switch v := v.(*EmailDelRsp); i {
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
927b2652   zhangqijia   feat: EmailNewNty...
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
  		file_game_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  			switch v := v.(*EmailNewNty); i {
  			case 0:
  				return &v.state
  			case 1:
  				return &v.sizeCache
  			case 2:
  				return &v.unknownFields
  			default:
  				return nil
  			}
  		}
7f269318   zhangqijia   add pb.go; 添加关闭连接...
1988
1989
1990
1991
1992
1993
1994
  	}
  	type x struct{}
  	out := protoimpl.TypeBuilder{
  		File: protoimpl.DescBuilder{
  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  			RawDescriptor: file_game_proto_rawDesc,
  			NumEnums:      0,
927b2652   zhangqijia   feat: EmailNewNty...
1995
  			NumMessages:   28,
7f269318   zhangqijia   add pb.go; 添加关闭连接...
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
  			NumExtensions: 0,
  			NumServices:   0,
  		},
  		GoTypes:           file_game_proto_goTypes,
  		DependencyIndexes: file_game_proto_depIdxs,
  		MessageInfos:      file_game_proto_msgTypes,
  	}.Build()
  	File_game_proto = out.File
  	file_game_proto_rawDesc = nil
  	file_game_proto_goTypes = nil
  	file_game_proto_depIdxs = nil
  }