Commit 8b228198 authored by lixinglin's avatar lixinglin

add statusEnum

parent 8b2ac6ef
package com.lyy.admin.enumerate;
public enum DevelopmentStatusEnum {
NOAUTHENTICATION(0,"未认知"),
AUTHENTICATION(1,"认证");
private Integer code;
private String name;
DevelopmentStatusEnum(Integer typeId, String name) {
this.code = typeId;
this.name = name;
}
public Integer getCode() {
return code;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment