springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/enums/PopulPersonTypeEnum.java
@@ -8,18 +8,13 @@ * @author tangxb */ @Getter public enum PopulPersonTypeEnum { HJ(1, "户籍人员"), LS(2, "留守人员"), WD(3, "外地人员"), JW(4, "境外人员"); public enum PopulPersonTypeEnum { HJ(1, "户籍人员"), LS(2, "留守人员"), WD(3, "外地人员"), JW(4, "境外人员"); private final Integer code; private final String name; PopulPersonTypeEnum(Integer code, String name) { PopulPersonTypeEnum(Integer code, String name) { this.code = code; this.name = name; }