mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-26 17:05:23 +08:00
用户收件地址接口开发调试
This commit is contained in:
@ -32,7 +32,7 @@ CREATE TABLE IF NOT EXISTS "inf_file" (
|
||||
|
||||
CREATE TABLE IF NOT EXISTS "member_address" (
|
||||
"id" bigint(20) NOT NULL GENERATED BY DEFAULT AS IDENTITY,
|
||||
"user_id" int(11) NOT NULL,
|
||||
"user_id" bigint(20) NOT NULL,
|
||||
"name" varchar(10) NOT NULL,
|
||||
"mobile" varchar(20) NOT NULL,
|
||||
"area_code" int(11) NOT NULL,
|
||||
@ -43,6 +43,7 @@ CREATE TABLE IF NOT EXISTS "member_address" (
|
||||
"update_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
"deleted" bit NOT NULL DEFAULT FALSE,
|
||||
"updater" varchar(64) DEFAULT '',
|
||||
"tenant_id" bigint(20) NOT NULL,
|
||||
PRIMARY KEY ("id")
|
||||
) COMMENT '用户收件地址';
|
||||
|
||||
|
Reference in New Issue
Block a user