Skip to content

Commit

Permalink
Modify the homepage description file CC wansenai#13
Browse files Browse the repository at this point in the history
  • Loading branch information
Jzow committed Sep 2, 2023
1 parent 7e4a6d5 commit 3bd14af
Showing 1 changed file with 62 additions and 3 deletions.
65 changes: 62 additions & 3 deletions README.md
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>
```

0 comments on commit 3bd14af

Please sign in to comment.