liuxiaolong
2020-05-27 0b026a39029cf04954e2fc2ffe52e40720a7faa7
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: log.proto
 
package log
 
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 LogType int32
 
const (
    LogType_Other     LogType = 0
    LogType_Login     LogType = 1
    LogType_Operate   LogType = 2
    LogType_Exception LogType = 3
)
 
var LogType_name = map[int32]string{
    0: "Other",
    1: "Login",
    2: "Operate",
    3: "Exception",
}
 
var LogType_value = map[string]int32{
    "Other":     0,
    "Login":     1,
    "Operate":   2,
    "Exception": 3,
}
 
func (x LogType) String() string {
    return proto.EnumName(LogType_name, int32(x))
}
 
func (LogType) EnumDescriptor() ([]byte, []int) {
    return fileDescriptor_a153da538f858886, []int{0}
}
 
type Log struct {
    Type                 int32    `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
    SubType              int32    `protobuf:"varint,2,opt,name=subType,proto3" json:"subType,omitempty"`
    UserId               string   `protobuf:"bytes,3,opt,name=userId,proto3" json:"userId,omitempty"`
    Username             string   `protobuf:"bytes,4,opt,name=username,proto3" json:"username,omitempty"`
    TrueName             string   `protobuf:"bytes,5,opt,name=trueName,proto3" json:"trueName,omitempty"`
    Module               string   `protobuf:"bytes,6,opt,name=module,proto3" json:"module,omitempty"`
    Time                 string   `protobuf:"bytes,7,opt,name=time,proto3" json:"time,omitempty"`
    Msg                  string   `protobuf:"bytes,8,opt,name=msg,proto3" json:"msg,omitempty"`
    IsSuccess            bool     `protobuf:"varint,9,opt,name=isSuccess,proto3" json:"isSuccess,omitempty"`
    Ip                   string   `protobuf:"bytes,10,opt,name=ip,proto3" json:"ip,omitempty"`
    Id                   string   `protobuf:"bytes,11,opt,name=id,proto3" json:"id,omitempty"`
    XXX_NoUnkeyedLiteral struct{} `json:"-"`
    XXX_unrecognized     []byte   `json:"-"`
    XXX_sizecache        int32    `json:"-"`
}
 
func (m *Log) Reset()         { *m = Log{} }
func (m *Log) String() string { return proto.CompactTextString(m) }
func (*Log) ProtoMessage()    {}
func (*Log) Descriptor() ([]byte, []int) {
    return fileDescriptor_a153da538f858886, []int{0}
}
 
func (m *Log) XXX_Unmarshal(b []byte) error {
    return xxx_messageInfo_Log.Unmarshal(m, b)
}
func (m *Log) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    return xxx_messageInfo_Log.Marshal(b, m, deterministic)
}
func (m *Log) XXX_Merge(src proto.Message) {
    xxx_messageInfo_Log.Merge(m, src)
}
func (m *Log) XXX_Size() int {
    return xxx_messageInfo_Log.Size(m)
}
func (m *Log) XXX_DiscardUnknown() {
    xxx_messageInfo_Log.DiscardUnknown(m)
}
 
var xxx_messageInfo_Log proto.InternalMessageInfo
 
func (m *Log) GetType() int32 {
    if m != nil {
        return m.Type
    }
    return 0
}
 
func (m *Log) GetSubType() int32 {
    if m != nil {
        return m.SubType
    }
    return 0
}
 
func (m *Log) GetUserId() string {
    if m != nil {
        return m.UserId
    }
    return ""
}
 
func (m *Log) GetUsername() string {
    if m != nil {
        return m.Username
    }
    return ""
}
 
func (m *Log) GetTrueName() string {
    if m != nil {
        return m.TrueName
    }
    return ""
}
 
func (m *Log) GetModule() string {
    if m != nil {
        return m.Module
    }
    return ""
}
 
func (m *Log) GetTime() string {
    if m != nil {
        return m.Time
    }
    return ""
}
 
func (m *Log) GetMsg() string {
    if m != nil {
        return m.Msg
    }
    return ""
}
 
func (m *Log) GetIsSuccess() bool {
    if m != nil {
        return m.IsSuccess
    }
    return false
}
 
func (m *Log) GetIp() string {
    if m != nil {
        return m.Ip
    }
    return ""
}
 
func (m *Log) GetId() string {
    if m != nil {
        return m.Id
    }
    return ""
}
 
type FindLogListReq struct {
    UserId               string   `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
    Type                 int32    `protobuf:"varint,2,opt,name=type,proto3" json:"type,omitempty"`
    Page                 int32    `protobuf:"varint,3,opt,name=page,proto3" json:"page,omitempty"`
    Size                 int32    `protobuf:"varint,4,opt,name=size,proto3" json:"size,omitempty"`
    Module               string   `protobuf:"bytes,5,opt,name=module,proto3" json:"module,omitempty"`
    StartTime            string   `protobuf:"bytes,6,opt,name=startTime,proto3" json:"startTime,omitempty"`
    EndTime              string   `protobuf:"bytes,7,opt,name=endTime,proto3" json:"endTime,omitempty"`
    InputText            string   `protobuf:"bytes,8,opt,name=inputText,proto3" json:"inputText,omitempty"`
    XXX_NoUnkeyedLiteral struct{} `json:"-"`
    XXX_unrecognized     []byte   `json:"-"`
    XXX_sizecache        int32    `json:"-"`
}
 
