This commit is contained in:
dute7liang
2023-12-19 22:25:27 +08:00
parent 5676aa7fde
commit 5b04a92a55
385 changed files with 31644 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
package com.bashi.dk.enums;
public enum BankTypeEnums {
PBC("中国人民银行"),
ICBC("中国工商银行"),
CCB("中国建设银行"),
HSBC("汇丰银行"),
BOC("中国银行"),
ABC("中国农业银行"),
BC("交通银行"),
ZS_CMB("招商银行"),
CMB("中国民生银行"),
CITIC("中信银行"),
;
private final String name;
BankTypeEnums(String name) {
this.name = name;
}
public String getName() {
return name;
}
}