Commit a8deeb8c by ghxdhr

修改标准样品代码

parent 96b8a4a8
-- ghx
-- ghx
CREATE TABLE "public"."standard_sample" (
"id" int8 NOT NULL,
"name" varchar(255),
"num" varchar(255),
"cid" int8,
"ctime" timestamp(0),
"deleted" int2,
PRIMARY KEY ("id")
)
;
COMMENT ON COLUMN "public"."standard_sample"."id" IS '主键';
COMMENT ON COLUMN "public"."standard_sample"."name" IS '标样名称';
COMMENT ON COLUMN "public"."standard_sample"."num" IS '标样编号';
COMMENT ON COLUMN "public"."standard_sample"."cid" IS '创建人id';
COMMENT ON COLUMN "public"."standard_sample"."ctime" IS '创建时间';
COMMENT ON COLUMN "public"."standard_sample"."deleted" IS '是否删除(0否1是)';
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment