1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| package com.zzg.common.enums;
|
| import lombok.Getter;
|
| @Getter
| public enum SettledProcessEnum {
| NOT_SETTLE(0,"未安置"),
| SETTLE(1,"安置");
|
| private final Integer value;
|
| private final String text;
|
| SettledProcessEnum(Integer value, String text) {
| this.value = value;
| this.text = text;
| }
| }
|
|