func (m *FindLogListReq) Reset()         { *m = FindLogListReq{} }
func (m *FindLogListReq) String() string { return proto.CompactTextString(m) }
func (*FindLogListReq) ProtoMessage()    {}
func (*FindLogListReq) Descriptor() ([]byte, []int) {
    return fileDescriptor_a153da538f858886, []int{1}
}
 
func (m *FindLogListReq) XXX_Unmarshal(b []byte) error {
    return xxx_messageInfo_FindLogListReq.Unmarshal(m, b)
}
func (m *FindLogListReq) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    return xxx_messageInfo_FindLogListReq.Marshal(b, m, deterministic)
}
func (m *FindLogListReq) XXX_Merge(src proto.Message) {
    xxx_messageInfo_FindLogListReq.Merge(m, src)
}
func (m *FindLogListReq) XXX_Size() int {
    return xxx_messageInfo_FindLogListReq.Size(m)
}
func (m *FindLogListReq) XXX_DiscardUnknown() {
    xxx_messageInfo_FindLogListReq.DiscardUnknown(m)
}
 
var xxx_messageInfo_FindLogListReq proto.InternalMessageInfo
 
func (m *FindLogListReq) GetUserId() string {
    if m != nil {
        return m.UserId
    }
    return ""
}
 
func (m *FindLogListReq) GetType() int32 {
    if m != nil {
        return m.Type
    }
    return 0
}
 
func (m *FindLogListReq) GetPage() int32 {
    if m != nil {
        return m.Page
    }
    return 0
}
 
func (m *FindLogListReq) GetSize() int32 {
    if m != nil {
        return m.Size
    }
    return 0
}
 
func (m *FindLogListReq) GetModule() string {
    if m != nil {
        return m.Module
    }
    return ""
}
 
func (m *FindLogListReq) GetStartTime() string {
    if m != nil {
        return m.StartTime
    }
    return ""
}
 
func (m *FindLogListReq) GetEndTime() string {
    if m != nil {
        return m.EndTime
    }
    return ""
}
 
func (m *FindLogListReq) GetInputText() string {
    if m != nil {
        return m.InputText
    }
    return ""
}
 
