huanghongfa
2021-09-02 177249c76aeea0b4bf8d8816d4994e3b445b45ce
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;
    }