2021SC@SDUSC 源码地址:…\AJ_report\report-master\report-core\src\main\java\com\anjiplus\template\gaea\business\enums\ExportTypeEnum.java 源码内容:
package com.anjiplus.template.gaea.business.enums;
public enum ExportTypeEnum {
GAEA_TEMPLATE_EXCEL("gaea_template_excel", "gaea_template_excel"),
GAEA_TEMPLATE_PDF("gaea_template_pdf", "gaea_template_pdf"),
;
private String codeValue;
private String codeDesc;
private ExportTypeEnum(String codeValue, String codeDesc) {
this.codeValue = codeValue;
this.codeDesc = codeDesc;
}
public String getCodeValue() {
return this.codeValue;
}
public String getCodeDesc() {
return this.codeDesc;
}
}
|