|
|
@ -1816,12 +1816,17 @@ public class WmsEnumUtil {
|
|
|
|
|
|
|
|
|
|
|
|
private String code;
|
|
|
|
private String code;
|
|
|
|
private String description;
|
|
|
|
private String description;
|
|
|
|
|
|
|
|
int value;
|
|
|
|
|
|
|
|
|
|
|
|
COMMON_SEQ(String code, String description) {
|
|
|
|
COMMON_SEQ(String code, String description) {
|
|
|
|
this.code = code;
|
|
|
|
this.code = code;
|
|
|
|
this.description = description;
|
|
|
|
this.description = description;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public int getValue() {
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getCode() {
|
|
|
|
public String getCode() {
|
|
|
|
return code;
|
|
|
|
return code;
|
|
|
|
}
|
|
|
|
}
|
|
|
|