mirror of https://gitee.com/stylefeng/roses
【7.6.0】【sys】新建三个业务模块
parent
99947e9a66
commit
e80fedd54a
|
@ -17,7 +17,9 @@
|
|||
|
||||
<modules>
|
||||
<module>sys-api</module>
|
||||
<module>sys-business</module>
|
||||
<module>sys-business-hr</module>
|
||||
<module>sys-business-permission</module>
|
||||
<module>sys-business-portal</module>
|
||||
<module>sys-spring-boot-starter</module>
|
||||
</modules>
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>sys-business</artifactId>
|
||||
<artifactId>sys-business-hr</artifactId>
|
||||
|
||||
<packaging>jar</packaging>
|
||||
|
|
@ -0,0 +1 @@
|
|||
# 业务模块-存放CRUD相关业务
|
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-s-sys</artifactId>
|
||||
<version>7.6.0</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>sys-business-permission</artifactId>
|
||||
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<!--基础核心业务api-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>sys-api</artifactId>
|
||||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--资源api模块-->
|
||||
<!--用在资源控制器,资源扫描上-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库sdk-->
|
||||
<!--数据库dao框架-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-mp</artifactId>
|
||||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
</project>
|
|
@ -0,0 +1 @@
|
|||
package cn.stylefeng.roses.kernel.sys.modular.controller;
|
|
@ -0,0 +1 @@
|
|||
package cn.stylefeng.roses.kernel.sys.modular.entity;
|
|
@ -0,0 +1 @@
|
|||
package cn.stylefeng.roses.kernel.sys.modular.enums;
|
|
@ -0,0 +1 @@
|
|||
package cn.stylefeng.roses.kernel.sys.modular.mapper;
|
|
@ -0,0 +1 @@
|
|||
package cn.stylefeng.roses.kernel.sys.modular.pojo;
|
|
@ -0,0 +1 @@
|
|||
package cn.stylefeng.roses.kernel.sys.modular.service;
|
|
@ -0,0 +1 @@
|
|||
# 业务模块-存放CRUD相关业务
|
|
@ -0,0 +1,51 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<parent>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>kernel-s-sys</artifactId>
|
||||
<version>7.6.0</version>
|
||||
<relativePath>../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
<artifactId>sys-business-portal</artifactId>
|
||||
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<!--基础核心业务api-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>sys-api</artifactId>
|
||||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--资源api模块-->
|
||||
<!--用在资源控制器,资源扫描上-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>scanner-api</artifactId>
|
||||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--数据库sdk-->
|
||||
<!--数据库dao框架-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>db-sdk-mp</artifactId>
|
||||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!--web模块-->
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
</project>
|
|
@ -0,0 +1 @@
|
|||
package cn.stylefeng.roses.kernel.sys.modular.controller;
|
|
@ -0,0 +1 @@
|
|||
package cn.stylefeng.roses.kernel.sys.modular.entity;
|
|
@ -0,0 +1 @@
|
|||
package cn.stylefeng.roses.kernel.sys.modular.enums;
|
|
@ -0,0 +1 @@
|
|||
package cn.stylefeng.roses.kernel.sys.modular.mapper;
|
|
@ -0,0 +1 @@
|
|||
package cn.stylefeng.roses.kernel.sys.modular.pojo;
|
|
@ -0,0 +1 @@
|
|||
package cn.stylefeng.roses.kernel.sys.modular.service;
|
|
@ -20,7 +20,7 @@
|
|||
<!--基础核心业务业务模块-->
|
||||
<dependency>
|
||||
<groupId>cn.stylefeng.roses</groupId>
|
||||
<artifactId>sys-business</artifactId>
|
||||
<artifactId>sys-business-hr</artifactId>
|
||||
<version>${roses.version}</version>
|
||||
</dependency>
|
||||
|
||||
|
|
Loading…
Reference in New Issue