db_msg.pb.go 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0
  4. // protoc v3.17.3
  5. // source: db_msg.proto
  6. package pb
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. // 配置信息
  20. type DbConfig struct {
  21. state protoimpl.MessageState
  22. sizeCache protoimpl.SizeCache
  23. unknownFields protoimpl.UnknownFields
  24. ConfName string `protobuf:"bytes,1,opt,name=conf_name,json=confName,proto3" json:"conf_name,omitempty"`
  25. ConfKey string `protobuf:"bytes,2,opt,name=conf_key,json=confKey,proto3" json:"conf_key,omitempty"`
  26. ConfValue string `protobuf:"bytes,3,opt,name=conf_value,json=confValue,proto3" json:"conf_value,omitempty"`
  27. }
  28. func (x *DbConfig) Reset() {
  29. *x = DbConfig{}
  30. if protoimpl.UnsafeEnabled {
  31. mi := &file_db_msg_proto_msgTypes[0]
  32. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  33. ms.StoreMessageInfo(mi)
  34. }
  35. }
  36. func (x *DbConfig) String() string {
  37. return protoimpl.X.MessageStringOf(x)
  38. }
  39. func (*DbConfig) ProtoMessage() {}
  40. func (x *DbConfig) ProtoReflect() protoreflect.Message {
  41. mi := &file_db_msg_proto_msgTypes[0]
  42. if protoimpl.UnsafeEnabled && x != nil {
  43. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  44. if ms.LoadMessageInfo() == nil {
  45. ms.StoreMessageInfo(mi)
  46. }
  47. return ms
  48. }
  49. return mi.MessageOf(x)
  50. }
  51. // Deprecated: Use DbConfig.ProtoReflect.Descriptor instead.
  52. func (*DbConfig) Descriptor() ([]byte, []int) {
  53. return file_db_msg_proto_rawDescGZIP(), []int{0}
  54. }
  55. func (x *DbConfig) GetConfName() string {
  56. if x != nil {
  57. return x.ConfName
  58. }
  59. return ""
  60. }
  61. func (x *DbConfig) GetConfKey() string {
  62. if x != nil {
  63. return x.ConfKey
  64. }
  65. return ""
  66. }
  67. func (x *DbConfig) GetConfValue() string {
  68. if x != nil {
  69. return x.ConfValue
  70. }
  71. return ""
  72. }
  73. type ArrayConfig struct {
  74. state protoimpl.MessageState
  75. sizeCache protoimpl.SizeCache
  76. unknownFields protoimpl.UnknownFields
  77. DataList []*DbConfig `protobuf:"bytes,1,rep,name=data_list,json=dataList,proto3" json:"data_list,omitempty"`
  78. }
  79. func (x *ArrayConfig) Reset() {
  80. *x = ArrayConfig{}
  81. if protoimpl.UnsafeEnabled {
  82. mi := &file_db_msg_proto_msgTypes[1]
  83. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  84. ms.StoreMessageInfo(mi)
  85. }
  86. }
  87. func (x *ArrayConfig) String() string {
  88. return protoimpl.X.MessageStringOf(x)
  89. }
  90. func (*ArrayConfig) ProtoMessage() {}
  91. func (x *ArrayConfig) ProtoReflect() protoreflect.Message {
  92. mi := &file_db_msg_proto_msgTypes[1]
  93. if protoimpl.UnsafeEnabled && x != nil {
  94. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  95. if ms.LoadMessageInfo() == nil {
  96. ms.StoreMessageInfo(mi)
  97. }
  98. return ms
  99. }
  100. return mi.MessageOf(x)
  101. }
  102. // Deprecated: Use ArrayConfig.ProtoReflect.Descriptor instead.
  103. func (*ArrayConfig) Descriptor() ([]byte, []int) {
  104. return file_db_msg_proto_rawDescGZIP(), []int{1}
  105. }
  106. func (x *ArrayConfig) GetDataList() []*DbConfig {
  107. if x != nil {
  108. return x.DataList
  109. }
  110. return nil
  111. }
  112. // 客服聊天记录
  113. type DbChatLog struct {
  114. state protoimpl.MessageState
  115. sizeCache protoimpl.SizeCache
  116. unknownFields protoimpl.UnknownFields
  117. FromId string `protobuf:"bytes,1,opt,name=from_id,json=fromId,proto3" json:"from_id,omitempty"`
  118. ToId string `protobuf:"bytes,2,opt,name=to_id,json=toId,proto3" json:"to_id,omitempty"`
  119. Content string `protobuf:"bytes,3,opt,name=content,proto3" json:"content,omitempty"`
  120. TimeStamp int64 `protobuf:"varint,4,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
  121. ChatType EDbChatType `protobuf:"varint,5,opt,name=chat_type,json=chatType,proto3,enum=pb.EDbChatType" json:"chat_type,omitempty"`
  122. SessionId string `protobuf:"bytes,6,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
  123. GameId int32 `protobuf:"varint,7,opt,name=game_id,json=gameId,proto3" json:"game_id,omitempty"`
  124. IsVisitor bool `protobuf:"varint,8,opt,name=is_visitor,json=isVisitor,proto3" json:"is_visitor,omitempty"`
  125. }
  126. func (x *DbChatLog) Reset() {
  127. *x = DbChatLog{}
  128. if protoimpl.UnsafeEnabled {
  129. mi := &file_db_msg_proto_msgTypes[2]
  130. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  131. ms.StoreMessageInfo(mi)
  132. }
  133. }
  134. func (x *DbChatLog) String() string {
  135. return protoimpl.X.MessageStringOf(x)
  136. }
  137. func (*DbChatLog) ProtoMessage() {}
  138. func (x *DbChatLog) ProtoReflect() protoreflect.Message {
  139. mi := &file_db_msg_proto_msgTypes[2]
  140. if protoimpl.UnsafeEnabled && x != nil {
  141. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  142. if ms.LoadMessageInfo() == nil {
  143. ms.StoreMessageInfo(mi)
  144. }
  145. return ms
  146. }
  147. return mi.MessageOf(x)
  148. }
  149. // Deprecated: Use DbChatLog.ProtoReflect.Descriptor instead.
  150. func (*DbChatLog) Descriptor() ([]byte, []int) {
  151. return file_db_msg_proto_rawDescGZIP(), []int{2}
  152. }
  153. func (x *DbChatLog) GetFromId() string {
  154. if x != nil {
  155. return x.FromId
  156. }
  157. return ""
  158. }
  159. func (x *DbChatLog) GetToId() string {
  160. if x != nil {
  161. return x.ToId
  162. }
  163. return ""
  164. }
  165. func (x *DbChatLog) GetContent() string {
  166. if x != nil {
  167. return x.Content
  168. }
  169. return ""
  170. }
  171. func (x *DbChatLog) GetTimeStamp() int64 {
  172. if x != nil {
  173. return x.TimeStamp
  174. }
  175. return 0
  176. }
  177. func (x *DbChatLog) GetChatType() EDbChatType {
  178. if x != nil {
  179. return x.ChatType
  180. }
  181. return EDbChatType_E_DB_CHAT_TYPE_PLAYER
  182. }
  183. func (x *DbChatLog) GetSessionId() string {
  184. if x != nil {
  185. return x.SessionId
  186. }
  187. return ""
  188. }
  189. func (x *DbChatLog) GetGameId() int32 {
  190. if x != nil {
  191. return x.GameId
  192. }
  193. return 0
  194. }
  195. func (x *DbChatLog) GetIsVisitor() bool {
  196. if x != nil {
  197. return x.IsVisitor
  198. }
  199. return false
  200. }
  201. type ArrayDbChatLog struct {
  202. state protoimpl.MessageState
  203. sizeCache protoimpl.SizeCache
  204. unknownFields protoimpl.UnknownFields
  205. DataList []*DbChatLog `protobuf:"bytes,1,rep,name=data_list,json=dataList,proto3" json:"data_list,omitempty"`
  206. }
  207. func (x *ArrayDbChatLog) Reset() {
  208. *x = ArrayDbChatLog{}
  209. if protoimpl.UnsafeEnabled {
  210. mi := &file_db_msg_proto_msgTypes[3]
  211. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  212. ms.StoreMessageInfo(mi)
  213. }
  214. }
  215. func (x *ArrayDbChatLog) String() string {
  216. return protoimpl.X.MessageStringOf(x)
  217. }
  218. func (*ArrayDbChatLog) ProtoMessage() {}
  219. func (x *ArrayDbChatLog) ProtoReflect() protoreflect.Message {
  220. mi := &file_db_msg_proto_msgTypes[3]
  221. if protoimpl.UnsafeEnabled && x != nil {
  222. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  223. if ms.LoadMessageInfo() == nil {
  224. ms.StoreMessageInfo(mi)
  225. }
  226. return ms
  227. }
  228. return mi.MessageOf(x)
  229. }
  230. // Deprecated: Use ArrayDbChatLog.ProtoReflect.Descriptor instead.
  231. func (*ArrayDbChatLog) Descriptor() ([]byte, []int) {
  232. return file_db_msg_proto_rawDescGZIP(), []int{3}
  233. }
  234. func (x *ArrayDbChatLog) GetDataList() []*DbChatLog {
  235. if x != nil {
  236. return x.DataList
  237. }
  238. return nil
  239. }
  240. type DbChatRecord struct {
  241. state protoimpl.MessageState
  242. sizeCache protoimpl.SizeCache
  243. unknownFields protoimpl.UnknownFields
  244. SessionId string `protobuf:"bytes,3,opt,name=session_id,json=sessionId,proto3" json:"session_id,omitempty"`
  245. ServiceId string `protobuf:"bytes,1,opt,name=service_id,json=serviceId,proto3" json:"service_id,omitempty"`
  246. PlayerId string `protobuf:"bytes,2,opt,name=player_id,json=playerId,proto3" json:"player_id,omitempty"`
  247. IsVisitor bool `protobuf:"varint,4,opt,name=is_visitor,json=isVisitor,proto3" json:"is_visitor,omitempty"`
  248. State EDbRecordState `protobuf:"varint,5,opt,name=state,proto3,enum=pb.EDbRecordState" json:"state,omitempty"`
  249. TimeStamp int64 `protobuf:"varint,6,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
  250. GameId int32 `protobuf:"varint,7,opt,name=game_id,json=gameId,proto3" json:"game_id,omitempty"`
  251. }
  252. func (x *DbChatRecord) Reset() {
  253. *x = DbChatRecord{}
  254. if protoimpl.UnsafeEnabled {
  255. mi := &file_db_msg_proto_msgTypes[4]
  256. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  257. ms.StoreMessageInfo(mi)
  258. }
  259. }
  260. func (x *DbChatRecord) String() string {
  261. return protoimpl.X.MessageStringOf(x)
  262. }
  263. func (*DbChatRecord) ProtoMessage() {}
  264. func (x *DbChatRecord) ProtoReflect() protoreflect.Message {
  265. mi := &file_db_msg_proto_msgTypes[4]
  266. if protoimpl.UnsafeEnabled && x != nil {
  267. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  268. if ms.LoadMessageInfo() == nil {
  269. ms.StoreMessageInfo(mi)
  270. }
  271. return ms
  272. }
  273. return mi.MessageOf(x)
  274. }
  275. // Deprecated: Use DbChatRecord.ProtoReflect.Descriptor instead.
  276. func (*DbChatRecord) Descriptor() ([]byte, []int) {
  277. return file_db_msg_proto_rawDescGZIP(), []int{4}
  278. }
  279. func (x *DbChatRecord) GetSessionId() string {
  280. if x != nil {
  281. return x.SessionId
  282. }
  283. return ""
  284. }
  285. func (x *DbChatRecord) GetServiceId() string {
  286. if x != nil {
  287. return x.ServiceId
  288. }
  289. return ""
  290. }
  291. func (x *DbChatRecord) GetPlayerId() string {
  292. if x != nil {
  293. return x.PlayerId
  294. }
  295. return ""
  296. }
  297. func (x *DbChatRecord) GetIsVisitor() bool {
  298. if x != nil {
  299. return x.IsVisitor
  300. }
  301. return false
  302. }
  303. func (x *DbChatRecord) GetState() EDbRecordState {
  304. if x != nil {
  305. return x.State
  306. }
  307. return EDbRecordState_E_DB_RECORD_STATE_REPLY
  308. }
  309. func (x *DbChatRecord) GetTimeStamp() int64 {
  310. if x != nil {
  311. return x.TimeStamp
  312. }
  313. return 0
  314. }
  315. func (x *DbChatRecord) GetGameId() int32 {
  316. if x != nil {
  317. return x.GameId
  318. }
  319. return 0
  320. }
  321. type ArrayChatRecord struct {
  322. state protoimpl.MessageState
  323. sizeCache protoimpl.SizeCache
  324. unknownFields protoimpl.UnknownFields
  325. DataList []*DbChatRecord `protobuf:"bytes,1,rep,name=data_list,json=dataList,proto3" json:"data_list,omitempty"`
  326. }
  327. func (x *ArrayChatRecord) Reset() {
  328. *x = ArrayChatRecord{}
  329. if protoimpl.UnsafeEnabled {
  330. mi := &file_db_msg_proto_msgTypes[5]
  331. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  332. ms.StoreMessageInfo(mi)
  333. }
  334. }
  335. func (x *ArrayChatRecord) String() string {
  336. return protoimpl.X.MessageStringOf(x)
  337. }
  338. func (*ArrayChatRecord) ProtoMessage() {}
  339. func (x *ArrayChatRecord) ProtoReflect() protoreflect.Message {
  340. mi := &file_db_msg_proto_msgTypes[5]
  341. if protoimpl.UnsafeEnabled && x != nil {
  342. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  343. if ms.LoadMessageInfo() == nil {
  344. ms.StoreMessageInfo(mi)
  345. }
  346. return ms
  347. }
  348. return mi.MessageOf(x)
  349. }
  350. // Deprecated: Use ArrayChatRecord.ProtoReflect.Descriptor instead.
  351. func (*ArrayChatRecord) Descriptor() ([]byte, []int) {
  352. return file_db_msg_proto_rawDescGZIP(), []int{5}
  353. }
  354. func (x *ArrayChatRecord) GetDataList() []*DbChatRecord {
  355. if x != nil {
  356. return x.DataList
  357. }
  358. return nil
  359. }
  360. //
  361. //命令消息
  362. type DbCommandMsg struct {
  363. state protoimpl.MessageState
  364. sizeCache protoimpl.SizeCache
  365. unknownFields protoimpl.UnknownFields
  366. CmdType EDbCommand `protobuf:"varint,1,opt,name=cmd_type,json=cmdType,proto3,enum=pb.EDbCommand" json:"cmd_type,omitempty"` // 命令类型
  367. CmdValue int32 `protobuf:"varint,2,opt,name=cmd_value,json=cmdValue,proto3" json:"cmd_value,omitempty"` // 通用val
  368. CmdStr string `protobuf:"bytes,3,opt,name=cmd_str,json=cmdStr,proto3" json:"cmd_str,omitempty"` // 通用str
  369. // Types that are assignable to Data:
  370. // *DbCommandMsg_ArrayConfig
  371. // *DbCommandMsg_ChatLog
  372. // *DbCommandMsg_ChatRecord
  373. // *DbCommandMsg_ArrayChatRecord
  374. // *DbCommandMsg_ArrayChatLog
  375. Data isDbCommandMsg_Data `protobuf_oneof:"data"`
  376. }
  377. func (x *DbCommandMsg) Reset() {
  378. *x = DbCommandMsg{}
  379. if protoimpl.UnsafeEnabled {
  380. mi := &file_db_msg_proto_msgTypes[6]
  381. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  382. ms.StoreMessageInfo(mi)
  383. }
  384. }
  385. func (x *DbCommandMsg) String() string {
  386. return protoimpl.X.MessageStringOf(x)
  387. }
  388. func (*DbCommandMsg) ProtoMessage() {}
  389. func (x *DbCommandMsg) ProtoReflect() protoreflect.Message {
  390. mi := &file_db_msg_proto_msgTypes[6]
  391. if protoimpl.UnsafeEnabled && x != nil {
  392. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  393. if ms.LoadMessageInfo() == nil {
  394. ms.StoreMessageInfo(mi)
  395. }
  396. return ms
  397. }
  398. return mi.MessageOf(x)
  399. }
  400. // Deprecated: Use DbCommandMsg.ProtoReflect.Descriptor instead.
  401. func (*DbCommandMsg) Descriptor() ([]byte, []int) {
  402. return file_db_msg_proto_rawDescGZIP(), []int{6}
  403. }
  404. func (x *DbCommandMsg) GetCmdType() EDbCommand {
  405. if x != nil {
  406. return x.CmdType
  407. }
  408. return EDbCommand_E_DB_COMMAND_UNSPECIFIED
  409. }
  410. func (x *DbCommandMsg) GetCmdValue() int32 {
  411. if x != nil {
  412. return x.CmdValue
  413. }
  414. return 0
  415. }
  416. func (x *DbCommandMsg) GetCmdStr() string {
  417. if x != nil {
  418. return x.CmdStr
  419. }
  420. return ""
  421. }
  422. func (m *DbCommandMsg) GetData() isDbCommandMsg_Data {
  423. if m != nil {
  424. return m.Data
  425. }
  426. return nil
  427. }
  428. func (x *DbCommandMsg) GetArrayConfig() *ArrayConfig {
  429. if x, ok := x.GetData().(*DbCommandMsg_ArrayConfig); ok {
  430. return x.ArrayConfig
  431. }
  432. return nil
  433. }
  434. func (x *DbCommandMsg) GetChatLog() *DbChatLog {
  435. if x, ok := x.GetData().(*DbCommandMsg_ChatLog); ok {
  436. return x.ChatLog
  437. }
  438. return nil
  439. }
  440. func (x *DbCommandMsg) GetChatRecord() *DbChatRecord {
  441. if x, ok := x.GetData().(*DbCommandMsg_ChatRecord); ok {
  442. return x.ChatRecord
  443. }
  444. return nil
  445. }
  446. func (x *DbCommandMsg) GetArrayChatRecord() *ArrayChatRecord {
  447. if x, ok := x.GetData().(*DbCommandMsg_ArrayChatRecord); ok {
  448. return x.ArrayChatRecord
  449. }
  450. return nil
  451. }
  452. func (x *DbCommandMsg) GetArrayChatLog() *ArrayDbChatLog {
  453. if x, ok := x.GetData().(*DbCommandMsg_ArrayChatLog); ok {
  454. return x.ArrayChatLog
  455. }
  456. return nil
  457. }
  458. type isDbCommandMsg_Data interface {
  459. isDbCommandMsg_Data()
  460. }
  461. type DbCommandMsg_ArrayConfig struct {
  462. ArrayConfig *ArrayConfig `protobuf:"bytes,1001,opt,name=array_config,json=arrayConfig,proto3,oneof"`
  463. }
  464. type DbCommandMsg_ChatLog struct {
  465. ChatLog *DbChatLog `protobuf:"bytes,1002,opt,name=chat_log,json=chatLog,proto3,oneof"`
  466. }
  467. type DbCommandMsg_ChatRecord struct {
  468. ChatRecord *DbChatRecord `protobuf:"bytes,1003,opt,name=chat_record,json=chatRecord,proto3,oneof"`
  469. }
  470. type DbCommandMsg_ArrayChatRecord struct {
  471. ArrayChatRecord *ArrayChatRecord `protobuf:"bytes,1004,opt,name=array_chat_record,json=arrayChatRecord,proto3,oneof"`
  472. }
  473. type DbCommandMsg_ArrayChatLog struct {
  474. ArrayChatLog *ArrayDbChatLog `protobuf:"bytes,1005,opt,name=array_chat_log,json=arrayChatLog,proto3,oneof"`
  475. }
  476. func (*DbCommandMsg_ArrayConfig) isDbCommandMsg_Data() {}
  477. func (*DbCommandMsg_ChatLog) isDbCommandMsg_Data() {}
  478. func (*DbCommandMsg_ChatRecord) isDbCommandMsg_Data() {}
  479. func (*DbCommandMsg_ArrayChatRecord) isDbCommandMsg_Data() {}
  480. func (*DbCommandMsg_ArrayChatLog) isDbCommandMsg_Data() {}
  481. var File_db_msg_proto protoreflect.FileDescriptor
  482. var file_db_msg_proto_rawDesc = []byte{
  483. 0x0a, 0x0c, 0x64, 0x62, 0x5f, 0x6d, 0x73, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x02,
  484. 0x70, 0x62, 0x1a, 0x0d, 0x64, 0x62, 0x5f, 0x63, 0x6d, 0x64, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  485. 0x6f, 0x22, 0x61, 0x0a, 0x08, 0x44, 0x62, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1b, 0x0a,
  486. 0x09, 0x63, 0x6f, 0x6e, 0x66, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  487. 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x66, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x6f,
  488. 0x6e, 0x66, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f,
  489. 0x6e, 0x66, 0x4b, 0x65, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x66, 0x5f, 0x76, 0x61,
  490. 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x66, 0x56,
  491. 0x61, 0x6c, 0x75, 0x65, 0x22, 0x38, 0x0a, 0x0b, 0x41, 0x72, 0x72, 0x61, 0x79, 0x43, 0x6f, 0x6e,
  492. 0x66, 0x69, 0x67, 0x12, 0x29, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x73, 0x74,
  493. 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0c, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x62, 0x43, 0x6f,
  494. 0x6e, 0x66, 0x69, 0x67, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xf7,
  495. 0x01, 0x0a, 0x09, 0x44, 0x62, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x6f, 0x67, 0x12, 0x17, 0x0a, 0x07,
  496. 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66,
  497. 0x72, 0x6f, 0x6d, 0x49, 0x64, 0x12, 0x13, 0x0a, 0x05, 0x74, 0x6f, 0x5f, 0x69, 0x64, 0x18, 0x02,
  498. 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x6f, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f,
  499. 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e,
  500. 0x74, 0x65, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61,
  501. 0x6d, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x53, 0x74,
  502. 0x61, 0x6d, 0x70, 0x12, 0x2c, 0x0a, 0x09, 0x63, 0x68, 0x61, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
  503. 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0f, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x44, 0x62, 0x43,
  504. 0x68, 0x61, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x08, 0x63, 0x68, 0x61, 0x74, 0x54, 0x79, 0x70,
  505. 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18,
  506. 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64,
  507. 0x12, 0x17, 0x0a, 0x07, 0x67, 0x61, 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28,
  508. 0x05, 0x52, 0x06, 0x67, 0x61, 0x6d, 0x65, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f,
  509. 0x76, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69,
  510. 0x73, 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x22, 0x3c, 0x0a, 0x0e, 0x41, 0x72, 0x72, 0x61,
  511. 0x79, 0x44, 0x62, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x6f, 0x67, 0x12, 0x2a, 0x0a, 0x09, 0x64, 0x61,
  512. 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0d, 0x2e,
  513. 0x70, 0x62, 0x2e, 0x44, 0x62, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x6f, 0x67, 0x52, 0x08, 0x64, 0x61,
  514. 0x74, 0x61, 0x4c, 0x69, 0x73, 0x74, 0x22, 0xea, 0x01, 0x0a, 0x0c, 0x44, 0x62, 0x43, 0x68, 0x61,
  515. 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x65, 0x73, 0x73, 0x69,
  516. 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x65, 0x73,
  517. 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63,
  518. 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x65, 0x72, 0x76,
  519. 0x69, 0x63, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72, 0x5f,
  520. 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x79, 0x65, 0x72,
  521. 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72,
  522. 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f,
  523. 0x72, 0x12, 0x28, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e,
  524. 0x32, 0x12, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x44, 0x62, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x53,
  525. 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x74,
  526. 0x69, 0x6d, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52,
  527. 0x09, 0x74, 0x69, 0x6d, 0x65, 0x53, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x17, 0x0a, 0x07, 0x67, 0x61,
  528. 0x6d, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x67, 0x61, 0x6d,
  529. 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x0f, 0x41, 0x72, 0x72, 0x61, 0x79, 0x43, 0x68, 0x61, 0x74,
  530. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x2d, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c,
  531. 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44,
  532. 0x62, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x52, 0x08, 0x64, 0x61, 0x74,
  533. 0x61, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x92, 0x03, 0x0a, 0x0c, 0x44, 0x62, 0x43, 0x6f, 0x6d, 0x6d,
  534. 0x61, 0x6e, 0x64, 0x4d, 0x73, 0x67, 0x12, 0x29, 0x0a, 0x08, 0x63, 0x6d, 0x64, 0x5f, 0x74, 0x79,
  535. 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x0e, 0x2e, 0x70, 0x62, 0x2e, 0x45, 0x44,
  536. 0x62, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x52, 0x07, 0x63, 0x6d, 0x64, 0x54, 0x79, 0x70,
  537. 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6d, 0x64, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
  538. 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x63, 0x6d, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x17,
  539. 0x0a, 0x07, 0x63, 0x6d, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
  540. 0x06, 0x63, 0x6d, 0x64, 0x53, 0x74, 0x72, 0x12, 0x35, 0x0a, 0x0c, 0x61, 0x72, 0x72, 0x61, 0x79,
  541. 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0xe9, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f,
  542. 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x72, 0x61, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48,
  543. 0x00, 0x52, 0x0b, 0x61, 0x72, 0x72, 0x61, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x2b,
  544. 0x0a, 0x08, 0x63, 0x68, 0x61, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x18, 0xea, 0x07, 0x20, 0x01, 0x28,
  545. 0x0b, 0x32, 0x0d, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x62, 0x43, 0x68, 0x61, 0x74, 0x4c, 0x6f, 0x67,
  546. 0x48, 0x00, 0x52, 0x07, 0x63, 0x68, 0x61, 0x74, 0x4c, 0x6f, 0x67, 0x12, 0x34, 0x0a, 0x0b, 0x63,
  547. 0x68, 0x61, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x18, 0xeb, 0x07, 0x20, 0x01, 0x28,
  548. 0x0b, 0x32, 0x10, 0x2e, 0x70, 0x62, 0x2e, 0x44, 0x62, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63,
  549. 0x6f, 0x72, 0x64, 0x48, 0x00, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72,
  550. 0x64, 0x12, 0x42, 0x0a, 0x11, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x63, 0x68, 0x61, 0x74, 0x5f,
  551. 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x18, 0xec, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e,
  552. 0x70, 0x62, 0x2e, 0x41, 0x72, 0x72, 0x61, 0x79, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f,
  553. 0x72, 0x64, 0x48, 0x00, 0x52, 0x0f, 0x61, 0x72, 0x72, 0x61, 0x79, 0x43, 0x68, 0x61, 0x74, 0x52,
  554. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x12, 0x3b, 0x0a, 0x0e, 0x61, 0x72, 0x72, 0x61, 0x79, 0x5f, 0x63,
  555. 0x68, 0x61, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x18, 0xed, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x12,
  556. 0x2e, 0x70, 0x62, 0x2e, 0x41, 0x72, 0x72, 0x61, 0x79, 0x44, 0x62, 0x43, 0x68, 0x61, 0x74, 0x4c,
  557. 0x6f, 0x67, 0x48, 0x00, 0x52, 0x0c, 0x61, 0x72, 0x72, 0x61, 0x79, 0x43, 0x68, 0x61, 0x74, 0x4c,
  558. 0x6f, 0x67, 0x42, 0x06, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x42, 0x05, 0x5a, 0x03, 0x2f, 0x70,
  559. 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  560. }
  561. var (
  562. file_db_msg_proto_rawDescOnce sync.Once
  563. file_db_msg_proto_rawDescData = file_db_msg_proto_rawDesc
  564. )
  565. func file_db_msg_proto_rawDescGZIP() []byte {
  566. file_db_msg_proto_rawDescOnce.Do(func() {
  567. file_db_msg_proto_rawDescData = protoimpl.X.CompressGZIP(file_db_msg_proto_rawDescData)
  568. })
  569. return file_db_msg_proto_rawDescData
  570. }
  571. var file_db_msg_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
  572. var file_db_msg_proto_goTypes = []interface{}{
  573. (*DbConfig)(nil), // 0: pb.DbConfig
  574. (*ArrayConfig)(nil), // 1: pb.ArrayConfig
  575. (*DbChatLog)(nil), // 2: pb.DbChatLog
  576. (*ArrayDbChatLog)(nil), // 3: pb.ArrayDbChatLog
  577. (*DbChatRecord)(nil), // 4: pb.DbChatRecord
  578. (*ArrayChatRecord)(nil), // 5: pb.ArrayChatRecord
  579. (*DbCommandMsg)(nil), // 6: pb.DbCommandMsg
  580. (EDbChatType)(0), // 7: pb.EDbChatType
  581. (EDbRecordState)(0), // 8: pb.EDbRecordState
  582. (EDbCommand)(0), // 9: pb.EDbCommand
  583. }
  584. var file_db_msg_proto_depIdxs = []int32{
  585. 0, // 0: pb.ArrayConfig.data_list:type_name -> pb.DbConfig
  586. 7, // 1: pb.DbChatLog.chat_type:type_name -> pb.EDbChatType
  587. 2, // 2: pb.ArrayDbChatLog.data_list:type_name -> pb.DbChatLog
  588. 8, // 3: pb.DbChatRecord.state:type_name -> pb.EDbRecordState
  589. 4, // 4: pb.ArrayChatRecord.data_list:type_name -> pb.DbChatRecord
  590. 9, // 5: pb.DbCommandMsg.cmd_type:type_name -> pb.EDbCommand
  591. 1, // 6: pb.DbCommandMsg.array_config:type_name -> pb.ArrayConfig
  592. 2, // 7: pb.DbCommandMsg.chat_log:type_name -> pb.DbChatLog
  593. 4, // 8: pb.DbCommandMsg.chat_record:type_name -> pb.DbChatRecord
  594. 5, // 9: pb.DbCommandMsg.array_chat_record:type_name -> pb.ArrayChatRecord
  595. 3, // 10: pb.DbCommandMsg.array_chat_log:type_name -> pb.ArrayDbChatLog
  596. 11, // [11:11] is the sub-list for method output_type
  597. 11, // [11:11] is the sub-list for method input_type
  598. 11, // [11:11] is the sub-list for extension type_name
  599. 11, // [11:11] is the sub-list for extension extendee
  600. 0, // [0:11] is the sub-list for field type_name
  601. }
  602. func init() { file_db_msg_proto_init() }
  603. func file_db_msg_proto_init() {
  604. if File_db_msg_proto != nil {
  605. return
  606. }
  607. file_db_cmds_proto_init()
  608. if !protoimpl.UnsafeEnabled {
  609. file_db_msg_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  610. switch v := v.(*DbConfig); i {
  611. case 0:
  612. return &v.state
  613. case 1:
  614. return &v.sizeCache
  615. case 2:
  616. return &v.unknownFields
  617. default:
  618. return nil
  619. }
  620. }
  621. file_db_msg_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  622. switch v := v.(*ArrayConfig); i {
  623. case 0:
  624. return &v.state
  625. case 1:
  626. return &v.sizeCache
  627. case 2:
  628. return &v.unknownFields
  629. default:
  630. return nil
  631. }
  632. }
  633. file_db_msg_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  634. switch v := v.(*DbChatLog); i {
  635. case 0:
  636. return &v.state
  637. case 1:
  638. return &v.sizeCache
  639. case 2:
  640. return &v.unknownFields
  641. default:
  642. return nil
  643. }
  644. }
  645. file_db_msg_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  646. switch v := v.(*ArrayDbChatLog); i {
  647. case 0:
  648. return &v.state
  649. case 1:
  650. return &v.sizeCache
  651. case 2:
  652. return &v.unknownFields
  653. default:
  654. return nil
  655. }
  656. }
  657. file_db_msg_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  658. switch v := v.(*DbChatRecord); i {
  659. case 0:
  660. return &v.state
  661. case 1:
  662. return &v.sizeCache
  663. case 2:
  664. return &v.unknownFields
  665. default:
  666. return nil
  667. }
  668. }
  669. file_db_msg_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  670. switch v := v.(*ArrayChatRecord); i {
  671. case 0:
  672. return &v.state
  673. case 1:
  674. return &v.sizeCache
  675. case 2:
  676. return &v.unknownFields
  677. default:
  678. return nil
  679. }
  680. }
  681. file_db_msg_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  682. switch v := v.(*DbCommandMsg); i {
  683. case 0:
  684. return &v.state
  685. case 1:
  686. return &v.sizeCache
  687. case 2:
  688. return &v.unknownFields
  689. default:
  690. return nil
  691. }
  692. }
  693. }
  694. file_db_msg_proto_msgTypes[6].OneofWrappers = []interface{}{
  695. (*DbCommandMsg_ArrayConfig)(nil),
  696. (*DbCommandMsg_ChatLog)(nil),
  697. (*DbCommandMsg_ChatRecord)(nil),
  698. (*DbCommandMsg_ArrayChatRecord)(nil),
  699. (*DbCommandMsg_ArrayChatLog)(nil),
  700. }
  701. type x struct{}
  702. out := protoimpl.TypeBuilder{
  703. File: protoimpl.DescBuilder{
  704. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  705. RawDescriptor: file_db_msg_proto_rawDesc,
  706. NumEnums: 0,
  707. NumMessages: 7,
  708. NumExtensions: 0,
  709. NumServices: 0,
  710. },
  711. GoTypes: file_db_msg_proto_goTypes,
  712. DependencyIndexes: file_db_msg_proto_depIdxs,
  713. MessageInfos: file_db_msg_proto_msgTypes,
  714. }.Build()
  715. File_db_msg_proto = out.File
  716. file_db_msg_proto_rawDesc = nil
  717. file_db_msg_proto_goTypes = nil
  718. file_db_msg_proto_depIdxs = nil
  719. }