๐ฆ Banks
Bank Accounts Entity
The following properties for fin_bank_accounts table:
| Name | Type | Description | Unique | Required |
|---|---|---|---|---|
| bank_account_id | INT | Primary key, unique bank account ID | โ | โ |
| bank_account_number | String(16) | Account number of the bank account | โ | โ |
| bank_account_name | String | Receiver name of the bank account | โ | โ |
| bank_type_id | INT | Foreign key from Bank Type table | โ | โ |
| user_id | INT | Foreign key from User table | โ | โ |
| bank_id | INT | Foreign key from Bank table | โ | โ |
Banks Entity
The following properties for fin_banks table:
| Name | Type | Description | Unique | Required |
|---|---|---|---|---|
| bank_id | INT | Primary key, unique bank ID | โ | โ |
| bank_name | String | Name of the bank | โ | โ |
| bank_code | String | Code of the bank | โ | โ |
| bank_logo | String | Logo of the bank | โ | โ |
| bank_is_active | boolean | Is bank active (Default: True) | โ | โ |
Bank Type Entity
The following properties for fin_bank_types table:
| Name | Type | Description | Unique | Required |
|---|---|---|---|---|
| bank_type_id | INT | Primary key, unique bank ID | โ | โ |
| bank_type_name | String | Name of the bank | โ | โ |
| bank_type_is_public | boolean | Is bank type public (Default: False) | โ | โ |
Default Entity:
[{'Admin',true},{'Nasabah',false}]
NOTE - Unique: Ensures the uniqueness of the values entered into a property of a database table. - Required: Ensures that the values entered a property of a database table can NOT be NULL.
Powered by Berani Digital ID ยฉ 2024