forked from wansenai/eairp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modify the homepage description file CC wansenai#13
- Loading branch information
Showing
1 changed file
with
62 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,64 @@ | ||
# WanSen ERP | ||
<h1 align="center">WanSen ERP</h1> | ||
<div align="center"> | ||
<strong> | ||
Next generation intelligent AI ERP system | ||
</strong> | ||
</div> | ||
|
||
Next generation intelligent ERP system | ||
<br /> | ||
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 | ||
<dependency> | ||
<groupId>com.wansensoft</groupId> | ||
<artifactId>domain</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
</dependency> | ||
``` | ||
|
||
2. **Dao Module:** | ||
|
||
Data Access Objects separate data access logic from business logic to provide access and operations to data persistent storage. | ||
```xml | ||
<dependency> | ||
<groupId>com.wansensoft</groupId> | ||
<artifactId>dao</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
</dependency> | ||
``` | ||
|
||
3. **Service Module:** | ||
|
||
Business logic layer, which delegates specific business logic processing to the Service layer. | ||
```xml | ||
<dependency> | ||
<groupId>com.wansensoft</groupId> | ||
<artifactId>service</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
</dependency> | ||
``` | ||
|
||
4. **Utils Module:** | ||
|
||
Tool class code that encapsulates some specific operations. | ||
```xml | ||
<dependency> | ||
<groupId>com.wansensoft</groupId> | ||
<artifactId>utils</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
</dependency> | ||
``` |