记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董敬伟
liquidnet-bus-v1
Commits
07167c39
Commit
07167c39
authored
Sep 24, 2021
by
jiangxiulong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
退款本次改变的数据库
parent
8040fc6f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
member_voucher_refund.sql
docu/member_voucher_refund.sql
+18
-0
No files found.
docu/member_voucher_refund.sql
View file @
07167c39
...
...
@@ -278,3 +278,21 @@ create table candy_common_coupon
comment
varchar
(
255
)
)
engine
=
InnoDB
comment
'公有券信息'
;
-- >>------------------------------------------------------------------------------------
-- >>----------------------------------------jxl--------------------------------------------
#
快递票退款发货需要的字段
alter
table
kylin_order_express
add
send_type
tinyint
not
null
default
1
comment
'发货类型 1发出 2用户退款发货'
after
freight_price
;
alter
table
kylin_order_express
add
send_express_type
tinyint
not
null
default
0
comment
'退票发货快递类型 1上门取件 2自主发货'
after
send_type
;
alter
table
kylin_order_express
add
express_contacts
varchar
(
255
)
not
null
default
''
comment
'退票发货快递人'
after
send_express_type
;
alter
table
kylin_order_express
add
express_phone
varchar
(
255
)
not
null
default
''
comment
'退票发货快递联系方式'
after
express_contacts
;
alter
table
kylin_order_express
add
send_express_address
varchar
(
255
)
not
null
default
''
comment
'退票发货快递地址'
after
express_phone
;
alter
table
kylin_order_express
add
appointment_time
varchar
(
255
)
not
null
default
''
comment
'退票发货快递预约取件时间'
after
send_express_address
;
#
快递票退款审核
退款手续费需要的字段
alter
table
kylin_order_refunds
add
price_charges
decimal
(
10
,
2
)
NOT
NULL
DEFAULT
'0.00'
COMMENT
'退款扣除的手续费金额'
after
price_express
;
alter
table
kylin_order_refunds
add
ticket_audit_id
varchar
(
255
)
NOT
NULL
DEFAULT
''
COMMENT
'票务审核人id'
after
refuse
;
alter
table
kylin_order_refunds
add
ticket_audit_name
varchar
(
100
)
NOT
NULL
DEFAULT
''
COMMENT
'票务审核人名称'
after
ticket_audit_id
;
alter
table
kylin_order_refunds
add
ticket_audit_at
timestamp
NULL
DEFAULT
NULL
COMMENT
'票务审核时间'
after
ticket_audit_name
;
alter
table
kylin_order_refunds
add
ticket_audit_remark
varchar
(
200
)
NOT
NULL
DEFAULT
''
COMMENT
'票务审核备至'
after
ticket_audit_at
;
#
手续费
alter
table
kylin_order_tickets
add
refund_price_charges
decimal
(
10
,
2
)
NOT
NULL
DEFAULT
'0.00'
COMMENT
'退款扣除的手续费金额'
after
price_refund
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment