归档关联
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…
Reference in New Issue