cn.featherfly.common.model.enums.AuditState Maven / Gradle / Ivy
package cn.featherfly.common.model.enums;
import cn.featherfly.common.model.Property;
/**
* audit state.
* 审核状态枚举.
*/
public enum AuditState implements Property {
/**
* 审核中
*/
AUDIT,
/**
* 审核通过
*/
PASS,
/**
* 审核不通过
*/
REJECT;
/**
* {@inheritDoc}
*/
@Override
public Integer value() {
return ordinal();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy