| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.siwei.apply.enums;
- /**
- *
- * 国有建设用地使用权及房屋所有权首次登记
- *
- */
- public enum GyjsydjfwscdjAttachmentNameEnum {
- NAME_1("1", "主体资格文件", "", "国有建设用地使用权首次登记阶段资料"),
- NAME_2("2", "权属来源证明", "", "国有建设用地使用权首次登记阶段资料"),
- NAME_3("3", "竣工验收材料", "", "国有建设用地使用权首次登记阶段资料"),
- NAME_4("4", "测绘成果", "", "国有建设用地使用权首次登记阶段资料"),
- NAME_5("5", "其它材料", "", "国有建设用地使用权首次登记阶段资料"),
- NAME_6("6", "登记结果", "", "国有建设用地使用权首次登记阶段资料");
- private final String name;
- private final String code;
- private final String relationName;
- private final String parentName;
- GyjsydjfwscdjAttachmentNameEnum(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;
- }
- }
|