消息通知

This commit is contained in:
lzh
2023-03-16 23:49:04 +08:00
parent cfffca82fa
commit 9afc113da3
9 changed files with 299 additions and 25 deletions

View File

@@ -19,4 +19,14 @@ insert into app_version(versionCode,versionName,downloadUrl,versionInfo,fileName
values (1002,'1.0.0.2','http://mall.yyundong.com/apks/mall-1002.apk','BUG修复功能完善','mall-1002.apk')
insert into app_version(versionCode,versionName,downloadUrl,versionInfo,fileName)
values (1003,'1.0.0.3','http://mall.yyundong.com/apks/mall-1003.apk','登录方式切换的Bug修复登录及退出后本地缓存数据问题的修复。','mall-1003.apk')
values (1003,'1.0.0.3','http://mall.yyundong.com/apks/mall-1003.apk','登录方式切换的Bug修复登录及退出后本地缓存数据问题的修复。','mall-1003.apk')
CREATE TABLE `push_cids` (
`id` bigint(32) NOT NULL AUTO_INCREMENT COMMENT 'ID唯一编号',
`getuiCid` varchar(100) NOT NULL COMMENT '个推的ClientID',
`userPhone` varchar(100) DEFAULT NULL COMMENT '用户手机号',
`userId` bigint(32) DEFAULT NULL COMMENT '用户ID',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;