Replies: 2 comments
-
This sounds like a daunting task, but I am very interested.
Pseudo three-tier architecture: Yes, we are now using a three-tier architecture, which requires some clarification as to why it is a pseudo three-tier architecture |
Beta Was this translation helpful? Give feedback.
0 replies
-
related #318 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
To develop a new interface, you first need to define the model (migration) and schema, and then define crud, service and router (view), referred to as mscsr.
Among them, crud has the CRUDBase class, which supports common get, create, update, and delete methods.
Idea one:
So can the service layer also extract the ServiceBase class and support common methods, such as: query, create, update, delete (logical delete and true delete).
Idea two:
Can we support a command line tool that creates the basic structure mscsr with one line of command. for example:
In addition, the readme document may need to supplement the pseudo-three-tier architecture and how to use it quickly.
Beta Was this translation helpful? Give feedback.
All reactions