Kaynağa Gözat

首次提交

lym 1 hafta önce
işleme
63ba9a44bb

Dosya farkı çok büyük olduğundan ihmal edildi
+ 42 - 0
api/林产品信息发布平台.postman_collection.json


+ 67 - 0
doc/林业相关微信账号密码.txt

@@ -0,0 +1,67 @@
+微信公众服务号:
+	账号:qlyx@gzqlyx.com
+	密码:qlyx123456
+
+小程序:
+	账号:qlyx@gzqlyx.com
+	密码:qlyx123456
+
+微信账号:16608512332
+    密码:qianlinyouxuan12
+    商户号:1604486284
+
+微信开放平台:
+	账号:qlyx1@gzqlyx.com
+	密码:qianlinyouxuan123
+	
+七牛云
+	账号:qlyx@gzqlyx.com
+	密码:qianlinyouxuan123
+	qiniu:
+	  accessKey: rR8QQXFLtR3JFFgRF3M-xkNBhwlVWbCHA5l_n72k
+	  bucket: gzqlyx
+	  path: http://qly.gzqlyx.com/
+	  processName: 'null'
+	  secretKey: Mf2ksFMdHleMkZCdw67KVuc5dHacUFXiKvK6jJV9
+
+商户号
+	商户号:1604486284
+	密钥:jcr4il4PpxGzpInHQMqgLAJq0r15mBS2
+	操作码:123456
+
+linux:
+	ip: 36.134.28.163
+	账号: gzqlyx
+	密码: knlmCO05.gzqlyx
+
+宝塔:
+	http://36.134.28.163:8888/gyqlyx
+	账号:gyqlyx
+	密码:knlmCO05.gzqlyx
+
+移动云:
+	ecloud.10086.cn
+	账号:qlyx147258
+	密码:knlmCO05
+
+西部数码网站:
+	账号:gzqlyx
+	密码:qianlinyouxuan123	
+
+域名管理后台:
+	http://www.myhostadmin.net/
+	域名:gzqlyx.com 
+	密码:ch4jxsbp
+
+mysql
+	地址:http://36.134.28.163:3306
+	账号:root
+	数据库密码:knlmCO05
+nacos
+	地址:http://36.134.28.163:8898/nacos
+	账号:nacos
+	密码:knlmCO05.gzqlyx	
+域名
+	七牛云域名:qly.gzqlyx.com
+	微信域名:wxh5.gzqlyx.com
+	商品管理后台:product.gzqlyx.com

+ 219 - 0
pom.xml

