1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.panzhihua.common.enums;
|
| import lombok.Getter;
|
| /**
| * @Author: llming
| * @Description: 问卷题目类型
| */
| @Getter
| public enum QuestnaireSubType {
| SINGLE(0, "单选"), MULTIPLE(1, "多选"), NARRATION(2, "问答题");
|
| private final int code;
| private final String info;
|
| QuestnaireSubType(int code, String info) {
| this.code = code;
| this.info = info;
| }
| }
|
|