package com.tanpu.community.api.enums;
public enum TopicStatusEnum {
HOTTEST(1,"最热"),
NEWEST(2,"最新");;
private Integer code;
private String type;
TopicStatusEnum(Integer code, String type) {
this.code = code;
this.type = type;
}
public Integer getCode() {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
-
刘基明 authored53c6bae3