Skip to content

Commit

Permalink
Merge branch 'v2-orm-adjust' of https://github.com/Jzow/WansenERP int…
Browse files Browse the repository at this point in the history
…o v2-orm-adjust
  • Loading branch information
Jzow committed Sep 10, 2023
2 parents 523fd39 + da8f27e commit 8c45cdb
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 4 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h1 align="center">WanSen ERP</h1>
<div align="center">
<strong>
Next generation intelligent AI ERP system
Next generation artificial intelligent ERP system
</strong>
</div>
<br />
Expand Down Expand Up @@ -29,12 +29,16 @@ On the basis of ERP business, we have expanded GPT-3.5. individually or company

You can provide fully automated business form submission operations through your simple description, and you can chat, interact, and consult information with GPT.

**Note: This is a front-end and back-end separated project. This repository stores backend code, please browse [here](https://github.com/wansenai/wansenerpui) for the front-end warehouse.**

[Enginsh](https://github.com/wansenai/wansen-erp/blob/master/README.md) / [简体中文](https://github.com/wansenai/wansen-erp/blob/master/README_ZH.md)

## 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://erp.wansen.cloud/
preview address: http://erp.wansen.cloud/

## Module Description

Expand Down
85 changes: 85 additions & 0 deletions README_ZH.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
<h1 align="center">WanSen ERP</h1>
<div align="center">
<strong>
下一代人工智能 ERP 系统
</strong>
</div>
<br />

<div align="center">
<!-- Crates version -->
<a href="https://spring.io/projects/spring-boot#learn">
<img alt="Static Badge" src="https://img.shields.io/badge/spring-boot?label=Spring%20Boot%203.1.3">
</a>
<a href="#">
<img alt="GitHub Workflow Status (with event)" src="https://img.shields.io/github/actions/workflow/status/wansenai/wansenerp/maven.yml">
</a>
<!-- Contributors -->
<a href="https://github.com/wansenai/wansenerp/graphs/contributors">
<img alt="GitHub contributors" src="https://img.shields.io/github/contributors/wansenai/wansenerp">
</a>
<!-- bors -->
<a href="#">
<img alt="GitHub last commit (branch)" src="https://img.shields.io/github/last-commit/wansenai/wansenerp/master">
</a>
</div>
<br />

在 ERP 业务的基础上,我们扩展了 GPT-3.5,个人或公司可以通过我们的系统配置您的模型,并通过 Docker 或其他方法进行部署。

您可以通过您的简单描述提供完全自动化的业务表单提交操作,并且可以与 GPT 聊天、互动、咨询信息。

**注意:这是一个前仓库收拾的项目。该仓库仓库代码,仓库仓库请浏览[这里](https://github.com/wansenai/wansenerpui)**

## 在线预览

我们已将程序部署在Amazon Cloud上,请您在使用前先体验一下。
如果您有任何疑问或建议,请提交[issue](https://github.com/wansenai/WansenERP/issues/new),我们将会及时处理。

预览地址:http://erp.wansen.cloud/

## 模块说明

1. **Domain Module:**

业务操作数据对象。
```xml
<dependency>
<groupId>com.wansensoft</groupId>
<artifactId>domain</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
```

2. **Dao Module:**

数据访问对象将数据访问逻辑与业务逻辑分开,以提供对数据持久存储的访问和操作。
```xml
<dependency>
<groupId>com.wansensoft</groupId>
<artifactId>dao</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
```

3. **Service Module:**

业务逻辑层,将具体的业务逻辑处理委托给服务层。
```xml
<dependency>
<groupId>com.wansensoft</groupId>
<artifactId>service</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
```

4. **Utils Module:**

封装了一些具体操作的工具类代码。
```xml
<dependency>
<groupId>com.wansensoft</groupId>
<artifactId>utils</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
```
4 changes: 2 additions & 2 deletions api/src/main/bin/start.bat
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@echo off

title jshERP
title WansenERP

java -Xms1000m -Xmx2000m -jar .\lib\jshERP.jar
pause over
pause over

0 comments on commit 8c45cdb

Please sign in to comment.