third_party_layer_info.sql 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. Navicat Premium Data Transfer
  3. Source Server : pgsql政务正式2.21.138.148
  4. Source Server Type : PostgreSQL
  5. Source Server Version : 140009
  6. Source Host : 2.21.138.148:5333
  7. Source Catalog : citylifeline_db
  8. Source Schema : public
  9. Target Server Type : PostgreSQL
  10. Target Server Version : 140009
  11. File Encoding : 65001
  12. Date: 17/02/2025 17:02:46
  13. */
  14. -- ----------------------------
  15. -- Table structure for third_party_layer_info
  16. -- ----------------------------
  17. DROP TABLE IF EXISTS "public"."third_party_layer_info";
  18. CREATE TABLE "public"."third_party_layer_info" (
  19. "id" varchar(200) COLLATE "pg_catalog"."default" NOT NULL,
  20. "inlet_name" varchar(255) COLLATE "pg_catalog"."default",
  21. "inlet_pric" varchar(255) COLLATE "pg_catalog"."default",
  22. "counter_sys" varchar(255) COLLATE "pg_catalog"."default",
  23. "update_date" date,
  24. "update_by" varchar(255) COLLATE "pg_catalog"."default",
  25. "create_date" date,
  26. "create_by" varchar(255) COLLATE "pg_catalog"."default"
  27. )
  28. ;
  29. COMMENT ON COLUMN "public"."third_party_layer_info"."inlet_name" IS '大屏图层入口名称';
  30. COMMENT ON COLUMN "public"."third_party_layer_info"."inlet_pric" IS '入口说明';
  31. COMMENT ON COLUMN "public"."third_party_layer_info"."counter_sys" IS '对应系统';
  32. COMMENT ON COLUMN "public"."third_party_layer_info"."update_date" IS '更新时间';
  33. COMMENT ON COLUMN "public"."third_party_layer_info"."update_by" IS '更新人';
  34. COMMENT ON COLUMN "public"."third_party_layer_info"."create_date" IS '创建时间';
  35. COMMENT ON COLUMN "public"."third_party_layer_info"."create_by" IS '创建人';
  36. COMMENT ON TABLE "public"."third_party_layer_info" IS '大屏下钻图层设置-主';
  37. -- ----------------------------
  38. -- Records of third_party_layer_info
  39. -- ----------------------------
  40. INSERT INTO "public"."third_party_layer_info" VALUES ('1165968523671896064', '主图层', '用于登录专项一张图', '供水爆管地下管线燃气爆炸轨交场景第三方破坏道路塌陷城市内涝桥梁倒塌', '2024-12-03', '1', '2023-10-23', '');
  41. -- ----------------------------
  42. -- Primary Key structure for table third_party_layer_info
  43. -- ----------------------------
  44. ALTER TABLE "public"."third_party_layer_info" ADD CONSTRAINT "third_party_layer_info_pkey" PRIMARY KEY ("id");