All Downloads are FREE. Search and download functionalities are using the official Maven repository.

k.e.book.common.enums.FaceStatus Maven / Gradle / Ivy

package k.e.book.common.enums;

import lombok.Getter;

@Getter
public enum FaceStatus {
    NOT_AUTH(1)//没有实名
    ;
    private final Integer state;

    FaceStatus(Integer s) {
        this.state = s;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy