新增开源手机端服务模块

This commit is contained in:
thinkgem
2023-04-15 11:38:53 +08:00
parent eda6faa06b
commit 0ed161c986
37 changed files with 5520 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
/* Create Tables */
-- APP意见反馈
CREATE TABLE [js_app_comment]
(
[id] varchar(64) NOT NULL,
[category] varchar(10),
[content] nvarchar(500),
[contact] nvarchar(200),
[status] char(1) DEFAULT '0' NOT NULL,
[create_by] varchar(64) NOT NULL,
[create_date] datetime NOT NULL,
[update_by] varchar(64) NOT NULL,
[update_date] datetime NOT NULL,
[remarks] nvarchar(500),
[create_by_name] varchar(200),
[device_info] varchar(1000),
[reply_date] date,
[reply_content] nvarchar(500),
[reply_user_code] varchar(64),
[reply_user_name] varchar(200),
PRIMARY KEY ([id])
);
-- APP升级版本
CREATE TABLE [js_app_upgrade]
(
[id] varchar(64) NOT NULL,
[app_code] varchar(64),
[up_title] nvarchar(200),
[up_content] nvarchar(1000),
[up_version] numeric,
[up_type] char(1),
[up_date] date,
[apk_url] varchar(500),
[res_url] varchar(500),
[status] char(1) DEFAULT '0' NOT NULL,
[create_by] varchar(64) NOT NULL,
[create_date] datetime NOT NULL,
[update_by] varchar(64) NOT NULL,
[update_date] datetime NOT NULL,
[remarks] nvarchar(500),
PRIMARY KEY ([id])
);