Skip to content
This repository has been archived by the owner on Apr 10, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1 from xtTech/1.0.0
Browse files Browse the repository at this point in the history
1.0.0
  • Loading branch information
zoeminghong authored Mar 8, 2019
2 parents 1c93b91 + 71e2055 commit 176f5f4
Show file tree
Hide file tree
Showing 29 changed files with 14 additions and 1,779 deletions.
32 changes: 8 additions & 24 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,30 +31,14 @@ app-version
```
=== 功能概览

* 版本管理
** 渠道管理
*** 渠道添加、废弃
** Android 版本管理
*** Android 版本添加、上下架
*** APK 包上传、上下架
** IOS 版本管理
*** IOS 版本添加、上下架
* RN 管理
** RN 包管理
*** RN包上传、上下架
** RN 路由管理
*** RN 路由添加
* 自定义接口
** 接口设置、启用
* 管理员功能
** 应用管理
*** 应用的增删改
** 用户管理
*** 用户绑定可以管理的应用、用户的昵称修改
** 操作日志
*** 各用户对应用的操作记录
* 操作手册
** 本系统的使用指南
本系统的主要功能有 IOS/Android 版本管理,RN(React Native)包和RN路由管理,自定义接口以及管理员管理。 +

* `版本管理` 是本系统的基础功能,可以帮您实现自己的应用在安卓各应用商店或IOS的App Store上各个版本的管理。 +
* `RN 管理` 可以来便携管理您应用的RN包和RN路由。 +
* `自定义接口` 可以自定义您期望获得的数据信息。 +
* `管理员` 模块可以让您方便的实现多管理、多应用的操作。此外,`操作日志` 可以方便您监管其他应用管理员对各个应用的操作情况。 +
* `操作手册` 可以帮你查找操作方法。


=== 相关文档

Expand Down
20 changes: 0 additions & 20 deletions bin/app_version_manager.sql
Original file line number Diff line number Diff line change
Expand Up @@ -119,26 +119,6 @@ CREATE TABLE `app` (
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for app_white_list
-- ----------------------------
DROP TABLE IF EXISTS `app_white_list`;
CREATE TABLE `app_white_list` (
`id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '主键',
`app_id` int(10) UNSIGNED NOT NULL DEFAULT 0 COMMENT 'APPID',
`batch_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '白名单组的名称',
`white_type` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '白名单类型:ip,phone',
`white_value` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '白名单内容:手机号或IP',
`batch_id` int(10) NOT NULL DEFAULT 0 COMMENT '白名单组的id',
`is_batch` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否是白名单组',
`created_time` timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`created_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '创建人',
`updated_time` timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '更新时间',
`updated_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '更新人',
`del_flag` tinyint(1) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否删除',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;

-- ----------------------------
-- Table structure for channel
-- ----------------------------
Expand Down
2 changes: 1 addition & 1 deletion modules/app-version-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.tairanchina.csp.avm</groupId>
<artifactId>app-version</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0-RC</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down

This file was deleted.

Loading

0 comments on commit 176f5f4

Please sign in to comment.