no
DESKTOP-71BH0QO\L、ming
2021-04-27 76a99ddb2e2c7dcbf6488ece6dcc8a6e5cd0ea5a
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;
    }
}