-
-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #378 from chatiti/master
feat:Faker for Bank
- Loading branch information
Showing
5 changed files
with
145 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
package data | ||
|
||
var Bank = map[string][]string{ | ||
"name": { | ||
"Agricultural Bank of China", | ||
"BNP Paribas", | ||
"Banco Bilbao Vizcaya Argentaria", | ||
"Banco Santander", | ||
"Bank of America", | ||
"Bank of China", | ||
"Bank of Communications", | ||
"Barclays", | ||
"Capital One Financial Corporation", | ||
"China Citic Bank", | ||
"China Construction Bank Corporation", | ||
"China Everbright Bank", | ||
"China Merchants Bank", | ||
"China Minsheng Bank", | ||
"Citigroup", | ||
"Commonwealth Bank Group", | ||
"Credit Agricole Group", | ||
"Credit Mutuel", | ||
"Deutsche Bank", | ||
"Goldman Sachs", | ||
"Groupe BPCE", | ||
"HDFC Bank", | ||
"HSBC Holdings", | ||
"Hua Xia Bank", | ||
"ING Group", | ||
"Industrial Bank", | ||
"Industrial and Commercial Bank of China", | ||
"Intesa Sanpaolo", | ||
"JP Morgan Chase & Co", | ||
"Lloyds Banking Group", | ||
"Mitsubishi UFJ Financial Group", | ||
"Mizuho Financial Group", | ||
"Morgan Stanley", | ||
"PNC Financial Services Group", | ||
"Ping An Bank", | ||
"Postal Savings Bank of China", | ||
"Rabobank Group", | ||
"Royal Bank of Canada", | ||
"Sberbank", | ||
"Scotiabank", | ||
"Shanghai Pudong Development Bank", | ||
"Societe Generale", | ||
"State Bank of India", | ||
"Sumitomo Mitsui Financial Group", | ||
"Toronto Dominion Bank", | ||
"Truist Bank", | ||
"UBS", | ||
"US Bancorp", | ||
"UniCredit", | ||
"Wells Fargo & Co", | ||
}, | ||
"type": { | ||
"Central Bank", | ||
"Commercial Bank", | ||
"Cooperative Bank", | ||
"Investment Bank", | ||
"Online Bank", | ||
"Policy Bank", | ||
"Private Bank", | ||
"Retail Bank", | ||
"Savings Bank", | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters