admin
2020-04-27 cc44f797c5a0a2f462c3426f477c00737fbf79b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.yeshi.fanli.service.manger;
 
/**
 * 粘贴板的内容类型
 * @author Administrator
 *
 */
public enum ClipboardContentType {
 
    systemToken("自有口令"), text("文本"), link("链接"), taoBaoToken("淘口令");
 
    private String desc;
 
    private ClipboardContentType(String desc) {
        this.desc = desc;
    }
 
    public String getDesc() {
        return desc;
    }
}