db_cmds.pb.go 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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_cmds.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. type EDbCommand int32
  20. const (
  21. EDbCommand_E_DB_COMMAND_UNSPECIFIED EDbCommand = 0
  22. EDbCommand_E_DB_COMMAND_PUSH_CHAT_LOG EDbCommand = 1001 // 推送聊天日志
  23. EDbCommand_E_DB_COMMAND_PUSH_CHAT_RECORD EDbCommand = 1002 // 推送客服对接记录
  24. EDbCommand_E_DB_COMMAND_GET_CONFIG EDbCommand = 2001 // 获取配置
  25. EDbCommand_E_DB_COMMAND_GET_CHAT_RECORD EDbCommand = 2002 // 获取客服对接记录
  26. EDbCommand_E_DB_COMMAND_GET_CHAT_LOG EDbCommand = 2003 // 获取日志记录
  27. )
  28. // Enum value maps for EDbCommand.
  29. var (
  30. EDbCommand_name = map[int32]string{
  31. 0: "E_DB_COMMAND_UNSPECIFIED",
  32. 1001: "E_DB_COMMAND_PUSH_CHAT_LOG",
  33. 1002: "E_DB_COMMAND_PUSH_CHAT_RECORD",
  34. 2001: "E_DB_COMMAND_GET_CONFIG",
  35. 2002: "E_DB_COMMAND_GET_CHAT_RECORD",
  36. 2003: "E_DB_COMMAND_GET_CHAT_LOG",
  37. }
  38. EDbCommand_value = map[string]int32{
  39. "E_DB_COMMAND_UNSPECIFIED": 0,
  40. "E_DB_COMMAND_PUSH_CHAT_LOG": 1001,
  41. "E_DB_COMMAND_PUSH_CHAT_RECORD": 1002,
  42. "E_DB_COMMAND_GET_CONFIG": 2001,
  43. "E_DB_COMMAND_GET_CHAT_RECORD": 2002,
  44. "E_DB_COMMAND_GET_CHAT_LOG": 2003,
  45. }
  46. )
  47. func (x EDbCommand) Enum() *EDbCommand {
  48. p := new(EDbCommand)
  49. *p = x
  50. return p
  51. }
  52. func (x EDbCommand) String() string {
  53. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  54. }
  55. func (EDbCommand) Descriptor() protoreflect.EnumDescriptor {
  56. return file_db_cmds_proto_enumTypes[0].Descriptor()
  57. }
  58. func (EDbCommand) Type() protoreflect.EnumType {
  59. return &file_db_cmds_proto_enumTypes[0]
  60. }
  61. func (x EDbCommand) Number() protoreflect.EnumNumber {
  62. return protoreflect.EnumNumber(x)
  63. }
  64. // Deprecated: Use EDbCommand.Descriptor instead.
  65. func (EDbCommand) EnumDescriptor() ([]byte, []int) {
  66. return file_db_cmds_proto_rawDescGZIP(), []int{0}
  67. }
  68. type EDbChatType int32
  69. const (
  70. EDbChatType_E_DB_CHAT_TYPE_PLAYER EDbChatType = 0 // 玩家发言
  71. EDbChatType_E_DB_CHAT_TYPE_SERVICE EDbChatType = 1 // 客服发言
  72. )
  73. // Enum value maps for EDbChatType.
  74. var (
  75. EDbChatType_name = map[int32]string{
  76. 0: "E_DB_CHAT_TYPE_PLAYER",
  77. 1: "E_DB_CHAT_TYPE_SERVICE",
  78. }
  79. EDbChatType_value = map[string]int32{
  80. "E_DB_CHAT_TYPE_PLAYER": 0,
  81. "E_DB_CHAT_TYPE_SERVICE": 1,
  82. }
  83. )
  84. func (x EDbChatType) Enum() *EDbChatType {
  85. p := new(EDbChatType)
  86. *p = x
  87. return p
  88. }
  89. func (x EDbChatType) String() string {
  90. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  91. }
  92. func (EDbChatType) Descriptor() protoreflect.EnumDescriptor {
  93. return file_db_cmds_proto_enumTypes[1].Descriptor()
  94. }
  95. func (EDbChatType) Type() protoreflect.EnumType {
  96. return &file_db_cmds_proto_enumTypes[1]
  97. }
  98. func (x EDbChatType) Number() protoreflect.EnumNumber {
  99. return protoreflect.EnumNumber(x)
  100. }
  101. // Deprecated: Use EDbChatType.Descriptor instead.
  102. func (EDbChatType) EnumDescriptor() ([]byte, []int) {
  103. return file_db_cmds_proto_rawDescGZIP(), []int{1}
  104. }
  105. type EDbRecordState int32
  106. const (
  107. EDbRecordState_E_DB_RECORD_STATE_REPLY EDbRecordState = 0
  108. EDbRecordState_E_DB_RECORD_STATE_DISCONNECT EDbRecordState = 1
  109. )
  110. // Enum value maps for EDbRecordState.
  111. var (
  112. EDbRecordState_name = map[int32]string{
  113. 0: "E_DB_RECORD_STATE_REPLY",
  114. 1: "E_DB_RECORD_STATE_DISCONNECT",
  115. }
  116. EDbRecordState_value = map[string]int32{
  117. "E_DB_RECORD_STATE_REPLY": 0,
  118. "E_DB_RECORD_STATE_DISCONNECT": 1,
  119. }
  120. )
  121. func (x EDbRecordState) Enum() *EDbRecordState {
  122. p := new(EDbRecordState)
  123. *p = x
  124. return p
  125. }
  126. func (x EDbRecordState) String() string {
  127. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  128. }
  129. func (EDbRecordState) Descriptor() protoreflect.EnumDescriptor {
  130. return file_db_cmds_proto_enumTypes[2].Descriptor()
  131. }
  132. func (EDbRecordState) Type() protoreflect.EnumType {
  133. return &file_db_cmds_proto_enumTypes[2]
  134. }
  135. func (x EDbRecordState) Number() protoreflect.EnumNumber {
  136. return protoreflect.EnumNumber(x)
  137. }
  138. // Deprecated: Use EDbRecordState.Descriptor instead.
  139. func (EDbRecordState) EnumDescriptor() ([]byte, []int) {
  140. return file_db_cmds_proto_rawDescGZIP(), []int{2}
  141. }
  142. var File_db_cmds_proto protoreflect.FileDescriptor
  143. var file_db_cmds_proto_rawDesc = []byte{
  144. 0x0a, 0x0d, 0x64, 0x62, 0x5f, 0x63, 0x6d, 0x64, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  145. 0x02, 0x70, 0x62, 0x2a, 0xd0, 0x01, 0x0a, 0x0a, 0x45, 0x44, 0x62, 0x43, 0x6f, 0x6d, 0x6d, 0x61,
  146. 0x6e, 0x64, 0x12, 0x1c, 0x0a, 0x18, 0x45, 0x5f, 0x44, 0x42, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x41,
  147. 0x4e, 0x44, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00,
  148. 0x12, 0x1f, 0x0a, 0x1a, 0x45, 0x5f, 0x44, 0x42, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x41, 0x4e, 0x44,
  149. 0x5f, 0x50, 0x55, 0x53, 0x48, 0x5f, 0x43, 0x48, 0x41, 0x54, 0x5f, 0x4c, 0x4f, 0x47, 0x10, 0xe9,
  150. 0x07, 0x12, 0x22, 0x0a, 0x1d, 0x45, 0x5f, 0x44, 0x42, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x41, 0x4e,
  151. 0x44, 0x5f, 0x50, 0x55, 0x53, 0x48, 0x5f, 0x43, 0x48, 0x41, 0x54, 0x5f, 0x52, 0x45, 0x43, 0x4f,
  152. 0x52, 0x44, 0x10, 0xea, 0x07, 0x12, 0x1c, 0x0a, 0x17, 0x45, 0x5f, 0x44, 0x42, 0x5f, 0x43, 0x4f,
  153. 0x4d, 0x4d, 0x41, 0x4e, 0x44, 0x5f, 0x47, 0x45, 0x54, 0x5f, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47,
  154. 0x10, 0xd1, 0x0f, 0x12, 0x21, 0x0a, 0x1c, 0x45, 0x5f, 0x44, 0x42, 0x5f, 0x43, 0x4f, 0x4d, 0x4d,
  155. 0x41, 0x4e, 0x44, 0x5f, 0x47, 0x45, 0x54, 0x5f, 0x43, 0x48, 0x41, 0x54, 0x5f, 0x52, 0x45, 0x43,
  156. 0x4f, 0x52, 0x44, 0x10, 0xd2, 0x0f, 0x12, 0x1e, 0x0a, 0x19, 0x45, 0x5f, 0x44, 0x42, 0x5f, 0x43,
  157. 0x4f, 0x4d, 0x4d, 0x41, 0x4e, 0x44, 0x5f, 0x47, 0x45, 0x54, 0x5f, 0x43, 0x48, 0x41, 0x54, 0x5f,
  158. 0x4c, 0x4f, 0x47, 0x10, 0xd3, 0x0f, 0x2a, 0x44, 0x0a, 0x0b, 0x45, 0x44, 0x62, 0x43, 0x68, 0x61,
  159. 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x15, 0x45, 0x5f, 0x44, 0x42, 0x5f, 0x43, 0x48,
  160. 0x41, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x50, 0x4c, 0x41, 0x59, 0x45, 0x52, 0x10, 0x00,
  161. 0x12, 0x1a, 0x0a, 0x16, 0x45, 0x5f, 0x44, 0x42, 0x5f, 0x43, 0x48, 0x41, 0x54, 0x5f, 0x54, 0x59,
  162. 0x50, 0x45, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x49, 0x43, 0x45, 0x10, 0x01, 0x2a, 0x4f, 0x0a, 0x0e,
  163. 0x45, 0x44, 0x62, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1b,
  164. 0x0a, 0x17, 0x45, 0x5f, 0x44, 0x42, 0x5f, 0x52, 0x45, 0x43, 0x4f, 0x52, 0x44, 0x5f, 0x53, 0x54,
  165. 0x41, 0x54, 0x45, 0x5f, 0x52, 0x45, 0x50, 0x4c, 0x59, 0x10, 0x00, 0x12, 0x20, 0x0a, 0x1c, 0x45,
  166. 0x5f, 0x44, 0x42, 0x5f, 0x52, 0x45, 0x43, 0x4f, 0x52, 0x44, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45,
  167. 0x5f, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x10, 0x01, 0x42, 0x05, 0x5a,
  168. 0x03, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  169. }
  170. var (
  171. file_db_cmds_proto_rawDescOnce sync.Once
  172. file_db_cmds_proto_rawDescData = file_db_cmds_proto_rawDesc
  173. )
  174. func file_db_cmds_proto_rawDescGZIP() []byte {
  175. file_db_cmds_proto_rawDescOnce.Do(func() {
  176. file_db_cmds_proto_rawDescData = protoimpl.X.CompressGZIP(file_db_cmds_proto_rawDescData)
  177. })
  178. return file_db_cmds_proto_rawDescData
  179. }
  180. var file_db_cmds_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
  181. var file_db_cmds_proto_goTypes = []interface{}{
  182. (EDbCommand)(0), // 0: pb.EDbCommand
  183. (EDbChatType)(0), // 1: pb.EDbChatType
  184. (EDbRecordState)(0), // 2: pb.EDbRecordState
  185. }
  186. var file_db_cmds_proto_depIdxs = []int32{
  187. 0, // [0:0] is the sub-list for method output_type
  188. 0, // [0:0] is the sub-list for method input_type
  189. 0, // [0:0] is the sub-list for extension type_name
  190. 0, // [0:0] is the sub-list for extension extendee
  191. 0, // [0:0] is the sub-list for field type_name
  192. }
  193. func init() { file_db_cmds_proto_init() }
  194. func file_db_cmds_proto_init() {
  195. if File_db_cmds_proto != nil {
  196. return
  197. }
  198. type x struct{}
  199. out := protoimpl.TypeBuilder{
  200. File: protoimpl.DescBuilder{
  201. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  202. RawDescriptor: file_db_cmds_proto_rawDesc,
  203. NumEnums: 3,
  204. NumMessages: 0,
  205. NumExtensions: 0,
  206. NumServices: 0,
  207. },
  208. GoTypes: file_db_cmds_proto_goTypes,
  209. DependencyIndexes: file_db_cmds_proto_depIdxs,
  210. EnumInfos: file_db_cmds_proto_enumTypes,
  211. }.Build()
  212. File_db_cmds_proto = out.File
  213. file_db_cmds_proto_rawDesc = nil
  214. file_db_cmds_proto_goTypes = nil
  215. file_db_cmds_proto_depIdxs = nil
  216. }