数据库【新增】增加最新版mysql数据库脚本及完整演示脚本。

This commit is contained in:
jianweie code
2025-08-03 16:54:35 +08:00
parent 06ff75c898
commit 8b6029320e
8 changed files with 51 additions and 1 deletions

View File

@@ -195,8 +195,8 @@
{ field: 'createTime', title: '创建时间', width: 130, sort: false }, { field: 'createTime', title: '创建时间', width: 130, sort: false },
{ field: 'updateTime', title: '更新时间', width: 130, sort: false }, { field: 'updateTime', title: '更新时间', width: 130, sort: false },
{ field: 'needUserGet', title: '等待用户领取', width: 95, templet: '#switch_needUserGet', sort: false, unresize: true }, { 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 }, { field: 'message', title: '反馈信息', sort: false },
{ width: 120, align: 'center', title: '操作', fixed: 'right', toolbar: '#LAY-app-CoreCmsUserTocash-tableBox-bar' },
] ]
] ]
}); });

View File

@@ -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 '微信支付平台证书';

View File

@@ -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 '用户提现使用商家转账微信回调通知';

View File

@@ -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 '用户提现使用商家转账回调记录';