@@ -0,0 +1,219 @@
+<?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>org.springframework.boot</groupId>
+        <artifactId>spring-boot-starter-parent</artifactId>
+        <version>2.1.13.RELEASE</version>
+        <relativePath/> <!-- lookup parent from repository -->
+    </parent>
+    <groupId>com.hwrj.cloud</groupId>
+    <artifactId>forest-mall-cloud</artifactId>
+    <packaging>pom</packaging>
+    <version>0.0.1-SNAPSHOT</version>
+    <name>forest</name>
+    <modules>
+        <module>forest-common</module>
+        <module>forest-gateway</module>
+        <module>forest-security</module>
+        <module>forest-admin</module>
+        <module>forest-monitor</module>
+        <module>forest-portal</module>
+    </modules>
+    <properties>
+        <java.version>1.8</java.version>
+        <spring.cloud.version>Greenwich.RELEASE</spring.cloud.version>
+        <spring.cloud.alibaba.version>2.1.2.RELEASE</spring.cloud.alibaba.version>
+        <pagehelper-starter.version>1.2.10</pagehelper-starter.version>
+        <pagehelper.version>5.1.8</pagehelper.version>
+        <druid.version>1.1.10</druid.version>
+        <hutool.version>4.5.7</hutool.version>
+        <swagger2.version>2.9.2</swagger2.version>
+        <swagger-models.version>1.6.0</swagger-models.version>
+        <swagger-annotations.version>1.6.0</swagger-annotations.version>
+        <mybatis-generator.version>1.3.7</mybatis-generator.version>
+        <mybatis.version>3.4.6</mybatis.version>
+        <mysql-connector.version>8.0.16</mysql-connector.version>
+        <spring-data-commons.version>2.1.3.RELEASE</spring-data-commons.version>
+        <jjwt.version>0.9.0</jjwt.version>
+        <aliyun-oss.version>2.5.0</aliyun-oss.version>
+        <logstash-logback.version>5.2</logstash-logback.version>
+        <minio.version>3.0.10</minio.version>
+        <forest.version>0.0.1-SNAPSHOT</forest.version>
+        <guava.version>25.1-jre</guava.version>
+        <knife4j.version>2.0.4</knife4j.version>
+        <spring.boot.admin.version>2.1.6</spring.boot.admin.version>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-actuator</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-aop</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-test</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.github.xiaoymin</groupId>
+            <artifactId>knife4j-spring-boot-starter</artifactId>
+            <version>2.0.4</version>
+        </dependency>
+
+
+
+        <dependency>
+            <groupId>com.github.xiaoymin</groupId>
+            <artifactId>knife4j-micro-spring-boot-starter</artifactId>
+            <version>${knife4j.version}</version>
+        </dependency>
+
+
+
+    </dependencies>
+
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.springframework.cloud</groupId>
+                <artifactId>spring-cloud-dependencies</artifactId>
+                <version>${spring.cloud.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+            <dependency>
+                <groupId>com.alibaba.cloud</groupId>
+                <artifactId>spring-cloud-alibaba-dependencies</artifactId>
+                <version>${spring.cloud.alibaba.version}</version>
+                <type>pom</type>
+                <scope>import</scope>
+            </dependency>
+
+            <!--MyBatis分页插件starter-->
+            <dependency>
+                <groupId>com.github.pagehelper</groupId>
+                <artifactId>pagehelper-spring-boot-starter</artifactId>
+                <version>${pagehelper-starter.version}</version>
+            </dependency>
+            <!--MyBatis分页插件-->
+            <dependency>
+                <groupId>com.github.pagehelper</groupId>
+                <artifactId>pagehelper</artifactId>
+                <version>${pagehelper.version}</version>
+            </dependency>
+            <!--集成druid连接池-->
+            <dependency>
+                <groupId>com.alibaba</groupId>
+                <artifactId>druid-spring-boot-starter</artifactId>
+                <version>${druid.version}</version>
+            </dependency>
+            <!--Hutool Java工具包-->
+            <dependency>
+                <groupId>cn.hutool</groupId>
+                <artifactId>hutool-all</artifactId>
+                <version>${hutool.version}</version>
+            </dependency>
+            <!--Swagger-UI API文档生产工具-->
+            <dependency>
+                <groupId>io.springfox</groupId>
+                <artifactId>springfox-swagger2</artifactId>
+                <version>${swagger2.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>io.springfox</groupId>
+                <artifactId>springfox-swagger-ui</artifactId>
+                <version>${swagger2.version}</version>
+            </dependency>
+            <!--解决Swagger 2.9.2版本NumberFormatException-->
+            <dependency>
+                <groupId>io.swagger</groupId>
+                <artifactId>swagger-models</artifactId>
+                <version>${swagger-models.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>io.swagger</groupId>
+                <artifactId>swagger-annotations</artifactId>
+                <version>${swagger-annotations.version}</version>
+            </dependency>
+            <!-- MyBatis 生成器 -->
+            <dependency>
+                <groupId>org.mybatis.generator</groupId>
+                <artifactId>mybatis-generator-core</artifactId>
+                <version>${mybatis-generator.version}</version>
+            </dependency>
+            <!-- MyBatis-->
+            <dependency>
+                <groupId>org.mybatis</groupId>
+                <artifactId>mybatis</artifactId>
+                <version>${mybatis.version}</version>
+            </dependency>
+            <!--Mysql数据库驱动-->
+            <dependency>
+                <groupId>mysql</groupId>
+                <artifactId>mysql-connector-java</artifactId>
+                <version>${mysql-connector.version}</version>
+            </dependency>
+            <!--SpringData工具包-->
+            <dependency>
+                <groupId>org.springframework.data</groupId>
+                <artifactId>spring-data-commons</artifactId>
+                <version>${spring-data-commons.version}</version>
+            </dependency>
+            <!--JWT(Json Web Token)登录支持-->
+            <dependency>
+                <groupId>io.jsonwebtoken</groupId>
+                <artifactId>jjwt</artifactId>
+                <version>${jjwt.version}</version>
+            </dependency>
+            <!-- 阿里云OSS -->
+            <dependency>
+                <groupId>com.aliyun.oss</groupId>
+                <artifactId>aliyun-sdk-oss</artifactId>
+                <version>${aliyun-oss.version}</version>
+            </dependency>
+            <!--集成logstash-->
+            <dependency>
+                <groupId>net.logstash.logback</groupId>
+                <artifactId>logstash-logback-encoder</artifactId>
+                <version>${logstash-logback.version}</version>
+            </dependency>
+            <!--MinIO JAVA SDK-->
+            <dependency>
+                <groupId>io.minio</groupId>
+                <artifactId>minio</artifactId>
+                <version>${minio.version}</version>
+            </dependency>
+            <!-- spring boot admin client -->
+            <dependency>
+                <groupId>de.codecentric</groupId>
+                <artifactId>spring-boot-admin-starter-client</artifactId>
+                <version>${spring.boot.admin.version}</version>
+            </dependency>
+            <!-- spring boot admin server -->
+            <dependency>
+                <groupId>de.codecentric</groupId>
+                <artifactId>spring-boot-admin-starter-server</artifactId>
+                <version>${spring.boot.admin.version}</version>
+            </dependency>
+            <!--统一Guava版本防止冲突-->
+            <dependency>
+                <groupId>com.google.guava</groupId>
+                <artifactId>guava</artifactId>
+                <version>${guava.version}</version>
+            </dependency>
+
+
+
+        </dependencies>
+    </dependencyManagement>
+
+
+</project>

+ 57 - 0
read.md

@@ -0,0 +1,57 @@
+# 林产品发布平台
+### 项目简介
+ 林产品发布平台来自于git上的一名叫mall的项目,并在该项目的基础上面添加了供应商,生产基地,修改了所有信息的归属。
+ 
+### 开发记事
+#### 开发注意事项
+    1. comp_id bigint 供应商id
+    2. create_id  bigint 创建人id
+    3. update_id bigint 修改人id
+    4. create_time  创建时间
+    5. update_time 修改时间
+
+## 权限功能开发(邱波)
+### 功能设计思路
+1. 角色控制接口权限
+2. 在用户中添加对应的供应商,通过供应商来做数据权限
+#### 修改过的表
+    1. ums_admin 表
+    添加字段comp_id(供应商id),
+    comp_name(供应商名称);
+### 配置文件修改该记录(admin-server端新增文件上传限制)
+     1. servlet:
+        multipart:
+          enabled: true
+          file-size-threshold: 0
+          max-file-size: 100Mb
+          max-request-size: 100Mb
+## 产品功能开发(赵冬冬)
+
+
+## 基地功能开发(刘永梅)
+
+## 先启动nacos
+    -nacos
+        -bin
+            -shutdown.cmd           停止
+            -shutdown.sh            linux停止
+            -startup.cmd            windows启动 
+            -startup.sh             linux启动 sh startup.sh -m standalone
+## forest-portal 移动端运行依赖
+    需要在对应的nacos文件配置连接地址
+    1.MongDb
+    2.RabbitMQ
+## 运行项目
+    -forest-admin
+        -admin-server
+            -AdminApplication           后台端
+    -forest-portal  
+         -portal-server 
+            -ForestPortalApplication    移动端
+    -forest-gateway  
+            -MallGatewayApplication     路由网关
+
+## 打包发行
+    forest-admin    maven package 后台端
+    forest-portal   maven package 移动端
+    forest-gateway  maven package 路由网关

Bu fark içinde çok fazla dosya değişikliği olduğu için bazı dosyalar gösterilmiyor