xiangpei
2025-04-18 23da057f35cea1ee061adc23ccb9b7511635133b
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
package com.monkeylessey.gen.enums;
 
/**
 * 代码生成文件类型
 *
 * @author xp
 * @data 2023/4/1
 */
public enum GenFileTypeEnum {
    FORM("Form", "表单"),
    VO("VO", "数据类"),
    QUERY("Query", "查询类"),
    VIEW("View", "前端展示页"),
    DIALOG("Dialog", "前端弹出框"),
    TABLE("Table", "前端表格数据页"),
    STORE("index", "前端vuex.js"),
    API("Api", "前端api.js");
 
    private final String value;
 
    private final String des;
 
    GenFileTypeEnum(String value, String des) {
        this.value = value;
        this.des = des;
    }
 
    public String getValue() {
        return value;
    }
 
    public String getDes() {
        return des;
    }
}