归档关联

new
JiilingLee 1 year ago
parent 5a98e6048a
commit b7bde1be22

@ -0,0 +1,33 @@
package cn.iocoder.yudao.module.archives.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
*
*/
@AllArgsConstructor
@Getter
public enum ArchivesTypeEnum {
ACCOUNTING_OTHER("archives_other", "其它会计档案"),
ACCOUNTING_BOOK("accounting_book", "会计账簿档案"),
ACCOUNTING_VOUCHER("accounting_voucher", "会计凭证档案"),
ACCOUNTING_REPORT("accounting_report", "会计报表档案"),
ELECTRONIC_OTHER("electronic_other", "其它电子档案"),
ELECTRONI_EMPLOYEE("electronic_employee", "员工档案"),
ELECTRONI_CUSTOMER_COMPLAINT("electronic_customer_complaint", "客诉档案"),
ELECTRONI_CONTRACTS("electronic_contracts", "合同档案"),
ELECTRONI_CONSULTATION("electronic_consultation", "咨询档案"),
ELECTRONI_ASSETS("electronic_assets", "资产档案");
/**
*
*/
private final String value;
/**
*
*/
private final String name;
}
Loading…
Cancel
Save