1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.zzg.common.enums;
|
|
| import lombok.Getter;
|
| @Getter
| public enum HouseSearchStatusEnum {
| NOT_SEARCH("未调查",0),
| SEARCHED("调查过",1),
| COMPLETE_ASSESSMENT("完成评估",2),
| ;
| private final String text;
|
| private final int value;
|
| HouseSearchStatusEnum(String text, int value) {
| this.text = text;
| this.value = value;
| }
| }
|
|