mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 16:23:26 +08:00
【新增】后台提现审核功能增加【企业付款到零钱】【企业付款到银行卡】
This commit is contained in:
2
数据库/MySql/20220705/升级脚本.sql
Normal file
2
数据库/MySql/20220705/升级脚本.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
ALTER TABLE CoreCmsUserTocash ADD COLUMN type int DEFAULT 0 NOT NULL COMMENT '提现方式' AFTER updateTime;
|
||||
ALTER TABLE CoreCmsUserTocash ADD COLUMN message VARCHAR(1000) DEFAULT NULL COMMENT '反馈结果' AFTER type;
|
||||
BIN
数据库/MySql/20220705/完整脚本/coreshop2022705带商品演示脚本aliyun导出.zip
Normal file
BIN
数据库/MySql/20220705/完整脚本/coreshop2022705带商品演示脚本aliyun导出.zip
Normal file
Binary file not shown.
BIN
数据库/MySql/20220705/完整脚本/coreshop2022705带商品演示脚本navicat导出.rar
Normal file
BIN
数据库/MySql/20220705/完整脚本/coreshop2022705带商品演示脚本navicat导出.rar
Normal file
Binary file not shown.
BIN
数据库/SqlServer/20220705/20220705完整数据库带演示商品.rar
Normal file
BIN
数据库/SqlServer/20220705/20220705完整数据库带演示商品.rar
Normal file
Binary file not shown.
6
数据库/SqlServer/20220705/升级脚本.sql
Normal file
6
数据库/SqlServer/20220705/升级脚本.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
ALTER TABLE [dbo].[CoreCmsUserTocash] ADD [type] INT DEFAULT 0 NOT NULL;
|
||||
ALTER TABLE [dbo].[CoreCmsUserTocash] ADD [message] NVARCHAR (1000) NULL;
|
||||
|
||||
GO
|
||||
EXECUTE sp_addextendedproperty @name = N'MS_Description', @value = N'提现方式', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'CoreCmsUserTocash', @level2type = N'COLUMN', @level2name = N'type';
|
||||
EXECUTE sp_addextendedproperty @name = N'MS_Description', @value = N'反馈结果', @level0type = N'SCHEMA', @level0name = N'dbo', @level1type = N'TABLE', @level1name = N'CoreCmsUserTocash', @level2type = N'COLUMN', @level2name = N'message';
|
||||
@@ -1,3 +1,6 @@
|
||||
2022-07-05
|
||||
【新增】表【CoreCmsUserTocash】用户提现表,增加【type】提现方式,【message】反馈信息两个字段
|
||||
|
||||
2022-07-04
|
||||
【新增】表【WeChatTransactionComponentOrder】微信交易订单,表增加【paymentId】字段。
|
||||
|
||||
|
||||
Reference in New Issue
Block a user