lidongdong
2023-01-30 63c985f072826e7c82f51b0f415454a066fd8c56
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;
    }
}