Added Status in Amendment

This commit is contained in:
harish
2024-10-30 10:48:22 +05:30
parent 2f68329eee
commit 163ca6fe43
14 changed files with 107 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
package net.gepafin.tendermanagement.enums;
import com.fasterxml.jackson.annotation.JsonValue;
public enum ApplicationAmendmentRequestEnum {
AWATING("AWATING"),
RESPONSE_RECEIVED("RESPONSE_RECEIVED"),
CLOSE("CLOSE"),
EXPIRED("EXPIRED");
private String value;
ApplicationAmendmentRequestEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
}