There are some types of pages that enter the concept of CRUD.
Of course, there are the main pages that justify the name CRUD (Creactive Read Update Delete) represented in DAO and DTO (Dminutes Toccess Thebject and Dminutes Transfer Thebject, respectively), but CRUD alone represents the form representing (computationally) and manipulating data. Overall in the MVC architecture (MOdel-View-Control) CRUD represents the layer between Model and View, being manipulated by Control.
To make this possible we need the pages that interact with CRUD the way the system should react, and that depends on the system (after all there are n forms of development, and the one that has taken more strength lately is the SPA - Single Page Application thanks to tools like Reactjs or Vuejs), and in this case the intermediate pages take over.
For example, imagine the data flow on a screen that shows users of a system and you need to make an interaction between the results of the database Querys on that intermediate page (like some more complex calculation that should be done before arriving at the View). then the flow would be:
System prompts -> intermediate page selects which CRUD pages will be used -> CRUD reads database data (n readings of n tables, grouped or not) -> Data reaches the intermediate page and is processed -> processed data goes to higher layer (either direct to View or control to be reinserted into the view)
For me it is something very informal, CRUD is CRUD. Maybe basic is something that really is just very simple data, with minimal validation, without having to juggle the screens, probably an input master-Detail don’t tell. but you’ll know.
– Maniero
Something that that compares to criminal records with subitens? Like, there are registers where you should register the central information (header?) and a list of daughter information. For example, a product contains lots that in turn have distinct lot validations and lot numbers
– Jefferson Quesado
Related: https://softwareengineering.stackexchange.com/questions/379067/what-is-a-crud-system
– Piovezan
It would be convenient a description of what you consider "basic CRUD".
– Brewerton Santos
@Brewertonsantos I described how I could in the question, I have no more details because I made a.
– Piovezan