From 7e4a6d54b42d2e6b12fcc62a0d8f957060e600f5 Mon Sep 17 00:00:00 2001 From: jameszow Date: Sat, 2 Sep 2023 14:24:41 +0800 Subject: [PATCH 1/6] Add self description file, CC #13 --- api/README.md | 22 ++++++++++++++++++++++ dao/README.md | 3 +++ domain/README.md | 1 + middleware/README.md | 1 + plugins/README.md | 1 + service/README.md | 1 + utils/README.md | 0 7 files changed, 29 insertions(+) create mode 100644 api/README.md create mode 100644 dao/README.md create mode 100644 domain/README.md create mode 100644 middleware/README.md create mode 100644 plugins/README.md create mode 100644 service/README.md create mode 100644 utils/README.md diff --git a/api/README.md b/api/README.md new file mode 100644 index 00000000..00202bca --- /dev/null +++ b/api/README.md @@ -0,0 +1,22 @@ +# API Module + +This module is mainly used to encapsulate external request able **API(application program interfaces)**, It includes the following functions: + +1. account: Account management and financial management, as well as financial detail management. +2. depot: Warehouse management and warehouse entry and exit documents. +3. Function management (**note:** this `API` is unstable and may need to be adjusted later) +4. Management interface for revenue and expenditure. +5. Some management interfaces for products (product attributes, classifications) include extension interfaces. +6. Interface for message notification management, some functions for querying messages and updating status +7. General management of institutional organizations. +8. Operator Management Interface. +9. Some interfaces on the system platform side +10. Interface related to platform role management +11. Document number management (**note:** this interface may be integrated later and will no longer be independent as a module) +12. Serial number management interface, similar to the same as above. +13. The interface for supplier management, which includes the interface for querying and operating supplier data +14. System interface, including restrictions on general file upload and download, image compression preview, etc. +15. Interface for multiple tenant management classes. +16. Unit management interface. +17. User management interface and interface management that includes the corresponding relationship between users and roles. + diff --git a/dao/README.md b/dao/README.md new file mode 100644 index 00000000..839f16f3 --- /dev/null +++ b/dao/README.md @@ -0,0 +1,3 @@ +# Dao Module + +Data Access Object \ No newline at end of file diff --git a/domain/README.md b/domain/README.md new file mode 100644 index 00000000..b15e54fa --- /dev/null +++ b/domain/README.md @@ -0,0 +1 @@ +# Domain Module \ No newline at end of file diff --git a/middleware/README.md b/middleware/README.md new file mode 100644 index 00000000..b62ab17f --- /dev/null +++ b/middleware/README.md @@ -0,0 +1 @@ +# Middleware Module \ No newline at end of file diff --git a/plugins/README.md b/plugins/README.md new file mode 100644 index 00000000..1292faf2 --- /dev/null +++ b/plugins/README.md @@ -0,0 +1 @@ +# Plugins Module \ No newline at end of file diff --git a/service/README.md b/service/README.md new file mode 100644 index 00000000..3245a587 --- /dev/null +++ b/service/README.md @@ -0,0 +1 @@ +# Service Module \ No newline at end of file diff --git a/utils/README.md b/utils/README.md new file mode 100644 index 00000000..e69de29b From 3bd14af2f5a941a8ebf6e2d97f6fd4e80b1ab650 Mon Sep 17 00:00:00 2001 From: jameszow Date: Sat, 2 Sep 2023 14:25:08 +0800 Subject: [PATCH 2/6] Modify the homepage description file CC #13 --- README.md | 65 ++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 62 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0879f21a..291eefe1 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,64 @@ -# WanSen ERP +

WanSen ERP

