| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.siwei.apply.enums;
- /**
- * 建设用地规划许可阶段
- */
- public enum JsydghxkAttachmentNameEnum {
- NAME_1("1", "建设项目用地预审(选址意见书)申请报告", "", "用地报批阶段资料"),
- NAME_2("2", "项目建设依据", "", "用地报批阶段资料"),
- NAME_3("3", "测量报告", "", "用地报批阶段资料"),
- NAME_4("4", "相关规划图纸", "", "用地报批阶段资料"),
- NAME_5("5", "节地专章", "", "用地报批阶段资料"),
- NAME_6("6", "项目图形", "", "用地报批阶段资料"),
- NAME_7("7", "建设项目用地预审与选址意见书", "", "用地报批阶段资料");
- private final String name;
- private final String code;
- private final String relationName;
- private final String parentName;
- JsydghxkAttachmentNameEnum(String code, String name,String relationName, String parentName) {
- this.code = code;
- this.name = name;
- this.relationName = relationName;
- this.parentName = parentName;
- }
- public String getName() {
- return this.name;
- }
- public String getCode() {
- return this.code;
- }
- public String getRelationName() {
- return this.relationName;
- }
- public String getParentName() {
- return this.parentName;
- }
- public static JsydghxkAttachmentNameEnum fromCode(String code) {
- if (code == null) return null;
- for (JsydghxkAttachmentNameEnum e : values()) {
- if (code.equals(e.code)) return e;
- }
- return null;
- }
- }
|