123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // versions:
- // protoc-gen-go v1.36.6
- // protoc v3.19.4
- // source: wecom/WPhoneActionTask.proto
- package wecom
- import (
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- reflect "reflect"
- sync "sync"
- unsafe "unsafe"
- )
- 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)
- )
- type EnumPhoneAction int32
- const (
- EnumPhoneAction_None EnumPhoneAction = 0 // 空
- EnumPhoneAction_Reboot EnumPhoneAction = 1 // 重启手机
- EnumPhoneAction_UploadLog EnumPhoneAction = 2 // 上传日志
- EnumPhoneAction_UploadFile EnumPhoneAction = 3 // 上传本地文件
- EnumPhoneAction_CleanAppCache EnumPhoneAction = 4 // 清除客服系统的图片缓存
- EnumPhoneAction_CleanWxCache EnumPhoneAction = 5 // 清除微信的图片视频缓存
- EnumPhoneAction_CleanFileUrlCache EnumPhoneAction = 6 // 清除手机缓存的文件url(用于防止重复上传)
- )
- // Enum value maps for EnumPhoneAction.
- var (
- EnumPhoneAction_name = map[int32]string{
- 0: "None",
- 1: "Reboot",
- 2: "UploadLog",
- 3: "UploadFile",
- 4: "CleanAppCache",
- 5: "CleanWxCache",
- 6: "CleanFileUrlCache",
- }
- EnumPhoneAction_value = map[string]int32{
- "None": 0,
- "Reboot": 1,
- "UploadLog": 2,
- "UploadFile": 3,
- "CleanAppCache": 4,
- "CleanWxCache": 5,
- "CleanFileUrlCache": 6,
- }
- )
- func (x EnumPhoneAction) Enum() *EnumPhoneAction {
- p := new(EnumPhoneAction)
- *p = x
- return p
- }
- func (x EnumPhoneAction) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (EnumPhoneAction) Descriptor() protoreflect.EnumDescriptor {
- return file_wecom_WPhoneActionTask_proto_enumTypes[0].Descriptor()
- }
- func (EnumPhoneAction) Type() protoreflect.EnumType {
- return &file_wecom_WPhoneActionTask_proto_enumTypes[0]
- }
- func (x EnumPhoneAction) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Use EnumPhoneAction.Descriptor instead.
- func (EnumPhoneAction) EnumDescriptor() ([]byte, []int) {
- return file_wecom_WPhoneActionTask_proto_rawDescGZIP(), []int{0}
- }
- type PhoneActionTaskMessage struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- WxId int64 `protobuf:"varint,1,opt,name=WxId,proto3" json:"WxId,omitempty"`
- Imei string `protobuf:"bytes,2,opt,name=Imei,proto3" json:"Imei,omitempty"` // 备用,用wxid或imei来定位手机
- Action EnumPhoneAction `protobuf:"varint,3,opt,name=Action,proto3,enum=Im.Scrm.Ww.Proto.EnumPhoneAction" json:"Action,omitempty"` // 指令
- StrParam string `protobuf:"bytes,4,opt,name=StrParam,proto3" json:"StrParam,omitempty"` // 字符串参数,后续扩展用
- IntParam int32 `protobuf:"varint,5,opt,name=IntParam,proto3" json:"IntParam,omitempty"` // 整型参数,后续扩展用
- TaskId int64 `protobuf:"varint,6,opt,name=TaskId,proto3" json:"TaskId,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *PhoneActionTaskMessage) Reset() {
- *x = PhoneActionTaskMessage{}
- mi := &file_wecom_WPhoneActionTask_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *PhoneActionTaskMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PhoneActionTaskMessage) ProtoMessage() {}
- func (x *PhoneActionTaskMessage) ProtoReflect() protoreflect.Message {
- mi := &file_wecom_WPhoneActionTask_proto_msgTypes[0]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use PhoneActionTaskMessage.ProtoReflect.Descriptor instead.
- func (*PhoneActionTaskMessage) Descriptor() ([]byte, []int) {
- return file_wecom_WPhoneActionTask_proto_rawDescGZIP(), []int{0}
- }
- func (x *PhoneActionTaskMessage) GetWxId() int64 {
- if x != nil {
- return x.WxId
- }
- return 0
- }
- func (x *PhoneActionTaskMessage) GetImei() string {
- if x != nil {
- return x.Imei
- }
- return ""
- }
- func (x *PhoneActionTaskMessage) GetAction() EnumPhoneAction {
- if x != nil {
- return x.Action
- }
- return EnumPhoneAction_None
- }
- func (x *PhoneActionTaskMessage) GetStrParam() string {
- if x != nil {
- return x.StrParam
- }
- return ""
- }
- func (x *PhoneActionTaskMessage) GetIntParam() int32 {
- if x != nil {
- return x.IntParam
- }
- return 0
- }
- func (x *PhoneActionTaskMessage) GetTaskId() int64 {
- if x != nil {
- return x.TaskId
- }
- return 0
- }
- var File_wecom_WPhoneActionTask_proto protoreflect.FileDescriptor
- const file_wecom_WPhoneActionTask_proto_rawDesc = "" +
- "\n" +
- "\x1cwecom/WPhoneActionTask.proto\x12\x10Im.Scrm.Ww.Proto\"\xcb\x01\n" +
- "\x16PhoneActionTaskMessage\x12\x12\n" +
- "\x04WxId\x18\x01 \x01(\x03R\x04WxId\x12\x12\n" +
- "\x04Imei\x18\x02 \x01(\tR\x04Imei\x129\n" +
- "\x06Action\x18\x03 \x01(\x0e2!.Im.Scrm.Ww.Proto.EnumPhoneActionR\x06Action\x12\x1a\n" +
- "\bStrParam\x18\x04 \x01(\tR\bStrParam\x12\x1a\n" +
- "\bIntParam\x18\x05 \x01(\x05R\bIntParam\x12\x16\n" +
- "\x06TaskId\x18\x06 \x01(\x03R\x06TaskId*\x82\x01\n" +
- "\x0fEnumPhoneAction\x12\b\n" +
- "\x04None\x10\x00\x12\n" +
- "\n" +
- "\x06Reboot\x10\x01\x12\r\n" +
- "\tUploadLog\x10\x02\x12\x0e\n" +
- "\n" +
- "UploadFile\x10\x03\x12\x11\n" +
- "\rCleanAppCache\x10\x04\x12\x10\n" +
- "\fCleanWxCache\x10\x05\x12\x15\n" +
- "\x11CleanFileUrlCache\x10\x06B\x13Z\x11./workphone/wecomb\x06proto3"
- var (
- file_wecom_WPhoneActionTask_proto_rawDescOnce sync.Once
- file_wecom_WPhoneActionTask_proto_rawDescData []byte
- )
- func file_wecom_WPhoneActionTask_proto_rawDescGZIP() []byte {
- file_wecom_WPhoneActionTask_proto_rawDescOnce.Do(func() {
- file_wecom_WPhoneActionTask_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_wecom_WPhoneActionTask_proto_rawDesc), len(file_wecom_WPhoneActionTask_proto_rawDesc)))
- })
- return file_wecom_WPhoneActionTask_proto_rawDescData
- }
- var file_wecom_WPhoneActionTask_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
- var file_wecom_WPhoneActionTask_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
- var file_wecom_WPhoneActionTask_proto_goTypes = []any{
- (EnumPhoneAction)(0), // 0: Im.Scrm.Ww.Proto.EnumPhoneAction
- (*PhoneActionTaskMessage)(nil), // 1: Im.Scrm.Ww.Proto.PhoneActionTaskMessage
- }
- var file_wecom_WPhoneActionTask_proto_depIdxs = []int32{
- 0, // 0: Im.Scrm.Ww.Proto.PhoneActionTaskMessage.Action:type_name -> Im.Scrm.Ww.Proto.EnumPhoneAction
- 1, // [1:1] is the sub-list for method output_type
- 1, // [1:1] is the sub-list for method input_type
- 1, // [1:1] is the sub-list for extension type_name
- 1, // [1:1] is the sub-list for extension extendee
- 0, // [0:1] is the sub-list for field type_name
- }
- func init() { file_wecom_WPhoneActionTask_proto_init() }
- func file_wecom_WPhoneActionTask_proto_init() {
- if File_wecom_WPhoneActionTask_proto != nil {
- return
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: unsafe.Slice(unsafe.StringData(file_wecom_WPhoneActionTask_proto_rawDesc), len(file_wecom_WPhoneActionTask_proto_rawDesc)),
- NumEnums: 1,
- NumMessages: 1,
- NumExtensions: 0,
- NumServices: 0,
- },
- GoTypes: file_wecom_WPhoneActionTask_proto_goTypes,
- DependencyIndexes: file_wecom_WPhoneActionTask_proto_depIdxs,
- EnumInfos: file_wecom_WPhoneActionTask_proto_enumTypes,
- MessageInfos: file_wecom_WPhoneActionTask_proto_msgTypes,
- }.Build()
- File_wecom_WPhoneActionTask_proto = out.File
- file_wecom_WPhoneActionTask_proto_goTypes = nil
- file_wecom_WPhoneActionTask_proto_depIdxs = nil
- }
|