101captain
2022-05-27 84b51d9bfddcc8da58823fde1b322a8168db5cff
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/enums/OpsHouseStatus.java
@@ -8,15 +8,13 @@
 * @author huanghongfa
 */
@Getter
public enum OpsHouseStatus
{
public enum OpsHouseStatus {
    AUDIT(0, "待审核"), GROUNDING(1, "已上架"), REJECTED(2, "已驳回"), UNDERCARRIAGE(2, "已下架");
    private final int code;
    private final String info;
    OpsHouseStatus(int code, String info)
    {
    OpsHouseStatus(int code, String info) {
        this.code = code;
        this.info = info;
    }