package com.casic.missiles.enums; public enum StandardEquipmentApplyEnum { StandardApplyTypeEnum("1", "更换申请"), StandardApplyTypeEnum2("2", "暂停申请"), StandardApplyTypeEnum3("3", "撤销申请"), StandardApplyTypeEnum4("4", "恢复申请"), StandardApplyTypeEnum5("5", "复查申请"); private String code; private String value; StandardEquipmentApplyEnum(String code, String value) { this.code = code; this.value = value; } public String getCode() { return code; } public String getValue() { return value; } }