admin
2020-04-20 aa43ebe703d3b28520a8b1e4b852b8beb957c5ca
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
package com.yeshi.fanli.log;
 
//日志类型
public enum LogType {
    mqSend("消息发送"),
    mqConsume("消息消费"),
    taobaoTaoke("淘客api"),
    taobaoTrade("淘宝交易(分享/自购)"),
    taobaoAuth("淘宝授权"),
    taobaoGoods("淘宝商品信息"),
    userLogin("用户登录"),
    
    ;
    
 
    private String desc;
 
    private LogType(String desc) {
        this.desc = desc;
    }
 
    public String getDesc() {
        return desc;
    }
 
}