puhanshu
2022-07-23 bbda2ee1af4e86d76f93e00386d77efb56c60d5f
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;
    }