SmsPushNotice.pb.go 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.35.2
  4. // protoc v5.28.3
  5. // source: SmsPushNotice.proto
  6. package workphone
  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 SmsMessage struct {
  20. state protoimpl.MessageState
  21. sizeCache protoimpl.SizeCache
  22. unknownFields protoimpl.UnknownFields
  23. Id int32 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
  24. Number string `protobuf:"bytes,2,opt,name=Number,proto3" json:"Number,omitempty"` //
  25. Type int32 `protobuf:"varint,3,opt,name=Type,proto3" json:"Type,omitempty"` // 1 inbox,2 sent,3 draft 4 outbox 5 failed 6 queued
  26. Date int64 `protobuf:"varint,4,opt,name=Date,proto3" json:"Date,omitempty"` // UTC时间,秒
  27. Content string `protobuf:"bytes,5,opt,name=Content,proto3" json:"Content,omitempty"` // 内容
  28. Read bool `protobuf:"varint,6,opt,name=Read,proto3" json:"Read,omitempty"` // 是否已读
  29. ThreadId int32 `protobuf:"varint,7,opt,name=ThreadId,proto3" json:"ThreadId,omitempty"` // 会话id,设置已读时有用
  30. SimId int32 `protobuf:"varint,8,opt,name=SimId,proto3" json:"SimId,omitempty"` //
  31. BlockType int32 `protobuf:"varint,9,opt,name=BlockType,proto3" json:"BlockType,omitempty"` // 拦截类型
  32. }
  33. func (x *SmsMessage) Reset() {
  34. *x = SmsMessage{}
  35. mi := &file_SmsPushNotice_proto_msgTypes[0]
  36. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  37. ms.StoreMessageInfo(mi)
  38. }
  39. func (x *SmsMessage) String() string {
  40. return protoimpl.X.MessageStringOf(x)
  41. }
  42. func (*SmsMessage) ProtoMessage() {}
  43. func (x *SmsMessage) ProtoReflect() protoreflect.Message {
  44. mi := &file_SmsPushNotice_proto_msgTypes[0]
  45. if x != nil {
  46. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  47. if ms.LoadMessageInfo() == nil {
  48. ms.StoreMessageInfo(mi)
  49. }
  50. return ms
  51. }
  52. return mi.MessageOf(x)
  53. }
  54. // Deprecated: Use SmsMessage.ProtoReflect.Descriptor instead.
  55. func (*SmsMessage) Descriptor() ([]byte, []int) {
  56. return file_SmsPushNotice_proto_rawDescGZIP(), []int{0}
  57. }
  58. func (x *SmsMessage) GetId() int32 {
  59. if x != nil {
  60. return x.Id
  61. }
  62. return 0
  63. }
  64. func (x *SmsMessage) GetNumber() string {
  65. if x != nil {
  66. return x.Number
  67. }
  68. return ""
  69. }
  70. func (x *SmsMessage) GetType() int32 {
  71. if x != nil {
  72. return x.Type
  73. }
  74. return 0
  75. }
  76. func (x *SmsMessage) GetDate() int64 {
  77. if x != nil {
  78. return x.Date
  79. }
  80. return 0
  81. }
  82. func (x *SmsMessage) GetContent() string {
  83. if x != nil {
  84. return x.Content
  85. }
  86. return ""
  87. }
  88. func (x *SmsMessage) GetRead() bool {
  89. if x != nil {
  90. return x.Read
  91. }
  92. return false
  93. }
  94. func (x *SmsMessage) GetThreadId() int32 {
  95. if x != nil {
  96. return x.ThreadId
  97. }
  98. return 0
  99. }
  100. func (x *SmsMessage) GetSimId() int32 {
  101. if x != nil {
  102. return x.SimId
  103. }
  104. return 0
  105. }
  106. func (x *SmsMessage) GetBlockType() int32 {
  107. if x != nil {
  108. return x.BlockType
  109. }
  110. return 0
  111. }
  112. type SmsPushNoticeMessage struct {
  113. state protoimpl.MessageState
  114. sizeCache protoimpl.SizeCache
  115. unknownFields protoimpl.UnknownFields
  116. WeChatId string `protobuf:"bytes,1,opt,name=WeChatId,proto3" json:"WeChatId,omitempty"` // 商家所属微信号
  117. IMEI string `protobuf:"bytes,2,opt,name=IMEI,proto3" json:"IMEI,omitempty"` // 手机设备号
  118. Messages *SmsMessage `protobuf:"bytes,3,opt,name=Messages,proto3" json:"Messages,omitempty"` //
  119. }
  120. func (x *SmsPushNoticeMessage) Reset() {
  121. *x = SmsPushNoticeMessage{}
  122. mi := &file_SmsPushNotice_proto_msgTypes[1]
  123. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  124. ms.StoreMessageInfo(mi)
  125. }
  126. func (x *SmsPushNoticeMessage) String() string {
  127. return protoimpl.X.MessageStringOf(x)
  128. }
  129. func (*SmsPushNoticeMessage) ProtoMessage() {}
  130. func (x *SmsPushNoticeMessage) ProtoReflect() protoreflect.Message {
  131. mi := &file_SmsPushNotice_proto_msgTypes[1]
  132. if x != nil {
  133. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  134. if ms.LoadMessageInfo() == nil {
  135. ms.StoreMessageInfo(mi)
  136. }
  137. return ms
  138. }
  139. return mi.MessageOf(x)
  140. }
  141. // Deprecated: Use SmsPushNoticeMessage.ProtoReflect.Descriptor instead.
  142. func (*SmsPushNoticeMessage) Descriptor() ([]byte, []int) {
  143. return file_SmsPushNotice_proto_rawDescGZIP(), []int{1}
  144. }
  145. func (x *SmsPushNoticeMessage) GetWeChatId() string {
  146. if x != nil {
  147. return x.WeChatId
  148. }
  149. return ""
  150. }
  151. func (x *SmsPushNoticeMessage) GetIMEI() string {
  152. if x != nil {
  153. return x.IMEI
  154. }
  155. return ""
  156. }
  157. func (x *SmsPushNoticeMessage) GetMessages() *SmsMessage {
  158. if x != nil {
  159. return x.Messages
  160. }
  161. return nil
  162. }
  163. var File_SmsPushNotice_proto protoreflect.FileDescriptor
  164. var file_SmsPushNotice_proto_rawDesc = []byte{
  165. 0x0a, 0x13, 0x53, 0x6d, 0x73, 0x50, 0x75, 0x73, 0x68, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x2e,
  166. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x17, 0x4a, 0x75, 0x62, 0x6f, 0x2e, 0x4a, 0x75, 0x4c, 0x69,
  167. 0x61, 0x6f, 0x2e, 0x49, 0x4d, 0x2e, 0x57, 0x78, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xda,
  168. 0x01, 0x0a, 0x0a, 0x53, 0x6d, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0e, 0x0a,
  169. 0x02, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x49, 0x64, 0x12, 0x16, 0x0a,
  170. 0x06, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x4e,
  171. 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x12, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20,
  172. 0x01, 0x28, 0x05, 0x52, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x44, 0x61, 0x74,
  173. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x44, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a,
  174. 0x07, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
  175. 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x52, 0x65, 0x61, 0x64, 0x18,
  176. 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x52, 0x65, 0x61, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x54,
  177. 0x68, 0x72, 0x65, 0x61, 0x64, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x54,
  178. 0x68, 0x72, 0x65, 0x61, 0x64, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x53, 0x69, 0x6d, 0x49, 0x64,
  179. 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x53, 0x69, 0x6d, 0x49, 0x64, 0x12, 0x1c, 0x0a,
  180. 0x09, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x05,
  181. 0x52, 0x09, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x22, 0x87, 0x01, 0x0a, 0x14,
  182. 0x53, 0x6d, 0x73, 0x50, 0x75, 0x73, 0x68, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x4d, 0x65, 0x73,
  183. 0x73, 0x61, 0x67, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x57, 0x65, 0x43, 0x68, 0x61, 0x74, 0x49, 0x64,
  184. 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x57, 0x65, 0x43, 0x68, 0x61, 0x74, 0x49, 0x64,
  185. 0x12, 0x12, 0x0a, 0x04, 0x49, 0x4d, 0x45, 0x49, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
  186. 0x49, 0x4d, 0x45, 0x49, 0x12, 0x3f, 0x0a, 0x08, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73,
  187. 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x4a, 0x75, 0x62, 0x6f, 0x2e, 0x4a, 0x75,
  188. 0x4c, 0x69, 0x61, 0x6f, 0x2e, 0x49, 0x4d, 0x2e, 0x57, 0x78, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f,
  189. 0x2e, 0x53, 0x6d, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x08, 0x4d, 0x65, 0x73,
  190. 0x73, 0x61, 0x67, 0x65, 0x73, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f, 0x77, 0x6f, 0x72, 0x6b, 0x70,
  191. 0x68, 0x6f, 0x6e, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  192. }
  193. var (
  194. file_SmsPushNotice_proto_rawDescOnce sync.Once
  195. file_SmsPushNotice_proto_rawDescData = file_SmsPushNotice_proto_rawDesc
  196. )
  197. func file_SmsPushNotice_proto_rawDescGZIP() []byte {
  198. file_SmsPushNotice_proto_rawDescOnce.Do(func() {
  199. file_SmsPushNotice_proto_rawDescData = protoimpl.X.CompressGZIP(file_SmsPushNotice_proto_rawDescData)
  200. })
  201. return file_SmsPushNotice_proto_rawDescData
  202. }
  203. var file_SmsPushNotice_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
  204. var file_SmsPushNotice_proto_goTypes = []any{
  205. (*SmsMessage)(nil), // 0: Jubo.JuLiao.IM.Wx.Proto.SmsMessage
  206. (*SmsPushNoticeMessage)(nil), // 1: Jubo.JuLiao.IM.Wx.Proto.SmsPushNoticeMessage
  207. }
  208. var file_SmsPushNotice_proto_depIdxs = []int32{
  209. 0, // 0: Jubo.JuLiao.IM.Wx.Proto.SmsPushNoticeMessage.Messages:type_name -> Jubo.JuLiao.IM.Wx.Proto.SmsMessage
  210. 1, // [1:1] is the sub-list for method output_type
  211. 1, // [1:1] is the sub-list for method input_type
  212. 1, // [1:1] is the sub-list for extension type_name
  213. 1, // [1:1] is the sub-list for extension extendee
  214. 0, // [0:1] is the sub-list for field type_name
  215. }
  216. func init() { file_SmsPushNotice_proto_init() }
  217. func file_SmsPushNotice_proto_init() {
  218. if File_SmsPushNotice_proto != nil {
  219. return
  220. }
  221. type x struct{}
  222. out := protoimpl.TypeBuilder{
  223. File: protoimpl.DescBuilder{
  224. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  225. RawDescriptor: file_SmsPushNotice_proto_rawDesc,
  226. NumEnums: 0,
  227. NumMessages: 2,
  228. NumExtensions: 0,
  229. NumServices: 0,
  230. },
  231. GoTypes: file_SmsPushNotice_proto_goTypes,
  232. DependencyIndexes: file_SmsPushNotice_proto_depIdxs,
  233. MessageInfos: file_SmsPushNotice_proto_msgTypes,
  234. }.Build()
  235. File_SmsPushNotice_proto = out.File
  236. file_SmsPushNotice_proto_rawDesc = nil
  237. file_SmsPushNotice_proto_goTypes = nil
  238. file_SmsPushNotice_proto_depIdxs = nil
  239. }