User-Management

This commit is contained in:
harish
2024-08-22 17:07:25 +05:30
parent cbd160fa14
commit ad8d580528
13 changed files with 98 additions and 35 deletions

View File

@@ -58,19 +58,4 @@ public class UserEntity extends BaseEntity {
@Column(name = "COUNTRY", length = 50, nullable = true)
private String country;
public enum UserStatusEnum {
ACTIVE("ACTIVE"),
INACTIVE("INACTIVE");
private String value;
UserStatusEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
}
}