diff --git a/app/Enums/Bank.php b/app/Enums/Bank.php index a9fc372e..076fb6a8 100644 --- a/app/Enums/Bank.php +++ b/app/Enums/Bank.php @@ -7,15 +7,15 @@ enum Bank { case ABC; case ICBC; case BOC; - case COMM; - case CMB; + case BOCO; + case CMBCHINA; case CMBC; case CIB; case CITIC; case SPDB; case CEB; case PSBC; - case PINGANBK; + case SDB; /** * @return string @@ -50,15 +50,15 @@ enum Bank { static::ABC->name => '中国农业银行', static::ICBC->name => '中国工商银行', static::BOC->name => '中国银行', - static::COMM->name => '交通银行', - static::CMB->name => '招商银行', + static::BOCO->name => '交通银行', + static::CMBCHINA->name => '招商银行', static::CMBC->name => '民生银行', static::CIB->name => '兴业银行', static::CITIC->name => '中信实业银行', static::SPDB->name => '上海浦东发展银行', static::CEB->name => '光大银行', static::PSBC->name => '邮政储蓄银行', - static::PINGANBK->name => '平安银行', + static::SDB->name => '平安银行', ]; } }