在若依3.8.1基本上,新建privavte-farm模块,用于私家农场(CSA,社区支持农业)系统的开发。

对系统进行了配置,并增加客户管理-访客管理示例功能。
This commit is contained in:
jlt
2022-03-20 23:41:34 +08:00
parent 857054179c
commit be13b2ec59
17 changed files with 2277 additions and 225 deletions

24
private-farm/pom.xml Normal file
View File

@ -0,0 +1,24 @@
<?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>ruoyi</artifactId>
<groupId>com.ruoyi</groupId>
<version>3.8.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>com.jlt.farming</groupId>
<artifactId>private-farm</artifactId>
<version>1.0.0</version>
<description>私家农场(社区支持农业)管理系统</description>
<dependencies>
<dependency>
<groupId>com.ruoyi</groupId>
<artifactId>ruoyi-common</artifactId>
</dependency>
</dependencies>
</project>