type FindLogListReply struct {
    Total                int32    `protobuf:"varint,1,opt,name=total,proto3" json:"total,omitempty"`
    DataList             []*Log   `protobuf:"bytes,2,rep,name=dataList,proto3" json:"dataList,omitempty"`
    XXX_NoUnkeyedLiteral struct{} `json:"-"`
    XXX_unrecognized     []byte   `json:"-"`
    XXX_sizecache        int32    `json:"-"`
}
 
func (m *FindLogListReply) Reset()         { *m = FindLogListReply{} }
func (m *FindLogListReply) String() string { return proto.CompactTextString(m) }
func (*FindLogListReply) ProtoMessage()    {}
func (*FindLogListReply) Descriptor() ([]byte, []int) {
    return fileDescriptor_a153da538f858886, []int{2}
}
 
func (m *FindLogListReply) XXX_Unmarshal(b []byte) error {
    return xxx_messageInfo_FindLogListReply.Unmarshal(m, b)
}
func (m *FindLogListReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    return xxx_messageInfo_FindLogListReply.Marshal(b, m, deterministic)
}
func (m *FindLogListReply) XXX_Merge(src proto.Message) {
    xxx_messageInfo_FindLogListReply.Merge(m, src)
}
func (m *FindLogListReply) XXX_Size() int {
    return xxx_messageInfo_FindLogListReply.Size(m)
}
func (m *FindLogListReply) XXX_DiscardUnknown() {
    xxx_messageInfo_FindLogListReply.DiscardUnknown(m)
}
 
var xxx_messageInfo_FindLogListReply proto.InternalMessageInfo
 
func (m *FindLogListReply) GetTotal() int32 {
    if m != nil {
        return m.Total
    }
    return 0
}
 
func (m *FindLogListReply) GetDataList() []*Log {
    if m != nil {
        return m.DataList
    }
    return nil
}
 
func init() {
    proto.RegisterEnum("log.LogType", LogType_name, LogType_value)
    proto.RegisterType((*Log)(nil), "log.Log")
    proto.RegisterType((*FindLogListReq)(nil), "log.FindLogListReq")
    proto.RegisterType((*FindLogListReply)(nil), "log.FindLogListReply")
}
 
func init() { proto.RegisterFile("log.proto", fileDescriptor_a153da538f858886) }
 
