admin
2021-01-25 2ba431be9c12a79783e0f9ef249292b7fa95f2a1
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;
    }
}