package com.casic.missiles.enums; public enum EquipmentApplyEnum { REPLACE_APPLY("1", "更换申请","ghsq"), SUSPEND_APPLY("2", "暂停申请","ztsq"), REVOKE_APPLY("3", "撤销申请","cxsq"), RECOVERY_APPLY("4", "恢复申请","hfsq"), REVIEW_APPLY("5", "复查申请","fcsq"), COLLECT_APPLY("1", "设备领用申请","lysq"), BORROW_APPLY("2", "设备借用申请","jysq"), IDLE_APPLY("3", "设备闲置申请","xzsq"), SEAL_APPLY("4", "设备封存申请","fcsq"), UNSEAL_APPLY("5", "设备启封申请","qfsq"), SCRAP_APPLY("6", "设备报废申请","bfsq"), MANAGEMENT_APPLY("7", "设备处置申请","czsq"), WAIT_BORROWED("1", "待借用",null), ALREADY_BORROWED("2", "已借用",null), ALREADY_RETURN("3", "已归还",null); private String code; private String value; private String prefix; EquipmentApplyEnum(String code, String value,String prefix) { this.code = code; this.value = value; this.prefix = prefix; } public String getCode() { return code; } public String getValue() { return value; } public String getPrefix() { return prefix; } }