project init

This commit is contained in:
limqhz
2020-01-29 21:50:10 +08:00
parent 3d215fe181
commit d4c677d2b5
821 changed files with 111343 additions and 73 deletions

View File

@@ -0,0 +1,34 @@
package com.enums;
/**
* Enum - 删除标志位
*
* @author xingkong1221
* @since 2017-07-04
*/
public enum MemberStatusEnum {
ENABLE(0, "正常"), DISABLE(1, "禁用");
public Byte value;
public String name;
MemberStatusEnum(Integer value, String name) {
this.value = value.byteValue();
this.name = name;
}
public Byte getValue() {
return value;
}
public void setValue(Byte value) {
this.value = value;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}