101captain
2021-10-08 9eadafbf5e17bec0f9ff54f1f2cc3b9d8f5abb73
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;
    }
}