Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
江炜
/
erp-module
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
6c579bd1
authored
Dec 12, 2018
by
flyxiaozhu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新说明文档
parent
914b8a90
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
45 additions
and
22 deletions
README.md
admin-api/pom.xml
core/src/main/java/com/maile/erp/core/pojos/GoodsTagsPojo.java
docs/erp.png
README.md
View file @
6c579bd1
ERP Module
==
提供全后端分离的模板
\ No newline at end of file
提供全后端分离的模板
## 启动
> 启动后台应用:admin-api的AdminApplication应用
> 启动前台应用:进入react-admin运行npm i安装依赖包,运行npm run dev启动应用
> 访问:localhost:8080
## 目录结构
```
`java
- erp-module
- src
- main
- java
- com.maile.erp.admin
- admin-api controller层
- authorize 权限管理
- configurations 登录,异常处理
- controllers 控制器
- core dao层,Service层
- src
- main
- java
- com.maile.erp.core
- entities 实体类
- libs 自定义异常,业务常量,class查询,错误码,返回JSON数据结构,自定义SearchSpecFilter等类库
- pojos 转化类
- repositories DAO层接口
- untile 工具类
- react-admin View层
- src
- components 组件
- redux redux,react-redux
- schema 对表格的配置
- statics 静态资源
- untils 工具类
- config.js 全局配置类
- index.js 入口文件,react-route
- menu.js 菜单栏配置
```
`
## 运行界面

\ No newline at end of file
admin-api/pom.xml
View file @
6c579bd1
...
...
@@ -19,13 +19,6 @@
<version>
1.0-SNAPSHOT
</version>
</dependency>
<!--aop依赖-->
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-aop
</artifactId>
<version>
2.0.3.RELEASE
</version>
</dependency>
<!--https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-security-->
<dependency>
<groupId>
org.springframework.boot
</groupId>
...
...
core/src/main/java/com/maile/erp/core/pojos/GoodsTagsPojo.java
deleted
100644 → 0
View file @
914b8a90
package
com
.
maile
.
erp
.
core
.
pojos
;
import
lombok.AllArgsConstructor
;
import
lombok.Data
;
import
lombok.NoArgsConstructor
;
@Data
@AllArgsConstructor
@NoArgsConstructor
public
class
GoodsTagsPojo
{
private
long
goodsId
;
private
long
tagsId
;
}
docs/erp.png
0 → 100644
View file @
6c579bd1
201 KB
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment