1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.zzg.common.enums;
|
| import lombok.Getter;
|
| @Getter
| public enum HelpTypeEnum {
| NOT_HELP_PERSON("不是救助对象",0),
| IS_HELP_PERSON("是救助对象",1);
| private final String text;
|
| private final Integer value;
|
| HelpTypeEnum(String text, Integer value) {
| this.text = text;
| this.value = value;
| }
| }
|
|