admin
2020-01-18 43a00f6b852dcf91cf51fb8f1a5c1386ee437a35
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
    }
 
}