mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-23 23:45:08 +08:00
49 lines
1.8 KiB
Java
49 lines
1.8 KiB
Java
CREATE TABLE IF NOT EXISTS "market_activity" (
|
|
"id" bigint(20) NOT NULL GENERATED BY DEFAULT AS IDENTITY,
|
|
"title" varchar(50) NOT NULL,
|
|
"activity_type" tinyint(4) NOT NULL,
|
|
"status" tinyint(4) NOT NULL,
|
|
"start_time" datetime NOT NULL,
|
|
"end_time" datetime NOT NULL,
|
|
"invalid_time" datetime,
|
|
"delete_time" datetime,
|
|
"time_limited_discount" varchar(2000),
|
|
"full_privilege" varchar(2000),
|
|
"creator" varchar(64) DEFAULT '',
|
|
"create_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
"updater" varchar(64) DEFAULT '',
|
|
"update_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
"deleted" bit NOT NULL DEFAULT FALSE,
|
|
"tenant_id" bigint(20) NOT NULL,
|
|
PRIMARY KEY ("id")
|
|
) COMMENT '促销活动';
|
|
|
|
CREATE TABLE IF NOT EXISTS "promotion_coupon_template" (
|
|
"id" bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY,
|
|
"name" varchar NOT NULL,
|
|
"status" int NOT NULL,
|
|
"total_count" int NOT NULL,
|
|
"take_limit_count" int NOT NULL,
|
|
"take_type" int NOT NULL,
|
|
"use_price" int NOT NULL,
|
|
"product_scope" int NOT NULL,
|
|
"product_spu_ids" varchar,
|
|
"validity_type" int NOT NULL,
|
|
"valid_start_time" datetime,
|
|
"valid_end_time" datetime,
|
|
"fixed_start_term" int,
|
|
"fixed_end_term" int,
|
|
"discount_type" int NOT NULL,
|
|
"discount_percent" int,
|
|
"discount_price" int,
|
|
"discount_limit_price" int,
|
|
"take_count" int NOT NULL DEFAULT 0,
|
|
"use_count" int NOT NULL DEFAULT 0,
|
|
"creator" varchar DEFAULT '',
|
|
"create_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
"updater" varchar DEFAULT '',
|
|
"update_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
|
"deleted" bit NOT NULL DEFAULT FALSE,
|
|
PRIMARY KEY ("id")
|
|
) COMMENT '优惠劵模板';
|