zhangzengfei
2023-09-04 e8e536d1cb52d2126c8c7ce2ba1c7a76f7208678
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: app-vamicro.proto
 
package proto
 
import (
    fmt "fmt"
    proto "github.com/golang/protobuf/proto"
    math "math"
)
 
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
 
// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
 
type App struct {
    Id                   string   `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
    Name                 string   `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
    Package              string   `protobuf:"bytes,3,opt,name=package,proto3" json:"package,omitempty"`
    Type                 string   `protobuf:"bytes,4,opt,name=type,proto3" json:"type,omitempty"`
    Url                  string   `protobuf:"bytes,5,opt,name=url,proto3" json:"url,omitempty"`
    Title                string   `protobuf:"bytes,6,opt,name=title,proto3" json:"title,omitempty"`
    Width                int32    `protobuf:"varint,7,opt,name=width,proto3" json:"width,omitempty"`
    Height               int32    `protobuf:"varint,8,opt,name=height,proto3" json:"height,omitempty"`
    IconBlob             string   `protobuf:"bytes,9,opt,name=iconBlob,proto3" json:"iconBlob,omitempty"`
    Icon                 string   `protobuf:"bytes,10,opt,name=icon,proto3" json:"icon,omitempty"`
    Version              string   `protobuf:"bytes,11,opt,name=version,proto3" json:"version,omitempty"`
    CreateTime           string   `protobuf:"bytes,12,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
    CreateBy             string   `protobuf:"bytes,13,opt,name=create_by,json=createBy,proto3" json:"create_by,omitempty"`
    UpdateTime           string   `protobuf:"bytes,14,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty"`
    UpdateBy             string   `protobuf:"bytes,15,opt,name=update_by,json=updateBy,proto3" json:"update_by,omitempty"`
    IsDefault            bool     `protobuf:"varint,16,opt,name=isDefault,proto3" json:"isDefault,omitempty"`
    IconBlob2            string   `protobuf:"bytes,17,opt,name=iconBlob2,proto3" json:"iconBlob2,omitempty"`
    XXX_NoUnkeyedLiteral struct{} `json:"-"`
    XXX_unrecognized     []byte   `json:"-"`
    XXX_sizecache        int32    `json:"-"`
}
 
func (m *App) Reset()         { *m = App{} }
func (m *App) String() string { return proto.CompactTextString(m) }
func (*App) ProtoMessage()    {}
func (*App) Descriptor() ([]byte, []int) {
    return fileDescriptor_0926a1e10188e83f, []int{0}
}
 
func (m *App) XXX_Unmarshal(b []byte) error {
    return xxx_messageInfo_App.Unmarshal(m, b)
}
func (m *App) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    return xxx_messageInfo_App.Marshal(b, m, deterministic)
}
func (m *App) XXX_Merge(src proto.Message) {
    xxx_messageInfo_App.Merge(m, src)
}
func (m *App) XXX_Size() int {
    return xxx_messageInfo_App.Size(m)
}
func (m *App) XXX_DiscardUnknown() {
    xxx_messageInfo_App.DiscardUnknown(m)
}
 
var xxx_messageInfo_App proto.InternalMessageInfo
 
func (m *App) GetId() string {
    if m != nil {
        return m.Id
    }
    return ""
}
 
func (m *App) GetName() string {
    if m != nil {
        return m.Name
    }
    return ""
}
 
func (m *App) GetPackage() string {
    if m != nil {
        return m.Package
    }
    return ""
}
 
func (m *App) GetType() string {
    if m != nil {
        return m.Type
    }
    return ""
}
 
func (m *App) GetUrl() string {
    if m != nil {
        return m.Url
    }
    return ""
}
 
func (m *App) GetTitle() string {
    if m != nil {
        return m.Title
    }
    return ""
}
 
func (m *App) GetWidth() int32 {
    if m != nil {
        return m.Width
    }
    return 0
}
 
func (m *App) GetHeight() int32 {
    if m != nil {
        return m.Height
    }
    return 0
}
 
func (m *App) GetIconBlob() string {
    if m != nil {
        return m.IconBlob
    }
    return ""
}
 
func (m *App) GetIcon() string {
    if m != nil {
        return m.Icon
    }
    return ""
}
 
func (m *App) GetVersion() string {
    if m != nil {
        return m.Version
    }
    return ""
}
 
func (m *App) GetCreateTime() string {
    if m != nil {
        return m.CreateTime
    }
    return ""
}
 
func (m *App) GetCreateBy() string {
    if m != nil {
        return m.CreateBy
    }
    return ""
}
 
func (m *App) GetUpdateTime() string {
    if m != nil {
        return m.UpdateTime
    }
    return ""
}
 
func (m *App) GetUpdateBy() string {
    if m != nil {
        return m.UpdateBy
    }
    return ""
}
 
func (m *App) GetIsDefault() bool {
    if m != nil {
        return m.IsDefault
    }
    return false
}
 
func (m *App) GetIconBlob2() string {
    if m != nil {
        return m.IconBlob2
    }
    return ""
}
 
func init() {
    proto.RegisterType((*App)(nil), "proto.App")
}
 
func init() { proto.RegisterFile("app-vamicro.proto", fileDescriptor_0926a1e10188e83f) }
 
var fileDescriptor_0926a1e10188e83f = []byte{
    // 293 bytes of a gzipped FileDescriptorProto
    0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x44, 0x91, 0xc1, 0x4e, 0xf2, 0x40,
    0x14, 0x85, 0x53, 0x4a, 0x81, 0x5e, 0xfe, 0x1f, 0xe1, 0xc6, 0x98, 0x1b, 0x35, 0x91, 0xb8, 0x62,
    0xa3, 0x0b, 0x7d, 0x02, 0x89, 0x4f, 0x40, 0xdc, 0x9b, 0x69, 0x3b, 0xd2, 0x89, 0x6d, 0x67, 0x52,
    0xa6, 0x98, 0x3e, 0x95, 0xaf, 0x68, 0xe6, 0xde, 0x02, 0xab, 0x9e, 0xf3, 0xcd, 0x39, 0xed, 0x69,
    0x06, 0x56, 0xca, 0xb9, 0xa7, 0xa3, 0xaa, 0x4d, 0xde, 0xda, 0x67, 0xd7, 0x5a, 0x6f, 0x31, 0xe1,
    0xc7, 0xe3, 0x6f, 0x0c, 0xf1, 0x9b, 0x73, 0xb8, 0x80, 0x91, 0x29, 0x28, 0x5a, 0x47, 0x9b, 0x74,
    0x37, 0x32, 0x05, 0x22, 0x8c, 0x1b, 0x55, 0x6b, 0x1a, 0x31, 0x61, 0x8d, 0x04, 0x53, 0xa7, 0xf2,
    0x6f, 0xb5, 0xd7, 0x14, 0x33, 0x3e, 0xd9, 0x90, 0xf6, 0xbd, 0xd3, 0x34, 0x96, 0x74, 0xd0, 0xb8,
    0x84, 0xb8, 0x6b, 0x2b, 0x4a, 0x18, 0x05, 0x89, 0xd7, 0x90, 0x78, 0xe3, 0x2b, 0x4d, 0x13, 0x66,
    0x62, 0x02, 0xfd, 0x31, 0x85, 0x2f, 0x69, 0xba, 0x8e, 0x36, 0xc9, 0x4e, 0x0c, 0xde, 0xc0, 0xa4,
    0xd4, 0x66, 0x5f, 0x7a, 0x9a, 0x31, 0x1e, 0x1c, 0xde, 0xc2, 0xcc, 0xe4, 0xb6, 0xd9, 0x56, 0x36,
    0xa3, 0x94, 0x5f, 0x73, 0xf6, 0x61, 0x45, 0xd0, 0x04, 0xb2, 0x22, 0xe8, 0xb0, 0xf9, 0xa8, 0xdb,
    0x83, 0xb1, 0x0d, 0xcd, 0x65, 0xf3, 0x60, 0xf1, 0x01, 0xe6, 0x79, 0xab, 0x95, 0xd7, 0x9f, 0xde,
    0xd4, 0x9a, 0xfe, 0xf1, 0x29, 0x08, 0xfa, 0x30, 0xb5, 0xc6, 0x3b, 0x48, 0x87, 0x40, 0xd6, 0xd3,
    0x7f, 0xf9, 0x96, 0x80, 0x6d, 0x1f, 0xda, 0x9d, 0x2b, 0xce, 0xed, 0x85, 0xb4, 0x05, 0x9d, 0xda,
    0x43, 0x20, 0xeb, 0xe9, 0x4a, 0xda, 0x02, 0xb6, 0x3d, 0xde, 0x43, 0x6a, 0x0e, 0xef, 0xfa, 0x4b,
    0x75, 0x95, 0xa7, 0xe5, 0x3a, 0xda, 0xcc, 0x76, 0x17, 0xc0, 0xa7, 0xc3, 0x3f, 0xbd, 0xd0, 0x8a,
    0xab, 0x17, 0x90, 0x4d, 0xf8, 0xe2, 0x5e, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0x07, 0x6a, 0x2d,
    0xbb, 0xd4, 0x01, 0x00, 0x00,
}