+
+ + Next generation intelligent AI ERP system + +
-Next generation intelligent ERP system +
+On the basis of ERP business, we have expanded GPT-3.5. You, individually or as a company, can fine tune your model through our system and deploy it through Docker or other methods. -We will refer to SpringCloud technology in the future +You can provide fully automated business form submission operations through your simple description, and you can chat, interact, and consult information with GPT. + +## Online preview + +We have deployed this program on Amazon Cloud for you to experience before deciding to use it. +If you have any questions or suggestions, please submit [issue](https://github.com/wansenai/WansenERP/issues/new) and we will handle them in a timely manner. + +Experience address: http://140.179.135.174:3000/ + +## Explanation between modules + +1. **Domain Module:** + +Business Operation Data Object. +```xml + + com.wansensoft + domain + 1.0-SNAPSHOT + +``` + +2. **Dao Module:** + +Data Access Objects separate data access logic from business logic to provide access and operations to data persistent storage. +```xml + + com.wansensoft + dao + 1.0-SNAPSHOT + +``` + +3. **Service Module:** + +Business logic layer, which delegates specific business logic processing to the Service layer. +```xml + + com.wansensoft + service + 1.0-SNAPSHOT + +``` + +4. **Utils Module:** + +Tool class code that encapsulates some specific operations. +```xml + + com.wansensoft + utils + 1.0-SNAPSHOT + +``` \ No newline at end of file From d0f7e7fc92ca84ae05468a1502ac7d152dfdcb20 Mon Sep 17 00:00:00 2001 From: jameszow Date: Sat, 2 Sep 2023 14:25:40 +0800 Subject: [PATCH 3/6] No longer producing exec executable files, choose packaging to skip --- api/pom.xml | 29 ----------------------------- utils/pom.xml | 2 +- 2 files changed, 1 insertion(+), 30 deletions(-) diff --git a/api/pom.xml b/api/pom.xml index 63142efa..2ced53aa 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -62,33 +62,4 @@ - - - - src/main/java - - **/*.xml - - - - src/main/resources - - - - - org.springframework.boot - spring-boot-maven-plugin - - wansenerp - - - org.projectlombok - lombok - - - - - - - \ No newline at end of file diff --git a/utils/pom.xml b/utils/pom.xml index 897b2be7..53b704ea 100644 --- a/utils/pom.xml +++ b/utils/pom.xml @@ -80,7 +80,7 @@ org.springframework.boot spring-boot-maven-plugin - exec + true From 9e33f9c3813c4d5493b93496817ddd0586406a5d Mon Sep 17 00:00:00 2001 From: James Zow Date: Sat, 2 Sep 2023 14:33:20 +0800 Subject: [PATCH 4/6] Update README.md --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 291eefe1..08454854 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@
+ On the basis of ERP business, we have expanded GPT-3.5. You, individually or as a company, can fine tune your model through our system and deploy it through Docker or other methods. You can provide fully automated business form submission operations through your simple description, and you can chat, interact, and consult information with GPT. @@ -17,7 +18,7 @@ If you have any questions or suggestions, please submit [issue](https://github.c Experience address: http://140.179.135.174:3000/ -## Explanation between modules +## Module Description 1. **Domain Module:** @@ -61,4 +62,4 @@ Tool class code that encapsulates some specific operations. utils 1.0-SNAPSHOT -``` \ No newline at end of file +``` From 6bad411db702643ac6a1b5ccdddb9eb6167ab898 Mon Sep 17 00:00:00 2001 From: James Zow Date: Sat, 2 Sep 2023 14:47:03 +0800 Subject: [PATCH 5/6] Update README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index 08454854..725783ad 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,25 @@ Next generation intelligent AI ERP system +
+
On the basis of ERP business, we have expanded GPT-3.5. You, individually or as a company, can fine tune your model through our system and deploy it through Docker or other methods. From 50441ec7b88b80030778af176b0c321ac28dd9db Mon Sep 17 00:00:00 2001 From: James Zow Date: Sat, 2 Sep 2023 14:59:04 +0800 Subject: [PATCH 6/6] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 725783ad..af816f7e 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@