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
| package jnpf.base.model;
| /**
| * 模板类型
| *
| * @author JNPF开发平台组
| * @version V3.2.9
| * @copyright 引迈信息技术有限公司(https://www.jnpfsoft.com)
| * @date 2021/12/4
| */
| public enum VisualWebTypeEnum {
| /**
| * 模板类型
| */
| FORM(1,"表单"),
| FORM_LIST(2,"列表"),
| DATA_VIEW(4,"视图");
|
| VisualWebTypeEnum(Integer type, String modelName) {
| this.type = type;
| this.modelName = modelName;
| }
|
| public Integer getType() {
| return type;
| }
|
| public String getModelName() {
| return modelName;
| }
|
| private Integer type;
| private String modelName;
|
| }
|
|