I'm already using DTO's for data transfer over a network. Now I'm also introducing different DTO-like classes to the DAL. This is to avoid passing the application (business) objects across layers.
To avoid naming confusion, I would like to use another term than DTO but can't find a good one.
What is DTO equivalent term for objects returned from DAL?
Also, what Martin Fowler says about POJO:
By the way, it does not matter that much. Looking at your concern to avoid confusion due to similar naming, you may choose from "DataModel", "Entity", "POCO".
Following are very loose considerations for different terms generally used:
Relational Model [Database Layer]:
Persistence Model [Data Access Layer]:
Domain Model/Business Model [Business Logic/Services Layer]:
View Model [UI Layer]:
DTO:
POCO:
Entity:
Model:
Refer following answers:
https://stackoverflow.com/a/37751345/5779732
https://stackoverflow.com/a/42801839/5779732