app/
โโโ src/
โโโ main/
โโโ java/com/exemplo/app/
โโโ presentation/ ๐ Presentation layer (UI)
โ โโโ components/ -> Reusable Composables
โ โโโ screens/ -> Screens (each with its ViewModel)
โ โ โโโ home/
| Prefix | Meaning / Usage | Example |
|---|---|---|
tb_ |
Table (commonly used for main data tables) | tb_users, tb_orders |
ref_ |
Reference / lookup (static or predefined values) | ref_status, ref_roles |
rel_ |
Relationship between two tables (many-to-many) | rel_user_roles, rel_product_tags |
log_ |
Log or history of actions | log_access, log_errors |
tmp_ |
Temporary (transitional or processing data) | tmp_import_data |
cfg_ |
Configuration or system settings | cfg_settings, cfg_limits |