Commit 1c2a1c74 authored by lixuan's avatar lixuan

Merge branch 'dev' into 'main'

Dev

See merge request !41
parents 5984068b 3e3668ae
Pipeline #142949 passed with stages
in 3 minutes and 38 seconds
......@@ -56,7 +56,7 @@ public class HouseEnums {
}
public static String getDescByCode(int code) {
for (HouseResourceAttributeEnum value : HouseResourceAttributeEnum.values()) {
for (HouseResourceTypeEnum value : HouseResourceTypeEnum.values()) {
if (value.getCode() == code) {
return value.getDesc();
}
......@@ -88,7 +88,7 @@ public class HouseEnums {
}
public static String getDescByCode(int code) {
for (HouseResourceAttributeEnum value : HouseResourceAttributeEnum.values()) {
for (DecorationConditionEnum value : DecorationConditionEnum.values()) {
if (value.getCode() == code) {
return value.getDesc();
}
......@@ -127,7 +127,7 @@ public class HouseEnums {
}
public static String getDescByCode(int code) {
for (HouseResourceAttributeEnum value : HouseResourceAttributeEnum.values()) {
for (OrientationEnum value : OrientationEnum.values()) {
if (value.getCode() == code) {
return value.getDesc();
}
......@@ -161,7 +161,7 @@ public class HouseEnums {
}
public static String getDescByCode(int code) {
for (HouseResourceAttributeEnum value : HouseResourceAttributeEnum.values()) {
for (RentalUnitEnum value : RentalUnitEnum.values()) {
if (value.getCode() == code) {
return value.getDesc();
}
......@@ -196,7 +196,7 @@ public class HouseEnums {
}
public static String getDescByCode(int code) {
for (HouseResourceAttributeEnum value : HouseResourceAttributeEnum.values()) {
for (hireStatusTextEnum value : hireStatusTextEnum.values()) {
if (value.getCode() == code) {
return value.getDesc();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment