提交 | 用户 | 时间 | ||
e7c126 | 1 | package com.iailab.module.infra.enums.codegen; |
H | 2 | |
3 | import lombok.AllArgsConstructor; | |
4 | import lombok.Getter; | |
5 | ||
6 | /** | |
7 | * 代码生成的前端类型枚举 | |
8 | * | |
9 | * @author iailab | |
10 | */ | |
11 | @AllArgsConstructor | |
12 | @Getter | |
13 | public enum CodegenFrontTypeEnum { | |
14 | ||
15 | VUE2(10), // Vue2 Element UI 标准模版 | |
16 | VUE3(20), // Vue3 Element Plus 标准模版 | |
17 | VUE3_SCHEMA(21), // Vue3 Element Plus Schema 模版 | |
18 | VUE3_VBEN(30), // Vue3 VBEN 模版 | |
19 | ; | |
20 | ||
21 | /** | |
22 | * 类型 | |
23 | */ | |
24 | private final Integer type; | |
25 | ||
26 | } |