huanghongfa
2021-10-09 2b72e2b592f642b23e5c78a3ffdab3fc1fafba11
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;
    }
}