puhanshu
2022-06-09 dba27fcf4714a1f4153621c610a9342c60b47c77
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;
    }