var fileDescriptor_a153da538f858886 = []byte{
    // 407 bytes of a gzipped FileDescriptorProto
    0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x52, 0xcd, 0x6a, 0xdc, 0x30,
    0x10, 0x8e, 0xec, 0xf5, 0xae, 0x3d, 0x4b, 0x83, 0x99, 0xfe, 0x20, 0x42, 0x0e, 0xcb, 0xd2, 0xc3,
    0xd2, 0x43, 0x0e, 0xe9, 0x31, 0xe7, 0x16, 0x02, 0x26, 0x01, 0x67, 0x5f, 0xc0, 0x59, 0x0f, 0xaa,
    0xc0, 0x6b, 0xa9, 0x96, 0x5c, 0xb2, 0x7d, 0xcc, 0xbe, 0x50, 0x8b, 0xc6, 0xfb, 0x63, 0xd3, 0xdb,
    0xf7, 0x23, 0x24, 0x7d, 0xdf, 0x0c, 0x64, 0x8d, 0x51, 0x77, 0xb6, 0x33, 0xde, 0x60, 0xdc, 0x18,
    0xb5, 0xfe, 0x2b, 0x20, 0x2e, 0x8c, 0x42, 0x84, 0x99, 0x3f, 0x58, 0x92, 0x62, 0x25, 0x36, 0x49,
    0xc9, 0x18, 0x25, 0x2c, 0x5c, 0xff, 0xba, 0x0d, 0x72, 0xc4, 0xf2, 0x89, 0xe2, 0x27, 0x98, 0xf7,
    0x8e, 0xba, 0xc7, 0x5a, 0xc6, 0x2b, 0xb1, 0xc9, 0xca, 0x23, 0xc3, 0x1b, 0x48, 0x03, 0x6a, 0xab,
    0x3d, 0xc9, 0x19, 0x3b, 0x67, 0x1e, 0x3c, 0xdf, 0xf5, 0xf4, 0x14, 0xbc, 0x64, 0xf0, 0x4e, 0x3c,
    0xdc, 0xb7, 0x37, 0x75, 0xdf, 0x90, 0x9c, 0x0f, 0xf7, 0x0d, 0x8c, 0x7f, 0xa5, 0xf7, 0x24, 0x17,
    0xac, 0x32, 0xc6, 0x1c, 0xe2, 0xbd, 0x53, 0x32, 0x65, 0x29, 0x40, 0xbc, 0x85, 0x4c, 0xbb, 0x97,
    0x7e, 0xb7, 0x23, 0xe7, 0x64, 0xb6, 0x12, 0x9b, 0xb4, 0xbc, 0x08, 0x78, 0x0d, 0x91, 0xb6, 0x12,
    0xf8, 0x78, 0xa4, 0x2d, 0xf3, 0x5a, 0x2e, 0x8f, 0xbc, 0x5e, 0xff, 0x11, 0x70, 0xfd, 0x5d, 0xb7,
    0x75, 0x61, 0x54, 0xa1, 0x9d, 0x2f, 0xe9, 0xe7, 0x28, 0x9e, 0x98, 0xc4, 0x3b, 0x95, 0x14, 0x8d,
    0x4a, 0x42, 0x98, 0xd9, 0x4a, 0x11, 0x17, 0x91, 0x94, 0x8c, 0x83, 0xe6, 0xf4, 0xef, 0xa1, 0x82,
    0xa4, 0x64, 0x3c, 0x8a, 0x98, 0x4c, 0x22, 0xde, 0x42, 0xe6, 0x7c, 0xd5, 0xf9, 0x6d, 0xc8, 0x39,
    0xa4, 0xbf, 0x08, 0x61, 0x04, 0xd4, 0xd6, 0xdb, 0x4b, 0x07, 0x27, 0xca, 0xa1, 0x5b, 0xdb, 0xfb,
    0x2d, 0xbd, 0xf9, 0x63, 0x19, 0x17, 0x61, 0xfd, 0x04, 0xf9, 0x24, 0x93, 0x6d, 0x0e, 0xf8, 0x01,
    0x12, 0x6f, 0x7c, 0xd5, 0x1c, 0x67, 0x3c, 0x10, 0xfc, 0x0c, 0x69, 0x5d, 0xf9, 0x2a, 0x1c, 0x93,
    0xd1, 0x2a, 0xde, 0x2c, 0xef, 0xd3, 0xbb, 0xb0, 0x23, 0x85, 0x51, 0xe5, 0xd9, 0xf9, 0xf2, 0x00,
    0x8b, 0xc2, 0x28, 0x9e, 0x7d, 0x06, 0xc9, 0xb3, 0xff, 0x41, 0x5d, 0x7e, 0x15, 0x60, 0x61, 0x94,
    0x6e, 0x73, 0x81, 0x4b, 0x58, 0x3c, 0x5b, 0xea, 0x2a, 0x4f, 0x79, 0x84, 0xef, 0x20, 0xfb, 0xf6,
    0xb6, 0x23, 0xeb, 0xb5, 0x69, 0xf3, 0xf8, 0xfe, 0x11, 0xa0, 0x30, 0xea, 0x85, 0xba, 0x5f, 0x7a,
    0x47, 0xf8, 0x00, 0xcb, 0xd1, 0xd7, 0xf0, 0x3d, 0xbf, 0x36, 0x1d, 0xc0, 0xcd, 0xc7, 0xff, 0x45,
    0xdb, 0x1c, 0xd6, 0x57, 0xaf, 0x73, 0x5e, 0xdd, 0xaf, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0xf0,
    0x79, 0xa8, 0x7d, 0xc7, 0x02, 0x00, 0x00,
}