trade:【交易订单】调整交易订单的 afterSale 字段

This commit is contained in:
YunaiV
2022-11-19 09:18:19 +08:00
parent cd2bc112cc
commit e95402ab92
6 changed files with 16 additions and 24 deletions

View File

@@ -32,7 +32,7 @@ CREATE TABLE IF NOT EXISTS "trade_order" (
"receiver_area_id" int NOT NULL,
"receiver_post_code" int,
"receiver_detail_address" varchar NOT NULL,
"refund_status" int NOT NULL,
"after_sale_status" int NOT NULL,
"refund_price" int NOT NULL,
"coupon_id" bigint NOT NULL,
"coupon_price" int NOT NULL,
@@ -61,8 +61,7 @@ CREATE TABLE IF NOT EXISTS "trade_order_item" (
"pay_price" int NOT NULL,
"order_part_price" int NOT NULL,
"order_divide_price" int NOT NULL,
"refund_status" int NOT NULL,
"refund_total" int NOT NULL,
"after_sale_status" int NOT NULL,
"creator" varchar DEFAULT '',
"create_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
"updater" varchar DEFAULT '',