| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package com.siwei.apply.enums;
- /**
- * 国有建设用地使用权首次登记阶段
- */
- public enum GyjsydscdjAttachmentNameEnum {
- NAME_1("1", "申请表及询问笔录", "", "国有建设用地使用权首次登记阶段资料"),
- NAME_2("2", "主体资格文件", "", "国有建设用地使用权首次登记阶段资料"),
- NAME_3("3", "测绘成果", "", "国有建设用地使用权首次登记阶段资料"),
- NAME_4("4", "土地权属来源证明", "", "国有建设用地使用权首次登记阶段资料"),
- NAME_5("5", "完税凭证", "", "国有建设用地使用权首次登记阶段资料"),
- NAME_6("6", "登记结果", "", "国有建设用地使用权首次登记阶段资料");
- private final String code;
- private final String name;
- private final String relationName;
- private final String parentName;
- GyjsydscdjAttachmentNameEnum(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 GyjsydscdjAttachmentNameEnum fromCode(String code) {
- if (code == null) return null;
- for (GyjsydscdjAttachmentNameEnum e : values()) {
- if (code.equals(e.code)) return e;
- }
- return null;
- }
- }
|