后端:增加 cart 系统

This commit is contained in:
YunaiV
2019-04-08 23:41:48 +08:00
parent 235da59f70
commit a34eee65ac
22 changed files with 441 additions and 19 deletions

21
cart/pom.xml Normal file
View File

@@ -0,0 +1,21 @@
<?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">
<parent>
<artifactId>mall-parent</artifactId>
<groupId>cn.iocoder.mall</groupId>
<version>1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>cart</artifactId>
<packaging>pom</packaging>
<modules>
<module>cart-application</module>
<module>cart-service-api</module>
<module>cart-service-impl</module>
</modules>
</project>