mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-03-22 10:27:20 +08:00
数据库【新增】增加最新版mysql数据库脚本及完整演示脚本。
This commit is contained in:
@@ -195,8 +195,8 @@
|
||||
{ field: 'createTime', title: '创建时间', width: 130, sort: false },
|
||||
{ field: 'updateTime', title: '更新时间', width: 130, sort: false },
|
||||
{ field: 'needUserGet', title: '等待用户领取', width: 95, templet: '#switch_needUserGet', sort: false, unresize: true },
|
||||
{ width: 120, align: 'center', title: '操作', fixed: 'right', toolbar: '#LAY-app-CoreCmsUserTocash-tableBox-bar' },
|
||||
{ field: 'message', title: '反馈信息', sort: false },
|
||||
{ width: 120, align: 'center', title: '操作', fixed: 'right', toolbar: '#LAY-app-CoreCmsUserTocash-tableBox-bar' },
|
||||
]
|
||||
]
|
||||
});
|
||||
|
||||
BIN
数据库/MySql/20250729/升级脚本/1、更新【微信支付配置表】CoreCmsWeChatPayConfig.sql
Normal file
BIN
数据库/MySql/20250729/升级脚本/1、更新【微信支付配置表】CoreCmsWeChatPayConfig.sql
Normal file
Binary file not shown.
@@ -0,0 +1,15 @@
|
||||
create table CoreCmsWeChatPayPlatformCertificate
|
||||
(
|
||||
id int auto_increment comment '序列'
|
||||
primary key,
|
||||
algorithmType varchar(50) not null comment '证书算法类型',
|
||||
certificate text not null comment '证书内容',
|
||||
effectiveTime datetime not null comment '获取生效时间',
|
||||
expireTime datetime not null comment '获取过期时间',
|
||||
serialNumber varchar(50) not null comment '证书编号',
|
||||
merchantId varchar(50) not null comment '商户编号',
|
||||
createTime datetime not null comment '创建时间',
|
||||
updataTime datetime null comment '更新时间'
|
||||
)
|
||||
comment '微信支付平台证书';
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
create table CoreCmsUserTocashWeChatNotify
|
||||
(
|
||||
id int auto_increment comment '序列'
|
||||
primary key,
|
||||
callBackId varchar(50) not null comment '通知ID',
|
||||
create_time varchar(50) not null comment '通知创建时间',
|
||||
resource_type varchar(50) not null comment '通知数据类型',
|
||||
event_type varchar(50) not null comment '通知类型',
|
||||
summary varchar(100) not null comment '回调摘要',
|
||||
resource text not null comment '通知数据',
|
||||
createTime datetime not null comment '创建时间',
|
||||
wechatpaySerial varchar(100) null comment '验签的平台证书序列号或支付公钥ID',
|
||||
wechatpaySignature varchar(1000) null comment '验签的签名值',
|
||||
wechatpayTimestamp varchar(50) null comment '验签的时间戳',
|
||||
wechatpayNonce varchar(100) null comment '验签的随机字符串',
|
||||
decryptedData varchar(1000) null comment '解密数据'
|
||||
)
|
||||
comment '用户提现使用商家转账微信回调通知';
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
create table CoreCmsUserTocashWeChatResponse
|
||||
(
|
||||
id int auto_increment comment '序列'
|
||||
primary key,
|
||||
out_bill_no varchar(50) not null comment '商户单号',
|
||||
transfer_bill_no varchar(100) not null comment '微信转账单号',
|
||||
create_time datetime not null comment '单据创建时间',
|
||||
state varchar(50) not null comment '单据状态',
|
||||
package_info varchar(255) null comment '跳转领取页面的package信息',
|
||||
code int null comment '状态码',
|
||||
message varchar(255) null comment '消息内容',
|
||||
detail varchar(255) null comment '描述',
|
||||
createTime datetime not null comment '创建时间'
|
||||
)
|
||||
comment '用户提现使用商家转账回调记录';
|
||||
|
||||
BIN
数据库/MySql/20250729/升级脚本/5、更新【用户提现表】CoreCmsUserTocash.sql
Normal file
BIN
数据库/MySql/20250729/升级脚本/5、更新【用户提现表】CoreCmsUserTocash.sql
Normal file
Binary file not shown.
BIN
数据库/MySql/20250729/完整数据库带演示20250729.zip
Normal file
BIN
数据库/MySql/20250729/完整数据库带演示20250729.zip
Normal file
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user