/* Navicat Premium Data Transfer Source Server : 81.71.97.58_3306 Source Server Type : MySQL Source Server Version : 50744 (5.7.44) Source Host : 81.71.97.58:3306 Source Schema : kaiyuan Target Server Type : PostgreSQL Target Server Version : 130000 File Encoding : 65001 Date: 21/04/2025 14:48:15 */ -- ---------------------------- -- Table structure for app_language -- ---------------------------- DROP TABLE IF EXISTS "public"."app_language"; CREATE TABLE "public"."app_language" ( "id" int8 GENERATED BY DEFAULT AS IDENTITY (START WITH 5 INCREMENT BY 1), "language" varchar(20), "country" varchar(20), "time_zone" varchar(20), "create_by" varchar(64), "create_time" timestamp, "lang_name" varchar(20) ) ; COMMENT ON COLUMN "public"."app_language"."id" IS '主键ID'; COMMENT ON COLUMN "public"."app_language"."language" IS '语言'; COMMENT ON COLUMN "public"."app_language"."country" IS '国家'; COMMENT ON COLUMN "public"."app_language"."time_zone" IS '时区'; COMMENT ON COLUMN "public"."app_language"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."app_language"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."app_language"."lang_name" IS '语言名称'; COMMENT ON TABLE "public"."app_language" IS 'app语言'; -- ---------------------------- -- Records of app_language -- ---------------------------- BEGIN; INSERT INTO "public"."app_language" ("id", "language", "country", "time_zone", "create_by", "create_time", "lang_name") VALUES (2, 'zh-CN', '中国', 'UTF+8', 'admin', '2024-05-31 14:25:30', '简体中文'); INSERT INTO "public"."app_language" ("id", "language", "country", "time_zone", "create_by", "create_time", "lang_name") VALUES (3, 'en-US', '欧美', 'UTC', 'admin', '2024-05-31 14:25:30', 'English'); INSERT INTO "public"."app_language" ("id", "language", "country", "time_zone", "create_by", "create_time", "lang_name") VALUES (4, 'jp', '日本', 'utf-9', 'admin', '2024-05-31 14:25:30', '日语'); COMMIT; -- ---------------------------- -- Primary Key structure for table app_language -- ---------------------------- ALTER TABLE "public"."app_language" ADD PRIMARY KEY ("id"); -- ---------------------------- -- Table structure for app_preferences -- ---------------------------- DROP TABLE IF EXISTS "public"."app_preferences"; CREATE TABLE "public"."app_preferences" ( "id" int8 GENERATED BY DEFAULT AS IDENTITY (START WITH 2 INCREMENT BY 1), "user_id" int8, "language" varchar(20), "time_zone" varchar(20), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500) ) ; COMMENT ON COLUMN "public"."app_preferences"."id" IS '主键id'; COMMENT ON COLUMN "public"."app_preferences"."user_id" IS '用户'; COMMENT ON COLUMN "public"."app_preferences"."language" IS '语言'; COMMENT ON COLUMN "public"."app_preferences"."time_zone" IS '时区'; COMMENT ON COLUMN "public"."app_preferences"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."app_preferences"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."app_preferences"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."app_preferences"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."app_preferences"."remark" IS '备注'; COMMENT ON TABLE "public"."app_preferences" IS 'APP用户偏好设置'; -- ---------------------------- -- Records of app_preferences -- ---------------------------- BEGIN; INSERT INTO "public"."app_preferences" ("id", "user_id", "language", "time_zone", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (1, 1, 'zh-CN', NULL, 'admin', '2024-05-31 14:25:30', NULL, NULL, NULL); COMMIT; -- ---------------------------- -- Indexes structure for table app_preferences -- ---------------------------- CREATE UNIQUE INDEX "PRIAMRK_USER_LANG" ON "public"."app_preferences" USING btree ( "user_id" ASC, "language" ASC ); COMMENT ON INDEX "public"."PRIAMRK_USER_LANG" IS '用户语言唯一'; -- ---------------------------- -- Primary Key structure for table app_preferences -- ---------------------------- ALTER TABLE "public"."app_preferences" ADD PRIMARY KEY ("id"); -- ---------------------------- -- Table structure for gen_table -- ---------------------------- DROP TABLE IF EXISTS "public"."gen_table"; CREATE TABLE "public"."gen_table" ( "table_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1 INCREMENT BY 1), "table_name" varchar(200), "data_name" varchar(200), "table_comment" varchar(500), "sub_table_name" varchar(64), "sub_table_fk_name" varchar(64), "class_name" varchar(100), "tpl_category" varchar(200), "package_name" varchar(100), "module_name" varchar(30), "business_name" varchar(30), "function_name" varchar(50), "function_author" varchar(50), "gen_type" char(1), "gen_path" varchar(200), "options" varchar(1000), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500) ) ; COMMENT ON COLUMN "public"."gen_table"."table_id" IS '编号'; COMMENT ON COLUMN "public"."gen_table"."table_name" IS '表名称'; COMMENT ON COLUMN "public"."gen_table"."data_name" IS '数据源名称'; COMMENT ON COLUMN "public"."gen_table"."table_comment" IS '表描述'; COMMENT ON COLUMN "public"."gen_table"."sub_table_name" IS '关联子表的表名'; COMMENT ON COLUMN "public"."gen_table"."sub_table_fk_name" IS '子表关联的外键名'; COMMENT ON COLUMN "public"."gen_table"."class_name" IS '实体类名称'; COMMENT ON COLUMN "public"."gen_table"."tpl_category" IS '使用的模板(crud单表操作 tree树表操作)'; COMMENT ON COLUMN "public"."gen_table"."package_name" IS '生成包路径'; COMMENT ON COLUMN "public"."gen_table"."module_name" IS '生成模块名'; COMMENT ON COLUMN "public"."gen_table"."business_name" IS '生成业务名'; COMMENT ON COLUMN "public"."gen_table"."function_name" IS '生成功能名'; COMMENT ON COLUMN "public"."gen_table"."function_author" IS '生成功能作者'; COMMENT ON COLUMN "public"."gen_table"."gen_type" IS '生成代码方式(0zip压缩包 1自定义路径)'; COMMENT ON COLUMN "public"."gen_table"."gen_path" IS '生成路径(不填默认项目路径)'; COMMENT ON COLUMN "public"."gen_table"."options" IS '其它生成选项'; COMMENT ON COLUMN "public"."gen_table"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."gen_table"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."gen_table"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."gen_table"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."gen_table"."remark" IS '备注'; COMMENT ON TABLE "public"."gen_table" IS '代码生成业务表'; -- ---------------------------- -- Records of gen_table -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for gen_table_column -- ---------------------------- DROP TABLE IF EXISTS "public"."gen_table_column"; CREATE TABLE "public"."gen_table_column" ( "column_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1 INCREMENT BY 1), "table_id" varchar(64), "column_name" varchar(200), "column_comment" varchar(500), "column_type" varchar(100), "java_type" varchar(500), "java_field" varchar(200), "is_pk" char(1), "is_increment" char(1), "is_required" char(1), "is_insert" char(1), "is_edit" char(1), "is_list" char(1), "is_query" char(1), "query_type" varchar(200), "html_type" varchar(200), "dict_type" varchar(200), "sort" int4, "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp ) ; COMMENT ON COLUMN "public"."gen_table_column"."column_id" IS '编号'; COMMENT ON COLUMN "public"."gen_table_column"."table_id" IS '归属表编号'; COMMENT ON COLUMN "public"."gen_table_column"."column_name" IS '列名称'; COMMENT ON COLUMN "public"."gen_table_column"."column_comment" IS '列描述'; COMMENT ON COLUMN "public"."gen_table_column"."column_type" IS '列类型'; COMMENT ON COLUMN "public"."gen_table_column"."java_type" IS 'JAVA类型'; COMMENT ON COLUMN "public"."gen_table_column"."java_field" IS 'JAVA字段名'; COMMENT ON COLUMN "public"."gen_table_column"."is_pk" IS '是否主键(1是)'; COMMENT ON COLUMN "public"."gen_table_column"."is_increment" IS '是否自增(1是)'; COMMENT ON COLUMN "public"."gen_table_column"."is_required" IS '是否必填(1是)'; COMMENT ON COLUMN "public"."gen_table_column"."is_insert" IS '是否为插入字段(1是)'; COMMENT ON COLUMN "public"."gen_table_column"."is_edit" IS '是否编辑字段(1是)'; COMMENT ON COLUMN "public"."gen_table_column"."is_list" IS '是否列表字段(1是)'; COMMENT ON COLUMN "public"."gen_table_column"."is_query" IS '是否查询字段(1是)'; COMMENT ON COLUMN "public"."gen_table_column"."query_type" IS '查询方式(等于、不等于、大于、小于、范围)'; COMMENT ON COLUMN "public"."gen_table_column"."html_type" IS '显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)'; COMMENT ON COLUMN "public"."gen_table_column"."dict_type" IS '字典类型'; COMMENT ON COLUMN "public"."gen_table_column"."sort" IS '排序'; COMMENT ON COLUMN "public"."gen_table_column"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."gen_table_column"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."gen_table_column"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."gen_table_column"."update_time" IS '更新时间'; COMMENT ON TABLE "public"."gen_table_column" IS '代码生成业务表字段'; -- ---------------------------- -- Records of gen_table_column -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for iot_category -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_category"; CREATE TABLE "public"."iot_category" ( "category_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 8 INCREMENT BY 1), "category_name" varchar(64) NOT NULL, "tenant_id" int8 NOT NULL, "tenant_name" varchar(30) NOT NULL, "is_sys" int2 NOT NULL, "parent_id" int8, "order_num" int4, "del_flag" char(1), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500) ) ; COMMENT ON COLUMN "public"."iot_category"."category_id" IS '产品分类ID'; COMMENT ON COLUMN "public"."iot_category"."category_name" IS '产品分类名称'; COMMENT ON COLUMN "public"."iot_category"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "public"."iot_category"."tenant_name" IS '租户名称'; COMMENT ON COLUMN "public"."iot_category"."is_sys" IS '是否系统通用(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_category"."parent_id" IS '父级ID'; COMMENT ON COLUMN "public"."iot_category"."order_num" IS '显示顺序'; COMMENT ON COLUMN "public"."iot_category"."del_flag" IS '删除标志(0代表存在 2代表删除)'; COMMENT ON COLUMN "public"."iot_category"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_category"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_category"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_category"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_category"."remark" IS '备注'; COMMENT ON TABLE "public"."iot_category" IS '产品分类'; -- ---------------------------- -- Records of iot_category -- ---------------------------- BEGIN; INSERT INTO "public"."iot_category" ("category_id", "category_name", "tenant_id", "tenant_name", "is_sys", "parent_id", "order_num", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (1, '电工照明', 1, 'admin', 1, 0, 1, '0', '', '2022-03-01 11:44:37', '', '2023-04-10 01:12:48', '例如:通断器、开关、插座、窗帘、灯'); INSERT INTO "public"."iot_category" ("category_id", "category_name", "tenant_id", "tenant_name", "is_sys", "parent_id", "order_num", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (2, '家居安防', 1, 'admin', 1, 0, 2, '0', '', '2021-12-18 14:46:52', '', '2021-12-18 14:49:48', '例如:智能门锁、摄像头、智能窗帘'); INSERT INTO "public"."iot_category" ("category_id", "category_name", "tenant_id", "tenant_name", "is_sys", "parent_id", "order_num", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (3, '环境电器', 1, 'admin', 1, 0, 3, '0', '', '2021-12-18 14:50:24', '', '2023-04-10 01:12:53', '例如:加湿器、风扇、扫地机器人'); INSERT INTO "public"."iot_category" ("category_id", "category_name", "tenant_id", "tenant_name", "is_sys", "parent_id", "order_num", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (4, '大家电', 1, 'admin', 1, 0, 4, '0', '', '2021-12-18 14:50:58', '', '2021-12-18 14:52:30', '例如:冰箱、热水器、电视'); INSERT INTO "public"."iot_category" ("category_id", "category_name", "tenant_id", "tenant_name", "is_sys", "parent_id", "order_num", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (5, '厨房电器', 1, 'admin', 1, 0, 5, '0', '', '2021-12-18 14:51:42', '', '2021-12-18 14:52:35', '例如:油烟机、烤箱、电饭煲'); INSERT INTO "public"."iot_category" ("category_id", "category_name", "tenant_id", "tenant_name", "is_sys", "parent_id", "order_num", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (6, '个护健康', 1, 'admin', 1, 0, 6, '0', '', '2021-12-18 14:52:15', '', '2021-12-18 14:52:40', '例如:洗衣机、按摩椅'); INSERT INTO "public"."iot_category" ("category_id", "category_name", "tenant_id", "tenant_name", "is_sys", "parent_id", "order_num", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (7, '其他', 1, 'admin', 1, 0, 7, '0', '', '2021-12-18 14:52:54', '', '2021-12-20 15:04:33', '其他'); COMMIT; -- ---------------------------- -- Table structure for iot_device -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_device"; CREATE TABLE "public"."iot_device" ( "device_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 141 INCREMENT BY 1), "device_name" varchar(64) NOT NULL, "product_id" int8 NOT NULL, "product_name" varchar(64) NOT NULL, "user_id" int8 NOT NULL, "user_name" varchar(30) NOT NULL, "tenant_id" int8 NOT NULL, "tenant_name" varchar(30) NOT NULL, "serial_number" varchar(64) NOT NULL, "gw_dev_code" varchar(64), "firmware_version" float4 NOT NULL, "status" int2 NOT NULL, "rssi" int2, "is_shadow" int2, "location_way" int2, "things_model_value" text, "network_address" varchar(255), "network_ip" varchar(32), "longitude" float8, "latitude" float8, "active_time" timestamp, "summary" text, "img_url" varchar(255), "del_flag" char(1), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500), "is_simulate" int2, "slave_id" int4 ) ; COMMENT ON COLUMN "public"."iot_device"."device_id" IS '设备ID'; COMMENT ON COLUMN "public"."iot_device"."device_name" IS '设备名称'; COMMENT ON COLUMN "public"."iot_device"."product_id" IS '产品ID'; COMMENT ON COLUMN "public"."iot_device"."product_name" IS '产品名称'; COMMENT ON COLUMN "public"."iot_device"."user_id" IS '用户ID'; COMMENT ON COLUMN "public"."iot_device"."user_name" IS '用户昵称'; COMMENT ON COLUMN "public"."iot_device"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "public"."iot_device"."tenant_name" IS '租户名称'; COMMENT ON COLUMN "public"."iot_device"."serial_number" IS '设备编号'; COMMENT ON COLUMN "public"."iot_device"."gw_dev_code" IS '子设备网关编号'; COMMENT ON COLUMN "public"."iot_device"."firmware_version" IS '固件版本'; COMMENT ON COLUMN "public"."iot_device"."status" IS '设备状态(1-未激活,2-禁用,3-在线,4-离线)'; COMMENT ON COLUMN "public"."iot_device"."rssi" IS '信号强度( 信号极好4格[-55— 0], 信号好3格[-70— -55], 信号一般2格[-85— -70], 信号差1格[-100— -85])'; COMMENT ON COLUMN "public"."iot_device"."is_shadow" IS '是否启用设备影子(0=禁用,1=启用)'; COMMENT ON COLUMN "public"."iot_device"."location_way" IS '定位方式(1=ip自动定位,2=设备定位,3=自定义)'; COMMENT ON COLUMN "public"."iot_device"."things_model_value" IS '物模型值'; COMMENT ON COLUMN "public"."iot_device"."network_address" IS '设备所在地址'; COMMENT ON COLUMN "public"."iot_device"."network_ip" IS '设备入网IP'; COMMENT ON COLUMN "public"."iot_device"."longitude" IS '设备经度'; COMMENT ON COLUMN "public"."iot_device"."latitude" IS '设备纬度'; COMMENT ON COLUMN "public"."iot_device"."active_time" IS '激活时间'; COMMENT ON COLUMN "public"."iot_device"."summary" IS '设备摘要,格式[{"name":"device"},{"chip":"esp8266"}]'; COMMENT ON COLUMN "public"."iot_device"."img_url" IS '图片地址'; COMMENT ON COLUMN "public"."iot_device"."del_flag" IS '删除标志(0代表存在 2代表删除)'; COMMENT ON COLUMN "public"."iot_device"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_device"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_device"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_device"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_device"."remark" IS '备注'; COMMENT ON COLUMN "public"."iot_device"."is_simulate" IS '是否是模拟设备'; COMMENT ON COLUMN "public"."iot_device"."slave_id" IS '从机id'; COMMENT ON TABLE "public"."iot_device" IS '设备'; -- ---------------------------- -- Records of iot_device -- ---------------------------- BEGIN; INSERT INTO "public"."iot_device" ("device_id", "device_name", "product_id", "product_name", "user_id", "user_name", "tenant_id", "tenant_name", "serial_number", "gw_dev_code", "firmware_version", "status", "rssi", "is_shadow", "location_way", "things_model_value", "network_address", "network_ip", "longitude", "latitude", "active_time", "summary", "img_url", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "is_simulate", "slave_id") VALUES (108, '温湿度开关', 41, '★智能开关产品', 1, 'admin', 1, 'admin', 'D1ELV3A5TOJS', NULL, 1.00, 4, -51, 1, 1, '[{"id": "irc", "name": "射频遥控", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "switch", "name": "设备开关", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "report_monitor", "name": "上报数据", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "humidity", "name": "空气湿度", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "co2", "name": "二氧化碳", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "light_color", "name": "灯光色值", "value": " , , , ", "shadow": " , , , ", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "gear", "name": "运行档位", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "reset", "name": "设备重启", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "status", "name": "上报状态", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "temperature", "name": "空气温度", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "message", "name": "屏显消息", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "brightness", "name": "室内亮度", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}]', ' 本机地址', '127.0.0.1', 113.128512, 23.027759, '2023-02-26 00:00:00', '{"chip": "esp8266", "name": "wumei-smart", "author": "kerwincui", "create": "2022-06-06", "version": 1.6}', NULL, '0', '', '2025-02-25 23:15:56', '', '2024-04-23 15:47:11', NULL, NULL, NULL); INSERT INTO "public"."iot_device" ("device_id", "device_name", "product_id", "product_name", "user_id", "user_name", "tenant_id", "tenant_name", "serial_number", "gw_dev_code", "firmware_version", "status", "rssi", "is_shadow", "location_way", "things_model_value", "network_address", "network_ip", "longitude", "latitude", "active_time", "summary", "img_url", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "is_simulate", "slave_id") VALUES (109, '网关设备', 55, '★网关产品', 1, 'admin', 1, 'admin', 'D1PGLPG58KZ2', NULL, 1.00, 4, -73, 1, 3, '[{"id": "category_gear", "name": "运行档位", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "switch", "name": "设备开关", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "category_switch", "name": "设备开关", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "category_light", "ts": "2023-09-25 17:56:08.848", "name": "光照", "value": "68", "shadow": "68", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "device_report_monitor", "name": "上报监测数据", "value": " , , , , , , ", "shadow": " , , , , , , ", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "light_color", "name": "灯光色值", "value": " , , , ", "shadow": " , , , ", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "gear", "name": "运行档位", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "message", "name": "屏显消息", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "temperature", "ts": "2023-09-25 17:56:08.582", "name": "空气温度", "value": "23.69", "shadow": "23.69", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "device_irc", "name": "射频遥控", "value": " , , , , , , ", "shadow": " , , , , , , ", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "brightness", "ts": "2023-09-25 17:56:08.671", "name": "室内亮度", "value": "5387", "shadow": "5387", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "report_monitor", "name": "上报监测数据", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "device_switch", "ts": "2023-09-25 17:56:26.188", "name": "设备开关", "value": "1,1,1, ,1,1, ", "shadow": "1,1,1, ,1,1, ", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "category_temperature", "ts": "2023-09-25 17:56:09.203", "name": "空气温度-只读", "value": "95", "shadow": "95", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "device_co2", "ts": "2023-09-25 17:56:11.229", "name": "二氧化碳", "value": "3780,2612,2145,3988,5697, , ", "shadow": "3780,2612,2145,3988,5697, , ", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "device_gear", "ts": "2023-09-25 17:56:28.066", "name": "运行档位", "value": "0,0,0, ,0,0, ", "shadow": "0,0,0, ,0,0, ", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "category_humidity", "ts": "2023-09-25 17:56:09.025", "name": "空气湿度", "value": "90", "shadow": "90", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "category_report_monitor", "name": "上报监测数据", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "category_irc", "name": "射频遥控", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "reset", "name": "设备重启", "value": "", "shadow": "", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "device_temperature", "ts": "2023-09-25 17:56:11.45", "name": "空气温度-只读", "value": "86,39,4,80,52, , ", "shadow": "86,39,4,80,52, , ", "isChart": 0, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}]', '云南省曲靖市 移通', '183.225.206.92', 104.802435, 26.496407, '2023-02-26 00:00:00', '{"chip": "esp8266", "name": "wumei-smart", "author": "kerwincui", "create": "2022-06-06", "version": 1.6}', NULL, '0', '', '2025-02-25 23:17:31', '', '2023-09-25 23:14:52', NULL, NULL, NULL); INSERT INTO "public"."iot_device" ("device_id", "device_name", "product_id", "product_name", "user_id", "user_name", "tenant_id", "tenant_name", "serial_number", "gw_dev_code", "firmware_version", "status", "rssi", "is_shadow", "location_way", "things_model_value", "network_address", "network_ip", "longitude", "latitude", "active_time", "summary", "img_url", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "is_simulate", "slave_id") VALUES (140, '视频监控', 88, '¥视频监控产品', 1, 'admin', 1, 'admin', '11010200001320000001', NULL, 1.00, 4, 0, 0, 1, NULL, '广东省 移通', '120.231.214.134', NULL, NULL, '2023-04-11 21:14:16', '{"port": 5060, "firmware": "V5.7.4", "transport": "UDP", "streammode": "UDP", "hostaddress": "192.168.2.119:5060", "manufacturer": "Hikvision"}', NULL, '0', '', '2023-04-11 21:12:35', '', '2023-04-11 22:11:01', NULL, 0, NULL); COMMIT; -- ---------------------------- -- Table structure for iot_device_group -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_device_group"; CREATE TABLE "public"."iot_device_group" ( "device_id" int8 NOT NULL, "group_id" int8 NOT NULL ) ; COMMENT ON COLUMN "public"."iot_device_group"."device_id" IS '设备ID'; COMMENT ON COLUMN "public"."iot_device_group"."group_id" IS '分组ID'; COMMENT ON TABLE "public"."iot_device_group" IS '设备分组'; -- ---------------------------- -- Records of iot_device_group -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for iot_device_job -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_device_job"; CREATE TABLE "public"."iot_device_job" ( "job_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 6 INCREMENT BY 1), "job_name" varchar(64) NOT NULL, "job_group" varchar(64) NOT NULL, "cron_expression" varchar(255), "misfire_policy" varchar(20), "concurrent" char(1), "status" char(1), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500), "device_id" int8, "serial_number" varchar(64), "device_name" varchar(64), "is_advance" int2, "actions" text, "job_type" int2, "product_id" int8, "product_name" varchar(64), "scene_id" int8, "alert_id" int8, "alert_trigger" text ) ; COMMENT ON COLUMN "public"."iot_device_job"."job_id" IS '任务ID'; COMMENT ON COLUMN "public"."iot_device_job"."job_name" IS '任务名称'; COMMENT ON COLUMN "public"."iot_device_job"."job_group" IS '任务组名'; COMMENT ON COLUMN "public"."iot_device_job"."cron_expression" IS 'cron执行表达式'; COMMENT ON COLUMN "public"."iot_device_job"."misfire_policy" IS '计划执行错误策略(1立即执行 2执行一次 3放弃执行)'; COMMENT ON COLUMN "public"."iot_device_job"."concurrent" IS '是否并发执行(0允许 1禁止)'; COMMENT ON COLUMN "public"."iot_device_job"."status" IS '状态(0正常 1暂停)'; COMMENT ON COLUMN "public"."iot_device_job"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_device_job"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_device_job"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_device_job"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_device_job"."remark" IS '备注信息'; COMMENT ON COLUMN "public"."iot_device_job"."device_id" IS '设备ID'; COMMENT ON COLUMN "public"."iot_device_job"."serial_number" IS '设备编号'; COMMENT ON COLUMN "public"."iot_device_job"."device_name" IS '设备名称'; COMMENT ON COLUMN "public"."iot_device_job"."is_advance" IS '是否详细corn表达式(1=是,0=否)'; COMMENT ON COLUMN "public"."iot_device_job"."actions" IS '执行的动作集合'; COMMENT ON COLUMN "public"."iot_device_job"."job_type" IS '任务类型(1=设备定时,2=设备告警,3=场景联动)'; COMMENT ON COLUMN "public"."iot_device_job"."product_id" IS '产品ID'; COMMENT ON COLUMN "public"."iot_device_job"."product_name" IS '产品名称'; COMMENT ON COLUMN "public"."iot_device_job"."scene_id" IS '场景联动ID'; COMMENT ON COLUMN "public"."iot_device_job"."alert_id" IS '告警ID'; COMMENT ON COLUMN "public"."iot_device_job"."alert_trigger" IS '定时告警触发器'; COMMENT ON TABLE "public"."iot_device_job" IS '设备定时'; -- ---------------------------- -- Records of iot_device_job -- ---------------------------- BEGIN; INSERT INTO "public"."iot_device_job" ("job_id", "job_name", "job_group", "cron_expression", "misfire_policy", "concurrent", "status", "create_by", "create_time", "update_by", "update_time", "remark", "device_id", "serial_number", "device_name", "is_advance", "actions", "job_type", "product_id", "product_name", "scene_id", "alert_id", "alert_trigger") VALUES (4, 'P', 'DEFAULT', '0 08 11 ? * 1,2,3,4,5,6,7', '2', '1', '0', 'admin', '2023-04-15 11:08:37', '', NULL, '', 108, 'D1ELV3A5TOJS', '★温湿度开关', 0, '[{"id": "gear", "name": "运行档位", "type": 2, "value": "2", "deviceId": 108, "deviceName": "★温湿度开关"}]', 1, 41, '★智能开关产品', NULL, NULL, NULL); INSERT INTO "public"."iot_device_job" ("job_id", "job_name", "job_group", "cron_expression", "misfire_policy", "concurrent", "status", "create_by", "create_time", "update_by", "update_time", "remark", "device_id", "serial_number", "device_name", "is_advance", "actions", "job_type", "product_id", "product_name", "scene_id", "alert_id", "alert_trigger") VALUES (5, '告警定时触发', 'DEFAULT', '0 13 11 ? * 1,2,3,4,5,6,7', '2', '1', '0', '', '2023-04-15 11:14:06', '', NULL, '', NULL, NULL, '告警定时触发', 0, '[{"id": "gear", "name": "运行档位", "type": 2, "value": "1", "productId": 96, "productName": "★网关产品"}]', 2, 96, '★网关产品', NULL, 50, '{"id": "temperature", "name": "空气温度", "type": 1, "jobId": 0, "value": "1", "params": {}, "source": 2, "status": 1, "alertId": 50, "operator": "=", "isAdvance": 0, "productId": 96, "productName": "★网关产品", "cronExpression": "0 13 11 ? * 1,2,3,4,5,6,7"}'); COMMIT; -- ---------------------------- -- Table structure for iot_device_log -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_device_log"; CREATE TABLE "public"."iot_device_log" ( "log_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1 INCREMENT BY 1), "identify" varchar(64) NOT NULL, "model_name" varchar(255), "log_type" int2 NOT NULL, "log_value" varchar(64) NOT NULL, "device_id" int8, "device_name" varchar(64), "serial_number" varchar(64), "is_monitor" int2 NOT NULL, "mode" int2 NOT NULL, "user_id" int8, "user_name" varchar(30), "tenant_id" int8, "tenant_name" varchar(30), "create_by" varchar(64), "create_time" timestamp, "remark" varchar(200) ) ; COMMENT ON COLUMN "public"."iot_device_log"."log_id" IS '设备监测信息ID'; COMMENT ON COLUMN "public"."iot_device_log"."identify" IS '标识符'; COMMENT ON COLUMN "public"."iot_device_log"."model_name" IS '物模型名称'; COMMENT ON COLUMN "public"."iot_device_log"."log_type" IS '类型(1=属性上报,2=调用功能,3=事件上报,4=设备升级,5=设备上线,6=设备离线)'; COMMENT ON COLUMN "public"."iot_device_log"."log_value" IS '日志值'; COMMENT ON COLUMN "public"."iot_device_log"."device_id" IS '设备ID'; COMMENT ON COLUMN "public"."iot_device_log"."device_name" IS '设备名称'; COMMENT ON COLUMN "public"."iot_device_log"."serial_number" IS '设备编号'; COMMENT ON COLUMN "public"."iot_device_log"."is_monitor" IS '是否监测数据(1=是,0=否)'; COMMENT ON COLUMN "public"."iot_device_log"."mode" IS '模式(1=影子模式,2=在线模式,3=其他)'; COMMENT ON COLUMN "public"."iot_device_log"."user_id" IS '用户ID'; COMMENT ON COLUMN "public"."iot_device_log"."user_name" IS '用户昵称'; COMMENT ON COLUMN "public"."iot_device_log"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "public"."iot_device_log"."tenant_name" IS '租户名称'; COMMENT ON COLUMN "public"."iot_device_log"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_device_log"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_device_log"."remark" IS '备注'; COMMENT ON TABLE "public"."iot_device_log" IS '设备日志'; -- ---------------------------- -- Records of iot_device_log -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for iot_device_template -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_device_template"; CREATE TABLE "public"."iot_device_template" ( "id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 40 INCREMENT BY 1), "product_id" int8, "template_id" int8 ) ; COMMENT ON COLUMN "public"."iot_device_template"."id" IS '自增id'; COMMENT ON COLUMN "public"."iot_device_template"."product_id" IS '产品id'; COMMENT ON COLUMN "public"."iot_device_template"."template_id" IS '采集点模板id'; COMMENT ON TABLE "public"."iot_device_template" IS '设备采集点模板关联对象'; -- ---------------------------- -- Records of iot_device_template -- ---------------------------- BEGIN; INSERT INTO "public"."iot_device_template" ("id", "product_id", "template_id") VALUES (2, 112, 1); INSERT INTO "public"."iot_device_template" ("id", "product_id", "template_id") VALUES (3, 118, 4); INSERT INTO "public"."iot_device_template" ("id", "product_id", "template_id") VALUES (4, 120, 6); INSERT INTO "public"."iot_device_template" ("id", "product_id", "template_id") VALUES (5, 121, 1); INSERT INTO "public"."iot_device_template" ("id", "product_id", "template_id") VALUES (7, 123, 11); INSERT INTO "public"."iot_device_template" ("id", "product_id", "template_id") VALUES (33, 119, 2); INSERT INTO "public"."iot_device_template" ("id", "product_id", "template_id") VALUES (34, 121, 3); INSERT INTO "public"."iot_device_template" ("id", "product_id", "template_id") VALUES (35, 122, 3); INSERT INTO "public"."iot_device_template" ("id", "product_id", "template_id") VALUES (36, 125, 6); INSERT INTO "public"."iot_device_template" ("id", "product_id", "template_id") VALUES (38, 127, 7); INSERT INTO "public"."iot_device_template" ("id", "product_id", "template_id") VALUES (39, 128, 1); COMMIT; -- ---------------------------- -- Table structure for iot_device_user -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_device_user"; CREATE TABLE "public"."iot_device_user" ( "device_id" int8 NOT NULL, "user_id" int8 NOT NULL, "tenant_id" int8 NOT NULL, "tenant_name" varchar(30) NOT NULL, "device_name" varchar(64) NOT NULL, "phonenumber" varchar(11), "user_name" varchar(30) NOT NULL, "is_owner" int2 NOT NULL, "perms" varchar(255), "del_flag" char(1), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500) ) ; COMMENT ON COLUMN "public"."iot_device_user"."device_id" IS '设备ID'; COMMENT ON COLUMN "public"."iot_device_user"."user_id" IS '用户ID'; COMMENT ON COLUMN "public"."iot_device_user"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "public"."iot_device_user"."tenant_name" IS '租户名称'; COMMENT ON COLUMN "public"."iot_device_user"."device_name" IS '设备名称'; COMMENT ON COLUMN "public"."iot_device_user"."phonenumber" IS '手机号码'; COMMENT ON COLUMN "public"."iot_device_user"."user_name" IS '用户昵称'; COMMENT ON COLUMN "public"."iot_device_user"."is_owner" IS '是否为设备所有者(0=否,1=是)'; COMMENT ON COLUMN "public"."iot_device_user"."perms" IS '用户物模型权限,多个以英文逗号分隔'; COMMENT ON COLUMN "public"."iot_device_user"."del_flag" IS '删除标志(0代表存在 2代表删除)'; COMMENT ON COLUMN "public"."iot_device_user"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_device_user"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_device_user"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_device_user"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_device_user"."remark" IS '备注'; COMMENT ON TABLE "public"."iot_device_user" IS '设备用户'; -- ---------------------------- -- Records of iot_device_user -- ---------------------------- BEGIN; INSERT INTO "public"."iot_device_user" ("device_id", "user_id", "tenant_id", "tenant_name", "device_name", "phonenumber", "user_name", "is_owner", "perms", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (108, 1, 1, 'admin', '★温湿度开关', '15888888888', 'admin', 1, NULL, '0', '', '2023-02-25 23:15:57', '', NULL, NULL); INSERT INTO "public"."iot_device_user" ("device_id", "user_id", "tenant_id", "tenant_name", "device_name", "phonenumber", "user_name", "is_owner", "perms", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (109, 1, 1, 'admin', '★网关设备', '15888888888', 'admin', 1, NULL, '0', '', '2023-02-25 23:17:32', '', NULL, NULL); INSERT INTO "public"."iot_device_user" ("device_id", "user_id", "tenant_id", "tenant_name", "device_name", "phonenumber", "user_name", "is_owner", "perms", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (109, 3, 1, 'admin', '★网关设备', '15888888881', 'fastbee-t2', 0, 'ota,timer,log,monitor,statistic,reset,gear,switch', '0', '', '2023-09-03 01:17:03', '', '2023-09-03 11:05:06', NULL); INSERT INTO "public"."iot_device_user" ("device_id", "user_id", "tenant_id", "tenant_name", "device_name", "phonenumber", "user_name", "is_owner", "perms", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (109, 7, 1, 'admin', '★网关设备', '18257292958', 'shenzehui', 0, NULL, '0', '', '2023-08-24 08:26:34', '', NULL, NULL); INSERT INTO "public"."iot_device_user" ("device_id", "user_id", "tenant_id", "tenant_name", "device_name", "phonenumber", "user_name", "is_owner", "perms", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (109, 8, 1, 'admin', '★网关设备', '15752221201', 'shadow', 0, NULL, '0', '', '2023-08-24 08:25:44', '', NULL, NULL); INSERT INTO "public"."iot_device_user" ("device_id", "user_id", "tenant_id", "tenant_name", "device_name", "phonenumber", "user_name", "is_owner", "perms", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (118, 1, 1, 'admin', '¥MODBUS网关设备', '15888888888', 'admin', 1, NULL, '0', '', '2023-02-28 16:49:18', '', NULL, NULL); INSERT INTO "public"."iot_device_user" ("device_id", "user_id", "tenant_id", "tenant_name", "device_name", "phonenumber", "user_name", "is_owner", "perms", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (140, 1, 1, 'admin', '¥视频监控', '15888888888', 'admin', 1, NULL, '0', '', '2023-04-11 21:12:37', '', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for iot_event_log -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_event_log"; CREATE TABLE "public"."iot_event_log" ( "log_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1 INCREMENT BY 1), "identify" varchar(64) NOT NULL, "model_name" varchar(255), "log_type" int2 NOT NULL, "log_value" varchar(64) NOT NULL, "device_id" int8, "device_name" varchar(64), "serial_number" varchar(64), "is_monitor" int2 NOT NULL, "mode" int2 NOT NULL, "user_id" int8, "user_name" varchar(30), "tenant_id" int8, "tenant_name" varchar(30), "create_by" varchar(64), "create_time" timestamp, "remark" varchar(200) ) ; COMMENT ON COLUMN "public"."iot_event_log"."log_id" IS '设备事件日志ID'; COMMENT ON COLUMN "public"."iot_event_log"."identify" IS '标识符'; COMMENT ON COLUMN "public"."iot_event_log"."model_name" IS '物模型名称'; COMMENT ON COLUMN "public"."iot_event_log"."log_type" IS '类型(3=事件上报,5=设备上线,6=设备离线)'; COMMENT ON COLUMN "public"."iot_event_log"."log_value" IS '日志值'; COMMENT ON COLUMN "public"."iot_event_log"."device_id" IS '设备ID'; COMMENT ON COLUMN "public"."iot_event_log"."device_name" IS '设备名称'; COMMENT ON COLUMN "public"."iot_event_log"."serial_number" IS '设备编号'; COMMENT ON COLUMN "public"."iot_event_log"."is_monitor" IS '是否监测数据(1=是,0=否)'; COMMENT ON COLUMN "public"."iot_event_log"."mode" IS '模式(1=影子模式,2=在线模式,3=其他)'; COMMENT ON COLUMN "public"."iot_event_log"."user_id" IS '用户ID'; COMMENT ON COLUMN "public"."iot_event_log"."user_name" IS '用户昵称'; COMMENT ON COLUMN "public"."iot_event_log"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "public"."iot_event_log"."tenant_name" IS '租户名称'; COMMENT ON COLUMN "public"."iot_event_log"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_event_log"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_event_log"."remark" IS '备注'; COMMENT ON TABLE "public"."iot_event_log" IS '事件日志'; -- ---------------------------- -- Records of iot_event_log -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for iot_function_log -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_function_log"; CREATE TABLE "public"."iot_function_log" ( "id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1 INCREMENT BY 1), "identify" varchar(64) NOT NULL, "fun_type" int4 NOT NULL, "fun_value" varchar(64) NOT NULL, "message_id" varchar(64), "device_name" varchar(64), "serial_number" varchar(64) NOT NULL, "mode" int4, "user_id" int8, "result_msg" varchar(128), "result_code" int4, "create_by" varchar(64), "create_time" timestamp, "remark" varchar(128), "show_value" varchar(255), "model_name" varchar(64), "reply_time" timestamp ) ; COMMENT ON COLUMN "public"."iot_function_log"."id" IS '设备功能日志ID'; COMMENT ON COLUMN "public"."iot_function_log"."identify" IS '标识符'; COMMENT ON COLUMN "public"."iot_function_log"."fun_type" IS '1==服务下发,2=属性获取,3.OTA升级'; COMMENT ON COLUMN "public"."iot_function_log"."fun_value" IS '日志值'; COMMENT ON COLUMN "public"."iot_function_log"."message_id" IS '消息id'; COMMENT ON COLUMN "public"."iot_function_log"."device_name" IS '设备名称'; COMMENT ON COLUMN "public"."iot_function_log"."serial_number" IS '设备编号'; COMMENT ON COLUMN "public"."iot_function_log"."mode" IS '模式(1=影子模式,2=在线模式,3=其他)'; COMMENT ON COLUMN "public"."iot_function_log"."user_id" IS '用户id'; COMMENT ON COLUMN "public"."iot_function_log"."result_msg" IS '下发结果描述'; COMMENT ON COLUMN "public"."iot_function_log"."result_code" IS '下发结果代码'; COMMENT ON COLUMN "public"."iot_function_log"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_function_log"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_function_log"."remark" IS '备注'; COMMENT ON COLUMN "public"."iot_function_log"."show_value" IS '显示值'; COMMENT ON COLUMN "public"."iot_function_log"."model_name" IS '物模型名称'; COMMENT ON COLUMN "public"."iot_function_log"."reply_time" IS '设备回复时间'; COMMENT ON TABLE "public"."iot_function_log" IS '设备服务下发日志'; -- ---------------------------- -- Records of iot_function_log -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for iot_group -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_group"; CREATE TABLE "public"."iot_group" ( "group_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 7 INCREMENT BY 1), "group_name" varchar(64) NOT NULL, "group_order" int2 NOT NULL, "user_id" int8 NOT NULL, "user_name" varchar(30) NOT NULL, "del_flag" char(1), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500) ) ; COMMENT ON COLUMN "public"."iot_group"."group_id" IS '分组ID'; COMMENT ON COLUMN "public"."iot_group"."group_name" IS '分组名称'; COMMENT ON COLUMN "public"."iot_group"."group_order" IS '分组排序'; COMMENT ON COLUMN "public"."iot_group"."user_id" IS '用户ID'; COMMENT ON COLUMN "public"."iot_group"."user_name" IS '用户昵称'; COMMENT ON COLUMN "public"."iot_group"."del_flag" IS '删除标志(0代表存在 2代表删除)'; COMMENT ON COLUMN "public"."iot_group"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_group"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_group"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_group"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_group"."remark" IS '备注'; COMMENT ON TABLE "public"."iot_group" IS '设备分组'; -- ---------------------------- -- Records of iot_group -- ---------------------------- BEGIN; INSERT INTO "public"."iot_group" ("group_id", "group_name", "group_order", "user_id", "user_name", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (2, '卧室', 2, 1, 'admin', '0', '', '2021-12-29 13:12:42', '', '2023-04-09 22:37:06', '卧室设备'); INSERT INTO "public"."iot_group" ("group_id", "group_name", "group_order", "user_id", "user_name", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (3, '厨房', 3, 1, 'admin', '0', '', '2021-12-29 13:12:59', '', '2021-12-29 13:13:48', '厨房设备'); INSERT INTO "public"."iot_group" ("group_id", "group_name", "group_order", "user_id", "user_name", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (4, '书房', 4, 1, 'admin', '0', '', '2021-12-29 13:13:10', '', '2021-12-29 13:13:54', '书房设备'); INSERT INTO "public"."iot_group" ("group_id", "group_name", "group_order", "user_id", "user_name", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (5, '卫生间', 5, 1, 'admin', '0', '', '2021-12-29 13:13:18', '', '2021-12-29 13:14:03', '卫生间设备'); INSERT INTO "public"."iot_group" ("group_id", "group_name", "group_order", "user_id", "user_name", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (6, '走道', 6, 1, 'admin', '0', '', '2021-12-29 13:13:26', '', '2021-12-29 13:14:11', '走道设备'); COMMIT; -- ---------------------------- -- Table structure for iot_product -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_product"; CREATE TABLE "public"."iot_product" ( "product_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 89 INCREMENT BY 1), "product_name" varchar(64) NOT NULL, "protocol_code" varchar(64), "category_id" int8 NOT NULL, "category_name" varchar(64) NOT NULL, "tenant_id" int8 NOT NULL, "tenant_name" varchar(30) NOT NULL, "is_sys" int2 NOT NULL, "is_authorize" int2 NOT NULL, "mqtt_account" varchar(64), "mqtt_password" varchar(64), "mqtt_secret" varchar(64), "status" int2, "things_models_json" text, "device_type" int2, "network_method" int2, "vertificate_method" int2, "img_url" varchar(255), "del_flag" char(1), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500), "transport" varchar(64) ) ; COMMENT ON COLUMN "public"."iot_product"."product_id" IS '产品ID'; COMMENT ON COLUMN "public"."iot_product"."product_name" IS '产品名称'; COMMENT ON COLUMN "public"."iot_product"."protocol_code" IS '协议编号'; COMMENT ON COLUMN "public"."iot_product"."category_id" IS '产品分类ID'; COMMENT ON COLUMN "public"."iot_product"."category_name" IS '产品分类名称'; COMMENT ON COLUMN "public"."iot_product"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "public"."iot_product"."tenant_name" IS '租户名称'; COMMENT ON COLUMN "public"."iot_product"."is_sys" IS '是否系统通用(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_product"."is_authorize" IS '是否启用授权码(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_product"."mqtt_account" IS 'mqtt账号'; COMMENT ON COLUMN "public"."iot_product"."mqtt_password" IS 'mqtt密码'; COMMENT ON COLUMN "public"."iot_product"."mqtt_secret" IS '产品秘钥'; COMMENT ON COLUMN "public"."iot_product"."status" IS '状态(1-未发布,2-已发布)'; COMMENT ON COLUMN "public"."iot_product"."things_models_json" IS '物模型JSON(属性、功能、事件)'; COMMENT ON COLUMN "public"."iot_product"."device_type" IS '设备类型(1-直连设备、2-网关设备、3-监控设备)'; COMMENT ON COLUMN "public"."iot_product"."network_method" IS '联网方式(1=wifi、2=蜂窝(2G/3G/4G/5G)、3=以太网、4=其他)'; COMMENT ON COLUMN "public"."iot_product"."vertificate_method" IS '认证方式(1-简单认证、2-加密认证、3-简单+加密)'; COMMENT ON COLUMN "public"."iot_product"."img_url" IS '图片地址'; COMMENT ON COLUMN "public"."iot_product"."del_flag" IS '删除标志(0代表存在 2代表删除)'; COMMENT ON COLUMN "public"."iot_product"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_product"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_product"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_product"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_product"."remark" IS '备注'; COMMENT ON COLUMN "public"."iot_product"."transport" IS '产品支持的传输协议'; COMMENT ON TABLE "public"."iot_product" IS '产品'; -- ---------------------------- -- Records of iot_product -- ---------------------------- BEGIN; INSERT INTO "public"."iot_product" ("product_id", "product_name", "protocol_code", "category_id", "category_name", "tenant_id", "tenant_name", "is_sys", "is_authorize", "mqtt_account", "mqtt_password", "mqtt_secret", "status", "things_models_json", "device_type", "network_method", "vertificate_method", "img_url", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "transport") VALUES (41, '智能开关产品', 'JSON', 1, '电工照明', 1, 'admin', 1, 0, 'FastBee', 'P47T6OD5IPFWHUM6', 'KX3TSH4Q4OS835DO', 2, '{"events": [{"id": "exception", "name": "设备发生异常", "type": 3, "order": 0, "regId": "exception", "isChart": 0, "datatype": {"type": "string", "maxLength": 1024}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "height_temperature", "name": "环境温度过高", "type": 3, "order": 0, "regId": "height_temperature", "isChart": 0, "datatype": {"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "℃"}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}], "functions": [{"id": "report_monitor", "name": "上报数据", "type": 2, "order": 10, "regId": "report_monitor", "isChart": 0, "datatype": {"max": 10, "min": 1, "step": 1, "type": "integer", "unit": "次数"}, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "message", "name": "屏显消息", "type": 2, "order": 7, "regId": "message", "isChart": 0, "datatype": {"type": "string", "maxLength": 1024}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "light_color", "name": "灯光色值", "type": 2, "order": 5, "regId": "light_color", "isChart": 0, "datatype": {"type": "array", "arrayType": "integer", "arrayCount": "3"}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "switch", "name": "设备开关", "type": 2, "order": 9, "regId": "switch", "isChart": 0, "datatype": {"type": "bool", "trueText": "打开", "falseText": "关闭"}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "reset", "name": "设备重启", "type": 2, "order": 6, "regId": "reset", "isChart": 0, "datatype": {"type": "enum", "showWay": "button", "enumList": [{"text": "重启", "value": "restart"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "irc", "name": "射频遥控", "type": 2, "order": 11, "regId": "irc", "isChart": 0, "datatype": {"type": "enum", "showWay": "button", "enumList": [{"text": "遥控学习", "value": "FFXX01"}, {"text": "遥控清码", "value": "FFXX02"}, {"text": "打开开关", "value": "FFXX03"}, {"text": "关闭开关", "value": "FFXX04"}, {"text": "暂停", "value": "FFXX05"}, {"text": "锁定", "value": "FFXX06"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "gear", "name": "运行档位", "type": 2, "order": 8, "regId": "gear", "isChart": 0, "datatype": {"type": "enum", "showWay": "select", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "status", "name": "上报状态", "type": 2, "order": 12, "regId": "status", "isChart": 0, "datatype": {"type": "enum", "showWay": "button", "enumList": [{"text": "更新状态", "value": "update_status"}]}, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}], "properties": [{"id": "co2", "name": "二氧化碳", "type": 1, "order": 2, "regId": "co2", "isChart": 1, "datatype": {"max": 6000, "min": 100, "step": 1, "type": "integer", "unit": "ppm"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}, {"id": "brightness", "name": "室内亮度", "type": 1, "order": 4, "regId": "brightness", "isChart": 1, "datatype": {"max": 10000, "min": 0, "step": 1, "type": "integer", "unit": "cd/m2"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}, {"id": "temperature", "name": "空气温度", "type": 1, "order": 1, "regId": "temperature", "isChart": 1, "datatype": {"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}, {"id": "humidity", "name": "空气湿度", "type": 1, "order": 3, "regId": "humidity", "isChart": 1, "datatype": {"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "%"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}]}', 1, 1, 3, NULL, '0', '', '2025-08-14 00:06:33', '', '2023-09-25 22:58:17', NULL, 'MQTT'); INSERT INTO "public"."iot_product" ("product_id", "product_name", "protocol_code", "category_id", "category_name", "tenant_id", "tenant_name", "is_sys", "is_authorize", "mqtt_account", "mqtt_password", "mqtt_secret", "status", "things_models_json", "device_type", "network_method", "vertificate_method", "img_url", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "transport") VALUES (55, '网关产品', 'JSON', 1, '电工照明', 1, 'admin', 1, 0, 'FastBee', 'P467433O1MT8MXS2', 'KWF32S3H95LH14LO', 2, '{"events": [{"id": "exception", "name": "设备发生异常", "type": 3, "order": 0, "regId": "exception", "isChart": 0, "datatype": {"type": "string", "maxLength": 1024}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "height_temperature", "name": "环境温度过高", "type": 3, "order": 0, "regId": "height_temperature", "isChart": 0, "datatype": {"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "℃"}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}], "functions": [{"id": "color", "name": "状态灯色", "type": 2, "order": 0, "regId": "color", "isChart": 0, "datatype": {"type": "enum", "showWay": "select", "enumList": [{"text": "红色", "value": "0"}, {"text": "绿色", "value": "1"}, {"text": "蓝色", "value": "2"}, {"text": "黄色", "value": "3"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "message", "name": "屏显消息", "type": 2, "order": 0, "regId": "message", "isChart": 0, "datatype": {"type": "string", "maxLength": 1024}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "light_color", "name": "灯光色值", "type": 2, "order": 0, "regId": "light_color", "isChart": 0, "datatype": {"type": "array", "arrayType": "integer", "arrayCount": "3"}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "switch", "name": "设备开关", "type": 2, "order": 0, "regId": "switch", "isChart": 0, "datatype": {"type": "bool", "trueText": "打开", "falseText": "关闭"}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "irc", "name": "射频遥控", "type": 2, "order": 0, "regId": "irc", "isChart": 0, "datatype": {"type": "enum", "showWay": "button", "enumList": [{"text": "遥控学习", "value": "FFXX01"}, {"text": "遥控清码", "value": "FFXX02"}, {"text": "打开开关", "value": "FFXX03"}, {"text": "关闭开关", "value": "FFXX04"}, {"text": "暂停", "value": "FFXX05"}, {"text": "锁定", "value": "FFXX06"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "device", "name": "子设备", "type": 2, "order": 0, "regId": "device", "isChart": 0, "datatype": {"type": "array", "params": [{"id": "device_co2", "name": "二氧化碳", "order": 0, "isChart": 1, "datatype": {"max": 6000, "min": 100, "step": 1, "type": "integer", "unit": "ppm", "enumList": [{"text": "", "value": ""}], "arrayType": "int"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}, {"id": "device_temperature", "name": "空气温度-只读", "order": 4, "isChart": 0, "datatype": {"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃", "enumList": [{"text": "", "value": ""}], "arrayType": "int"}, "isMonitor": 0, "isReadonly": 1}, {"id": "device_gear", "name": "运行档位", "order": 6, "datatype": {"type": "enum", "showWay": "select", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}, "isMonitor": 0, "isReadonly": 0}, {"id": "device_switch", "name": "设备开关", "order": 5, "datatype": {"type": "bool", "enumList": [{"text": "", "value": ""}], "trueText": "打开", "arrayType": "int", "falseText": "关闭"}, "isMonitor": 0, "isReadonly": 0}, {"id": "device_report_monitor", "name": "上报监测数据", "order": 9, "datatype": {"max": 10, "min": 1, "step": 1, "type": "integer", "unit": "次数", "enumList": [{"text": "", "value": ""}], "arrayType": "int"}, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}], "arrayType": "object", "arrayCount": 5}, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "status", "name": "上报状态", "type": 2, "order": 0, "regId": "status", "isChart": 0, "datatype": {"type": "enum", "showWay": "button", "enumList": [{"text": "更新状态", "value": "update_status"}]}, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "group", "name": "功能分组", "type": 2, "order": 0, "regId": "group", "isChart": 0, "datatype": {"type": "object", "params": [{"id": "group_light", "name": "光照", "order": 1, "isChart": 1, "datatype": {"max": 100, "min": 0, "step": 1, "type": "decimal", "unit": "mm"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}, {"id": "group_humidity", "name": "空气湿度", "order": 2, "isChart": 1, "datatype": {"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "%"}, "isMonitor": 1, "isReadonly": 1}, {"id": "group_temperature", "name": "空气温度-只读", "order": 3, "isChart": 0, "datatype": {"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃"}, "isMonitor": 0, "isReadonly": 1}, {"id": "group_report_monitor", "name": "上报监测数据", "order": 7, "datatype": {"max": 10, "min": 1, "step": 1, "type": "integer", "unit": "次数"}, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "group_gear", "name": "运行档位", "order": 5, "datatype": {"type": "enum", "showWay": "select", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "group_switch", "name": "设备开关", "order": 4, "datatype": {"type": "bool", "trueText": "打开", "falseText": "关闭"}, "isMonitor": 0, "isReadonly": 0}, {"id": "group_irc", "name": "红外遥控", "order": 6, "isChart": 0, "datatype": {"type": "enum", "showWay": "button", "enumList": [{"text": "遥控学习", "value": "FFXX01"}, {"text": "遥控清码", "value": "FFXX02"}, {"text": "打开开关", "value": "FFXX03"}, {"text": "关闭开关", "value": "FFXX04"}, {"text": "暂停", "value": "FFXX05"}, {"text": "锁定", "value": "FFXX06"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}]}, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "gear", "name": "运行档位", "type": 2, "order": 0, "regId": "gear", "isChart": 0, "datatype": {"type": "enum", "showWay": "select", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}], "properties": [{"id": "light_level", "name": "光照强度", "type": 1, "order": 0, "regId": "light_level", "isChart": 1, "datatype": {"max": 89.2, "min": 2.5, "step": 0.1, "type": "integer", "unit": "L/g"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}, {"id": "temperature", "name": "空气温度", "type": 1, "order": 0, "regId": "temperature", "isChart": 1, "datatype": {"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}, {"id": "humidity", "name": "空气湿度", "type": 1, "order": 0, "regId": "humidity", "isChart": 1, "datatype": {"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "%"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}]}', 2, 2, 3, NULL, '0', '', '2025-02-25 22:51:39', '', '2023-09-16 11:46:43', NULL, 'MQTT'); INSERT INTO "public"."iot_product" ("product_id", "product_name", "protocol_code", "category_id", "category_name", "tenant_id", "tenant_name", "is_sys", "is_authorize", "mqtt_account", "mqtt_password", "mqtt_secret", "status", "things_models_json", "device_type", "network_method", "vertificate_method", "img_url", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "transport") VALUES (88, '视频监控产品', NULL, 2, '家居安防', 1, 'admin', 1, 0, 'FastBee', 'P0IB9M8A7J4R056V', 'K69914VL8175ZY21', 2, '{}', 3, 1, 3, NULL, '0', '', '2023-04-11 21:11:54', '', '2025-03-19 15:30:14', NULL, 'GB28181'); COMMIT; -- ---------------------------- -- Table structure for iot_product_authorize -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_product_authorize"; CREATE TABLE "public"."iot_product_authorize" ( "authorize_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1 INCREMENT BY 1), "authorize_code" varchar(32) NOT NULL, "product_id" int8 NOT NULL, "device_id" int8, "serial_number" varchar(64), "user_id" int8, "user_name" varchar(30), "status" int2, "del_flag" char(1) NOT NULL, "create_by" varchar(64) NOT NULL, "create_time" timestamp NOT NULL, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500) ) ; COMMENT ON COLUMN "public"."iot_product_authorize"."authorize_id" IS '授权码ID'; COMMENT ON COLUMN "public"."iot_product_authorize"."authorize_code" IS '授权码'; COMMENT ON COLUMN "public"."iot_product_authorize"."product_id" IS '产品ID'; COMMENT ON COLUMN "public"."iot_product_authorize"."device_id" IS '设备ID'; COMMENT ON COLUMN "public"."iot_product_authorize"."serial_number" IS '设备编号'; COMMENT ON COLUMN "public"."iot_product_authorize"."user_id" IS '用户ID'; COMMENT ON COLUMN "public"."iot_product_authorize"."user_name" IS '用户名称'; COMMENT ON COLUMN "public"."iot_product_authorize"."status" IS '状态(1-未使用,2-使用中)'; COMMENT ON COLUMN "public"."iot_product_authorize"."del_flag" IS '删除标志(0代表存在 2代表删除)'; COMMENT ON COLUMN "public"."iot_product_authorize"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_product_authorize"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_product_authorize"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_product_authorize"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_product_authorize"."remark" IS '备注'; COMMENT ON TABLE "public"."iot_product_authorize" IS '产品授权码表'; -- ---------------------------- -- Records of iot_product_authorize -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for iot_protocol -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_protocol"; CREATE TABLE "public"."iot_protocol" ( "id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 2 INCREMENT BY 1), "protocol_code" varchar(60) NOT NULL, "protocol_name" varchar(60) NOT NULL, "protocol_file_url" varchar(500) NOT NULL, "protocol_type" int4 NOT NULL, "jar_sign" varchar(100) NOT NULL, "create_time" timestamp NOT NULL, "update_time" timestamp NOT NULL, "protocol_status" int4 NOT NULL, "del_flag" int4 NOT NULL ) ; COMMENT ON COLUMN "public"."iot_protocol"."id" IS '自增id'; COMMENT ON COLUMN "public"."iot_protocol"."protocol_code" IS '协议编码'; COMMENT ON COLUMN "public"."iot_protocol"."protocol_name" IS '协议名称'; COMMENT ON COLUMN "public"."iot_protocol"."protocol_file_url" IS '协议jar包,js包,c程序上传地址'; COMMENT ON COLUMN "public"."iot_protocol"."protocol_type" IS '协议类型 0:未知 1:jar,2.js,3.c'; COMMENT ON COLUMN "public"."iot_protocol"."jar_sign" IS '协议文件摘要(文件的md5)'; COMMENT ON COLUMN "public"."iot_protocol"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_protocol"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_protocol"."protocol_status" IS '0:草稿 1:启用 2:停用'; COMMENT ON COLUMN "public"."iot_protocol"."del_flag" IS '0:正常 1:删除'; COMMENT ON TABLE "public"."iot_protocol" IS '协议表'; -- ---------------------------- -- Records of iot_protocol -- ---------------------------- BEGIN; INSERT INTO "public"."iot_protocol" ("id", "protocol_code", "protocol_name", "protocol_file_url", "protocol_type", "jar_sign", "create_time", "update_time", "protocol_status", "del_flag") VALUES (1, 'JSON', 'JSON协议', '/', 0, '系统内置JSON编解码协议', '2023-03-01 05:46:43', '2023-04-10 14:42:12', 1, 0); COMMIT; -- ---------------------------- -- Table structure for iot_scene -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_scene"; CREATE TABLE "public"."iot_scene" ( "scene_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1 INCREMENT BY 1), "scene_name" varchar(64) NOT NULL, "chain_name" varchar(32), "enable" int2, "user_id" int8 NOT NULL, "user_name" varchar(64) NOT NULL, "silent_period" int4, "cond" int2, "execute_mode" int2, "execute_delay" int4, "has_alert" int2, "application_name" varchar(32) NOT NULL, "el_data" text, "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500) ) ; COMMENT ON COLUMN "public"."iot_scene"."scene_id" IS '场景ID'; COMMENT ON COLUMN "public"."iot_scene"."scene_name" IS '场景名称'; COMMENT ON COLUMN "public"."iot_scene"."chain_name" IS '规则名称'; COMMENT ON COLUMN "public"."iot_scene"."enable" IS '场景状态(1-启动,2-停止)'; COMMENT ON COLUMN "public"."iot_scene"."user_id" IS '用户ID'; COMMENT ON COLUMN "public"."iot_scene"."user_name" IS '用户名称'; COMMENT ON COLUMN "public"."iot_scene"."silent_period" IS '静默周期(分钟)'; COMMENT ON COLUMN "public"."iot_scene"."cond" IS '执行条件(1=或、任意条件,2=且、所有条件,3=非,不满足)'; COMMENT ON COLUMN "public"."iot_scene"."execute_mode" IS '执行方式(1=串行,顺序执行,2=并行,同时执行)'; COMMENT ON COLUMN "public"."iot_scene"."execute_delay" IS '延时执行(秒钟)'; COMMENT ON COLUMN "public"."iot_scene"."has_alert" IS '是否包含告警推送(1=包含,2=不包含)'; COMMENT ON COLUMN "public"."iot_scene"."application_name" IS '应用名称'; COMMENT ON COLUMN "public"."iot_scene"."el_data" IS '规则数据'; COMMENT ON COLUMN "public"."iot_scene"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_scene"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_scene"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_scene"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_scene"."remark" IS '备注'; COMMENT ON TABLE "public"."iot_scene" IS '场景联动'; -- ---------------------------- -- Records of iot_scene -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for iot_scene_script -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_scene_script"; CREATE TABLE "public"."iot_scene_script" ( "script_id" varchar(32) NOT NULL, "scene_id" int8 NOT NULL, "source" int2 NOT NULL, "script_purpose" int2 NOT NULL, "product_id" int8, "product_name" varchar(64), "id" varchar(64), "name" varchar(64), "value" varchar(64), "operator" varchar(16), "type" int2, "device_count" int4, "job_id" int8, "cron_expression" varchar(255), "is_advance" int2, "parent_id" varchar(32), "parent_name" varchar(32), "array_index" varchar(20), "array_index_name" varchar(20), "create_by" varchar(64), "create_time" timestamp ) ; COMMENT ON COLUMN "public"."iot_scene_script"."script_id" IS '脚本ID'; COMMENT ON COLUMN "public"."iot_scene_script"."scene_id" IS '场景ID'; COMMENT ON COLUMN "public"."iot_scene_script"."source" IS '触发源(1=设备触发,2=定时触发,3=产品触发,4=告警执行)'; COMMENT ON COLUMN "public"."iot_scene_script"."script_purpose" IS '脚本用途(1=数据流,2=触发器,3=执行动作)'; COMMENT ON COLUMN "public"."iot_scene_script"."product_id" IS '产品ID(用于获取对应物模型)'; COMMENT ON COLUMN "public"."iot_scene_script"."product_name" IS '产品名称'; COMMENT ON COLUMN "public"."iot_scene_script"."id" IS '物模型标识符'; COMMENT ON COLUMN "public"."iot_scene_script"."name" IS '物模型名称'; COMMENT ON COLUMN "public"."iot_scene_script"."value" IS '物模型值'; COMMENT ON COLUMN "public"."iot_scene_script"."operator" IS '操作符'; COMMENT ON COLUMN "public"."iot_scene_script"."type" IS '物模型类别(1=属性,2=功能,3=事件,4=设备升级,5=设备上线,6=设备下线)'; COMMENT ON COLUMN "public"."iot_scene_script"."device_count" IS '设备数量'; COMMENT ON COLUMN "public"."iot_scene_script"."job_id" IS '任务ID'; COMMENT ON COLUMN "public"."iot_scene_script"."cron_expression" IS 'cron执行表达式'; COMMENT ON COLUMN "public"."iot_scene_script"."is_advance" IS '是否详细corn表达式(1=是,0=否)'; COMMENT ON COLUMN "public"."iot_scene_script"."parent_id" IS '父物模id'; COMMENT ON COLUMN "public"."iot_scene_script"."parent_name" IS '父物模名称'; COMMENT ON COLUMN "public"."iot_scene_script"."array_index" IS '数组索引'; COMMENT ON COLUMN "public"."iot_scene_script"."array_index_name" IS '数组索引名称'; COMMENT ON COLUMN "public"."iot_scene_script"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_scene_script"."create_time" IS '创建时间'; COMMENT ON TABLE "public"."iot_scene_script" IS '场景脚本'; -- ---------------------------- -- Records of iot_scene_script -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for iot_script -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_script"; CREATE TABLE "public"."iot_script" ( "script_id" varchar(32) NOT NULL, "user_id" int8 NOT NULL, "user_name" varchar(30) NOT NULL, "scene_id" int8 NOT NULL, "product_id" int8, "product_name" varchar(64), "script_event" int2 NOT NULL, "script_action" int2 NOT NULL, "script_purpose" int2 NOT NULL, "script_order" int2 NOT NULL, "application_name" varchar(32) NOT NULL, "script_name" varchar(64) NOT NULL, "script_data" text NOT NULL, "script_type" varchar(16) NOT NULL, "script_language" varchar(16) NOT NULL, "enable" int2 NOT NULL, "del_flag" char(1), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500) ) ; COMMENT ON COLUMN "public"."iot_script"."script_id" IS '脚本ID'; COMMENT ON COLUMN "public"."iot_script"."user_id" IS '用户ID'; COMMENT ON COLUMN "public"."iot_script"."user_name" IS '用户昵称'; COMMENT ON COLUMN "public"."iot_script"."scene_id" IS '关联场景ID'; COMMENT ON COLUMN "public"."iot_script"."product_id" IS '产品ID'; COMMENT ON COLUMN "public"."iot_script"."product_name" IS '产品名称'; COMMENT ON COLUMN "public"."iot_script"."script_event" IS '脚本事件(1=设备上报,2=平台下发,3=设备上线,4=设备离线)'; COMMENT ON COLUMN "public"."iot_script"."script_action" IS '脚本动作(1=消息重发,2=消息通知,3=Http推送,4=Mqtt桥接,5=数据库存储)'; COMMENT ON COLUMN "public"."iot_script"."script_purpose" IS '脚本用途(1=数据流,2=触发器,3=执行动作)'; COMMENT ON COLUMN "public"."iot_script"."script_order" IS '脚本执行顺序,值越大优先级越高'; COMMENT ON COLUMN "public"."iot_script"."application_name" IS '应用名,后端、规则和脚本要统一'; COMMENT ON COLUMN "public"."iot_script"."script_name" IS '脚本名'; COMMENT ON COLUMN "public"."iot_script"."script_data" IS '脚本数据'; COMMENT ON COLUMN "public"."iot_script"."script_type" IS '脚本类型: script=普通脚本, switch_script=选择脚本, if_script=条件脚本, for_script=数量循环脚本, while_script=条件循环, break_script=退出循环脚本'; COMMENT ON COLUMN "public"."iot_script"."script_language" IS '脚本语言(groovy | qlexpress | js | python | lua | aviator | java)'; COMMENT ON COLUMN "public"."iot_script"."enable" IS '是否生效(0-不生效,1-生效)'; COMMENT ON COLUMN "public"."iot_script"."del_flag" IS '删除标志(0代表存在 2代表删除)'; COMMENT ON COLUMN "public"."iot_script"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_script"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_script"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_script"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_script"."remark" IS '备注'; COMMENT ON TABLE "public"."iot_script" IS '规则引擎脚本'; -- ---------------------------- -- Records of iot_script -- ---------------------------- BEGIN; INSERT INTO "public"."iot_script" ("script_id", "user_id", "user_name", "scene_id", "product_id", "product_name", "script_event", "script_action", "script_purpose", "script_order", "application_name", "script_name", "script_data", "script_type", "script_language", "enable", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES ('D1782337038486474752', 1, 'admin', 0, 41, '★智能开关产品', 1, 1, 1, 1, 'fastbee', '消息转发规则', 'import cn.hutool.json.JSONArray; import cn.hutool.json.JSONObject; import cn.hutool.json.JSONUtil; import cn.hutool.core.util.NumberUtil; //系统主题 String sysTopic = ''''; //系统数据格式 String sysPayload = ''''; // 1. 获取主题和内容 String name = msgContext.getTopic(); Long productId = msgContext.getProductId(); String serialNumber = msgContext.getSerialNumber(); String protocolCode = msgContext.getProtocolCode(); String payload = msgContext.getPayload(); System.out.println("产品id/协议编号:" + productId + " / " + protocolCode); // 2. 转换为系统主题 /96/D1ELV3A5TOJS/property/post sysTopic = "/" + productId + "/" + serialNumber + "/property/post" if("JSON".equals(protocolCode)){ // 3. 内容格式转换 JSONArray newArray = new JSONArray(); JSONObject jsonObject = JSONUtil.parseObj(payload); jsonObject.keySet().forEach(key -> { JSONObject newObject =new JSONObject(); newObject.put("id" , key); newObject.put("value" , jsonObject.getStr(key)); newArray.add(newObject); }); sysPayload = newArray.toString(); }else{ //其他协议处理 } // 4.打印 System.out.println("新主题:" + sysTopic); System.out.println("新内容:" + sysPayload); // 5. 返回新的数据(必要) msgContext.setTopic(sysTopic); msgContext.setPayload(sysPayload); ', 'script', 'groovy', 1, '0', '', '2024-04-22 17:13:59', '', '2024-04-23 15:32:43', NULL); COMMIT; -- ---------------------------- -- Table structure for iot_social_platform -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_social_platform"; CREATE TABLE "public"."iot_social_platform" ( "social_platform_id" int4 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 1 INCREMENT BY 1), "platform" varchar(32) NOT NULL, "status" char(1) NOT NULL, "client_id" varchar(100) NOT NULL, "secret_key" varchar(100) NOT NULL, "redirect_uri" varchar(120) NOT NULL, "del_flag" char(1) NOT NULL, "create_by" varchar(64) NOT NULL, "create_time" timestamp NOT NULL, "update_time" timestamp, "update_by" varchar(64), "remark" varchar(500), "bind_uri" varchar(128) NOT NULL, "redirect_login_uri" varchar(128) NOT NULL, "error_msg_uri" varchar(128) NOT NULL ) ; COMMENT ON COLUMN "public"."iot_social_platform"."social_platform_id" IS '第三方登录平台主键'; COMMENT ON COLUMN "public"."iot_social_platform"."platform" IS '第三方登录平台'; COMMENT ON COLUMN "public"."iot_social_platform"."status" IS ' 0:启用 ,1:禁用'; COMMENT ON COLUMN "public"."iot_social_platform"."client_id" IS '第三方平台申请Id'; COMMENT ON COLUMN "public"."iot_social_platform"."secret_key" IS '第三方平台密钥'; COMMENT ON COLUMN "public"."iot_social_platform"."redirect_uri" IS '用户认证后跳转地址'; COMMENT ON COLUMN "public"."iot_social_platform"."del_flag" IS '删除标记位(0代表存在,1代表删除)'; COMMENT ON COLUMN "public"."iot_social_platform"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_social_platform"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_social_platform"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_social_platform"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_social_platform"."remark" IS '备注'; COMMENT ON COLUMN "public"."iot_social_platform"."bind_uri" IS '绑定注册登录uri,http://localhost/login?bindId='; COMMENT ON COLUMN "public"."iot_social_platform"."redirect_login_uri" IS '跳转登录uri,http://localhost/login?loginId='; COMMENT ON COLUMN "public"."iot_social_platform"."error_msg_uri" IS '错误提示uri,http://localhost/login?errorId='; COMMENT ON TABLE "public"."iot_social_platform" IS '第三方登录平台控制'; -- ---------------------------- -- Records of iot_social_platform -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for iot_social_user -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_social_user"; CREATE TABLE "public"."iot_social_user" ( "social_user_id" int4 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 211 INCREMENT BY 1), "uuid" varchar(64) NOT NULL, "source" varchar(32) NOT NULL, "access_token" varchar(255), "expire_in" int4, "refresh_token" varchar(255), "open_id" varchar(100), "uid" varchar(64), "access_code" varchar(64), "union_id" varchar(100), "scope" varchar(64), "token_type" varchar(64), "id_token" varchar(64), "mac_algorithm" varchar(64), "mac_key" varchar(64), "code" varchar(64), "oauth_token" varchar(64), "oauth_token_secret" varchar(64), "create_time" timestamp NOT NULL, "create_by" varchar(64) NOT NULL, "update_time" timestamp, "update_by" varchar(64), "del_flag" char(1) NOT NULL, "status" char(1) NOT NULL, "sys_user_id" int4, "username" varchar(64), "nickname" varchar(64), "avatar" varchar(256), "gender" int2, "source_client" varchar(64) ) ; COMMENT ON COLUMN "public"."iot_social_user"."social_user_id" IS '第三方系统用户表主键'; COMMENT ON COLUMN "public"."iot_social_user"."uuid" IS '第三方系统的唯一ID'; COMMENT ON COLUMN "public"."iot_social_user"."source" IS '第三方用户来源'; COMMENT ON COLUMN "public"."iot_social_user"."access_token" IS '用户的授权令牌'; COMMENT ON COLUMN "public"."iot_social_user"."expire_in" IS '第三方用户的授权令牌的有效期(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."refresh_token" IS '刷新令牌(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."open_id" IS '第三方用户的 open id(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."uid" IS '第三方用户的 ID(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."access_code" IS '个别平台的授权信息(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."union_id" IS '第三方用户的 union id(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."scope" IS '第三方用户授予的权限(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."token_type" IS '个别平台的授权信息(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."id_token" IS 'id token(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."mac_algorithm" IS '小米平台用户的附带属性(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."mac_key" IS '小米平台用户的附带属性(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."code" IS '用户的授权code(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."oauth_token" IS 'Twitter平台用户的附带属性(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."oauth_token_secret" IS 'Twitter平台用户的附带属性(部分平台可能没有)'; COMMENT ON COLUMN "public"."iot_social_user"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_social_user"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_social_user"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_social_user"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_social_user"."del_flag" IS '删除标记位(0代表存在,2代表删除)'; COMMENT ON COLUMN "public"."iot_social_user"."status" IS '绑定状态(0:未绑定,1:绑定)'; COMMENT ON COLUMN "public"."iot_social_user"."sys_user_id" IS '用户ID'; COMMENT ON COLUMN "public"."iot_social_user"."username" IS '用户名'; COMMENT ON COLUMN "public"."iot_social_user"."nickname" IS '用户昵称'; COMMENT ON COLUMN "public"."iot_social_user"."avatar" IS '用户头像'; COMMENT ON COLUMN "public"."iot_social_user"."gender" IS '用户性别'; COMMENT ON COLUMN "public"."iot_social_user"."source_client" IS '第三方用户来源客户端(web、app、小程序)'; COMMENT ON TABLE "public"."iot_social_user" IS '第三方登录用户'; -- ---------------------------- -- Records of iot_social_user -- ---------------------------- BEGIN; INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (1, 'ojefY6BdTpoXOLjdpsFQXWixAG_Q', 'WECHAT_OPEN', '71_7qVQ56lx6qdC7mmArXFwQD8Nl6BTjayw4HJdfHdPoXS0sEHDffiSYa4k8dIK7XG7puk2asZ0s0Rj_Pk8ahqdDQICL4FumjWmXHm3ql2si-M', 7200, '71_rh7a79t0eJmC0JyJrQjABF3zZdkNhP7oAUm3Jj6Rk1skL_i4V3ITlM3ViYO0PA_NCKn9ba85pz2vttdloreR0lWmUxK-VOm3XaMt33vZ9a0', 'ojefY6BdTpoXOLjdpsFQXWixAG_Q', NULL, NULL, 'oL1Fu5x1fapbFrUGWUStT0Vs6f4I', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-23 11:48:04', 'System', '2023-09-15 17:23:12', 'System', '1', '1', 8, 'shadow', 'shadow', 'https://thirdwx.qlogo.cn/mmopen/vi_32/dNibaEkibxjJZSffkH5gQKtCg0pqfz39PGbPcQ8IhADianIaEYqibvD2JhrxYLMeQexBGVR6VOl9MR4gtsYiaxEqPFA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (2, 'ojefY6Pny526TwBwsyfUhzBB_szg', 'WECHAT_OPEN', '71_HlBJGUovm8cvZoEljoFkrAbRXtqt3mWNqxEOfMGsse-2Sie51YjkfJQbrSZySyIsf9sYTIwXj7EjbPO5GciN_xqEsSRCzyG6qIvUvkyNIBs', 7200, '71_Bc5n4-MS-25vBkt8p8BAxeuAZBawwmx4ryi-KCJxzi0OKY73HinwKYRTPZaw08kXgpD6zToRAjqIoRuyt-mNwEgfeN50hW8Unk5NuK4Bdpo', 'ojefY6Pny526TwBwsyfUhzBB_szg', NULL, NULL, 'oL1Fu589vTytNQy2okIKQnKBUmRU', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-24 08:22:53', 'System', NULL, NULL, '0', '0', NULL, '🌲', '🌲', 'https://thirdwx.qlogo.cn/mmopen/vi_32/Q0j4TwGTfTLTLicc0w6SgPWibR5Z92j9AdW9aC4QxuFjQcJXcekbjc13fkHD7iaZc7CwEHtUq9FQalub6vOZ46LZA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (3, 'ojefY6AZPO1PPy9K4tWd8xdLWUss', 'WECHAT_OPEN', '71_x8HU8YdqqKMXts7KJ3T0hLOvmlP5YIi0pkTQ9bLA8vRusmEEUQFKyBpbG2UAFRDMEJvpp6cKGh9EGkiRdj7zSA4aHP2r-luXHSkAhP7zyvU', 7200, '71_AFMUcIv8tP4PGiHrOwJVN0B8bpCGyKXuG8ZCDiVGF5zaG10MTTLTmTJXNHJHmZzs3h6X9kbLY8sukNk83uj3QI3_J5SGOtihOUNMa9g7Ir0', 'ojefY6AZPO1PPy9K4tWd8xdLWUss', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-24 09:41:51', 'System', '2023-08-24 10:36:16', 'System', '0', '0', NULL, 'oh', 'oh', 'https://thirdwx.qlogo.cn/mmopen/vi_32/RNia2ASTn210r40Tb91yfWgmiaWXGPXF7rNnic5lkes9avGbZQ0365uZObT1JicIQpiba7MDuHicScKUxnYWWyTN5VAw/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (4, 'ojefY6JUjFaO7RBRqgcrRGLxPVFA', 'WECHAT_OPEN', '71_qkQqwgA9RYmL5oQASwBxwwR4loysQQc3YRqGJRJONSxpNrPLlLdNibDk5YINFYjfnCxwnhjVPQqhX7xHaGE_UZMX5e1JaWKCJdrgwP62LxY', 7200, '71_oEKp3JLiEtv5668rprSxidUBbcd30cZQ2Bbt_tL5XdWQX52Yb3po5t5ynFwlA4n-7dLt5rGR3E1FKb9Qw8Xso8SfSfF-4CBF9ZCjSxppIvI', 'ojefY6JUjFaO7RBRqgcrRGLxPVFA', NULL, NULL, 'oL1Fu55Rkr9A69wS6buTQz7zdkDc', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-24 09:58:59', 'System', NULL, NULL, '0', '0', NULL, 'shadow 张', 'shadow 张', 'https://thirdwx.qlogo.cn/mmopen/vi_32/EcUsiaR4Y1WkyibJXHDEPAiazbERr1BXAnzZWjh2SiayuawoEaT0icDzL2dZtuu0ia6Z7AJZZbiaxDJb8iaJxTnyk7Xicgw/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (5, 'ojefY6I66aL78LElFNjsA_rY7JIE', 'WECHAT_OPEN', '71_sanZ8NfbnEANzqUTQQAY6CRoafcBaV1eS4KPtcAv_rkOlunJQyVeJJzFbXSge3QxsCvljt65TTpyiLSifSjADJdaSZGtKzhF7IXlo5km2Po', 7200, '71_JbHfJV6zy02mK8ZnCKA3Yyhe2upHOqeah6IeZxzO3CKVAcOqH7CGbsk9GFsK3bqDD1SF8jp05ncC8XfkzR5BS4A3s_QIQjt44bviFckymtE', 'ojefY6I66aL78LElFNjsA_rY7JIE', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-08-24 11:49:31', 'System', '2023-08-24 14:10:29', 'System', '0', '0', NULL, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/tgaqAZ2oTMAZfF4cHRPib77yOLRSv9ibPibQfkQiclB8kwBuicB3vDcLfTnfU6HWZRNRqjmSXjWYYY5fNdOAR8CSxzg/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (6, '71420ce6-5300-4495-92da-6d1a4a7e2fdd', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 09:32:12', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (7, '6ec4d0be-bde5-466b-b3cf-5b3736d15ba7', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 09:40:17', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (8, 'ac2d836d-29fe-4e01-9f3d-bc54d4168855', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 09:45:52', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (9, 'ef2510ab-8fdd-4433-b0ff-1b57ef2f0fa9', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt10T_V0r-s6plNgUfVWrzns', NULL, NULL, 'oU5Yyt_J3cry6qhOzJE1qW-tdiVA', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 09:47:34', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (10, 'b7c2ee2f-d644-46b9-812d-104b1d122fe0', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 09:50:43', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (11, '214e90ab-5b09-4aec-a6d1-4100c21db1b6', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 09:51:42', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (12, 'a23aec75-40df-4878-b33f-a1aacc6b45f6', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 09:53:12', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (13, '37de2b33-e690-40f6-a981-fc7182503606', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:00:02', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (14, '8c1e964e-9bb8-4876-bc92-6a41faaf2097', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:09:12', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (15, 'a7b77ebb-0815-4983-b0ad-b9b2a37593ca', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:09:59', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (16, '0ee69f21-448a-420f-a092-68418ae96c01', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:10:34', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (17, '0c928db4-03b5-40c9-9971-3b13d39ba4b8', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:11:41', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (18, '8f0daa3d-f332-423b-ad37-95e740a109e8', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:12:44', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (19, 'd15e0ae9-f49d-4e55-9965-79e260e8ffd0', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:13:33', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (20, 'b4da93b9-21c7-4e76-937b-2162024a9c6c', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:14:37', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (21, 'a16423aa-99ce-427e-89cf-a9f13955acec', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:15:54', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (22, '7771c72d-741f-4f66-bec4-414471ebb5db', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:16:34', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (23, '9def0641-b670-45cc-8297-6c3171f12025', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:17:36', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (24, 'e8f70c8b-bc52-4b38-aaf7-6a8df9ffb8cd', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:18:23', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (25, 'a359a333-4348-4786-973e-f15b9fa6ce94', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:19:15', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (26, '061154f9-ac4b-4035-a549-cd602422427a', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt10T_V0r-s6plNgUfVWrzns', NULL, NULL, 'oU5Yyt_J3cry6qhOzJE1qW-tdiVA', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:19:55', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (27, '10003d18-0b00-458d-966e-3a54b218c83b', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:21:18', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (28, '376f2a15-662d-4820-bb62-683dd555fdbf', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:24:01', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (29, 'd4e4fe18-1f99-4361-b509-e464fdc806a2', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:24:42', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (30, '7b37261c-b420-45d5-8cd0-7ab6e4787621', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:25:17', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (31, '7635bed2-0d6e-4924-b9d7-af0235fc2ecc', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:25:26', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (32, '6aa3715d-b3a6-4b12-8bb4-1fc3af297d99', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:26:09', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (33, '0222ba55-f5a8-4218-a23d-949ecc78c405', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:26:52', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (34, '0bb2118c-b365-4dae-943e-84e0f8dca104', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:27:50', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (35, '5c065548-d171-44b8-a5bb-b93db08b22b3', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:28:12', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (36, '79429286-c4c7-4db8-9902-6f10ffd26e06', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:28:53', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (37, '4eb61991-8715-427b-b6a1-6e479f3faafc', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:29:44', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (38, 'cbcf9cfb-109f-4806-9bd0-5e9a4ba0c108', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:30:33', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (39, '810f0806-21e0-487b-b2fe-c9d037b20c81', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:31:28', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (40, '7da601d4-765c-40bf-aa2d-96bdef88c9ff', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:32:23', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (41, 'e3e29354-d06b-4d18-b172-a86e563a20f1', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:33:16', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (42, 'c73ece08-7a9e-462f-ad04-e5a5ce05a8b5', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:33:47', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (43, '7b48faf5-b023-46d7-9332-8ead5d82895e', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:34:27', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (44, 'aa8db705-654d-43d9-8ec2-3b090bb9685d', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:35:18', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (45, 'b3f319a4-a4aa-48bd-9a43-ff03b09e9b0f', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:36:18', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (46, '297e229a-545e-47a1-8acd-85708430d78d', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:37:10', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (47, '74d77e94-a9c2-4fca-9b47-e1c7ea0ab419', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:37:45', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (48, '0a750c6d-2e14-4e12-bd11-5ae390b04451', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:57:10', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (49, '6b353153-2eb0-4916-ad83-f5465ccd4480', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 10:57:55', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (50, '10be370a-38e0-4de4-822b-e6b1a07f0ff2', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 11:47:28', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (51, '8634fc78-e8d0-447f-af90-51fd29536ae4', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 15:40:06', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (52, '4e49726d-9078-47de-8752-5fac79a5b9b1', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 15:45:31', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (53, '77e28b94-5f6e-4dda-bc15-a411ce9423e8', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 15:49:07', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (54, '17b87cd8-6a14-4834-9d9e-e4121d563079', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 15:53:20', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (55, 'b2b7ddc7-6e48-4f24-9d03-8c481b6fc165', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 15:57:00', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (56, 'c394c827-3f3f-42c3-88db-b5e3edc5a3e8', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 15:58:51', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (57, '16bf6849-9619-4448-9b0f-1ad4a999e33f', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 15:59:47', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (58, '8f19e5f6-e197-4b81-9585-ea3ea655dd2a', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:01:56', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (59, '647ce6e6-5aa4-4504-80db-fb1df687c0b6', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:03:22', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (60, '04f69ab8-5a84-495c-8dfa-7f19a1a32c63', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:05:03', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (61, '520bf6de-19a5-4b06-b905-6c61a37a1809', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:06:05', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (62, 'e70c584c-5d6f-4cdd-9d63-42606b21941f', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:07:37', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (63, 'd85b3a8e-4917-470c-8412-9c7ccbdd26e6', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:08:13', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (64, '21e06b88-33cd-4ddc-9d3e-22a0cc79d8ab', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:09:43', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (65, '70903b36-f5da-4784-8505-9e0ee7842a7c', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:10:31', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (66, '4300b8fb-4d5a-4c83-b45f-f46de9070789', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:11:57', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (67, 'a83706e9-c606-4393-b46c-bd589102fa23', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:14:25', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (68, '03b705d7-cb9b-4176-ba52-82caee369ee5', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:16:11', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (69, '9c1aa75d-0afe-4d9b-93a4-82ff51476b83', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:18:05', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (70, 'd5153a89-5dca-4ce1-b225-cdf1f06734b3', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:20:23', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (71, '6f0dc304-3697-4d5e-b6f5-dcae95c6037d', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:23:43', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (72, '1a8d1436-b1fc-4648-8ef3-8986b200f609', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:25:12', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (73, '87c74066-e8db-4312-ba9c-8d4a58d65b88', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:26:02', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (74, '7c36eace-b7c5-405f-a2a1-b1fa95d7b526', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:26:36', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (75, '9147f792-55be-4ca6-824d-b8c4a42960b3', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:27:48', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (76, '2183b103-858d-4bb4-9111-83fc8ddf24c1', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:34:12', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (77, '9594b67d-6651-4237-887d-ebadfabc8ca3', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:35:55', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (78, '60649e01-d220-4bbc-a21c-211ce67bd9a7', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:36:29', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (79, '83aa1836-36c5-4e74-aebb-9263843ce8fa', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:36:41', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (80, 'd7dfb927-1f17-41f7-868b-6ee0b8ec2d2f', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:40:14', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (81, '9898d830-f0f3-4dbd-a687-a49709b855de', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:42:14', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (82, 'e7a5b6b0-3e50-4892-b4cc-e628fb803be6', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:43:31', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (83, '34454957-3dfd-4819-8930-46daf47d2f81', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:45:03', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (84, '384b5ce9-5bf7-43b0-950d-496737c3a8dd', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:45:37', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (85, 'dd6de292-124f-44e6-a0fd-057cfeed410c', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:46:25', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (86, 'a370f0b0-fb7f-41cf-a4ed-eafb873cd50b', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:48:31', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (87, 'bfb06fff-b0bb-43a4-8cf0-bf4f4b3445f6', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:50:00', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (88, '53634812-48d2-420a-9e3c-2ac032b5d9cc', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:50:52', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (89, '994f638f-cf08-4846-9630-94bb509ab7db', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:51:27', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (90, '76813df6-4bdd-4add-981e-8e782a3b772a', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:52:16', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (91, 'df0c3f75-a865-4621-988d-ec494e9ea407', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:53:22', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (92, '07f1722d-d9d4-43f7-8f7e-81c6446d7b3f', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:57:11', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (93, '1d91f1b5-a008-446a-ad12-3210e899c55d', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:57:50', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (94, '9b0f8585-4432-401a-9ae1-f363a158a133', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:58:27', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (95, '33b73d87-df3c-41b4-8abc-d2c51bf4657e', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 16:59:41', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (96, '08daa4b5-b5e0-4217-8249-d47928afcf82', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:02:57', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (97, 'a1d11647-2316-4636-85ce-a589084c383a', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:03:27', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (98, 'c8579e89-0858-4ba7-9e00-f1ea2a208be8', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:06:37', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (99, 'd3837059-b25b-4221-9fd0-aed6f958b8a0', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:07:15', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (100, 'a47efa4b-e840-4e07-a710-459fa9f01e5e', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:08:43', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (101, 'dca0f5d4-df0f-4d95-830e-2ae8aa60a550', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:15:11', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (102, 'be678468-abc2-48db-b34d-47e81352bf5c', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:16:49', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (103, 'ae4265e7-e192-46f5-8a9e-53d6ba6aee3e', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:20:34', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (104, '232a0407-b8f0-40b2-bf70-b368aecc3f48', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:22:02', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (105, '09aa4d6e-471a-4890-98f1-85ec1f41d16d', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:23:05', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (106, '6dc0c49c-29a6-4292-bb59-d19d3c7dc11f', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:23:49', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (107, 'aafb9719-a7e3-4c25-be9f-150fbc4e345d', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:25:22', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (108, 'ce799416-f0a8-4941-9f84-ff3bf5a5ae00', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:26:16', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (109, '38ad0b87-c569-4831-84ea-f45bfb1b06e6', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:28:00', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (110, 'a0ee9a9f-6f2f-49a2-80e1-f0976cb115d5', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:28:16', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (111, '42b6c87d-a031-4f7e-8670-09672fd00239', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:29:40', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (112, '39812b97-1a6d-4255-ba0f-86e8e6150bf7', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:29:55', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (113, '38df607a-72e4-45c5-9b9a-fda85114e7a8', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:30:43', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (114, '3d1dbb97-c0d4-4790-9bd1-57d2a26c945e', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:34:02', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (115, 'f9544196-41ca-4f54-926e-2f43bd5482ef', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:34:31', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (116, 'b954f7a1-e544-4ac1-a103-54cfbc9ce982', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:35:13', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (117, '53484323-65ce-4720-91e6-51f81741df2d', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:36:26', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (118, 'cae0d43e-f1d9-427a-9e2e-a276848a9e6a', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:37:04', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (119, '3d1dd8c7-2d3d-46c7-aec0-8aeae75bd53c', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:38:24', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (120, 'd206b8cc-4663-4253-919c-eecbf4bdae2d', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:39:14', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (121, '30f22b8a-39f3-4088-a917-e7b0bb315d96', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:40:18', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (122, 'b58fa0aa-f173-4a25-b245-3eedae47c4bf', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:40:43', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (123, '6de207b2-2f61-465f-8e2d-7115220cfb0a', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:41:10', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (124, 'a2734f2b-41c2-4b5c-a9e7-0301482c2db1', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:42:30', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (125, '0142a300-7a9a-4a09-990e-f9d53363168c', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:43:54', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (126, 'a1207e54-0e14-424a-a485-9a560bce8058', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:49:37', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (127, 'cd2425fc-dab4-4f73-bc61-1b9f43920801', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:51:55', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (128, 'ee27889d-4dbb-4ed0-8184-81d0c56cee06', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:53:38', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (129, 'd85434f8-c11b-438c-890e-8e5732f91a22', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:55:11', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (130, '0cff5da9-3cd4-4363-80be-c3cccb523a95', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:57:34', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (131, '58cf157e-c55c-4cf4-90ee-6f9546ea60de', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:58:23', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (132, '3ad40393-bdc1-4cc5-90cb-c40c45737c07', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 17:59:36', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (133, '268d0dec-0c8c-4017-adf0-c87c7a5705f5', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:03:33', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (134, 'a925f086-1f57-4ffc-bb0b-656e27cac343', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:05:28', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (135, '0d344981-1748-4b0c-bd5e-38db0d9d4903', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:07:31', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (136, '545b520c-d306-4ae9-affa-ead01383de6b', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:07:44', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (137, '2cf65789-0d5a-4a04-a86b-71b4c4632fab', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:08:02', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (138, '69b4eb4c-89e3-4ff1-ba0a-ec181cfa269e', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:11:22', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (139, 'eae37130-5acb-4a7c-a466-867202b5de22', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:12:07', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (140, '74471c0e-fb55-4545-b23a-944f56a01d9e', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:13:54', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (141, '3dc79a1b-6974-4338-a05e-732a08c06d9f', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:15:26', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (142, '1bb4277e-05dc-455a-86f1-a4d7a570a7c9', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:21:19', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (143, 'f6c85ba2-6d99-4509-9fce-e32762a3d9fc', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:25:01', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (144, '99f90484-cd36-4caf-b874-64cdec51c973', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:26:24', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (145, '254a881a-36c0-46a8-89c1-47ec0902cc1c', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:28:43', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (146, '40814010-a24d-448f-9841-ea26f75e3d4f', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:29:17', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (147, 'b9d31023-b415-4a05-88be-e8f6077ba1c1', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-12 18:30:22', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (148, '8d98204f-cc93-4ae7-961a-ffc88f16ad22', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:02:29', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (149, 'cfa57e94-fa7b-4cd7-8b0e-f84c2a32517a', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:03:05', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (150, 'b0742424-3b90-4c92-91b6-da7d0c1042e4', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:04:31', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (151, '92fb0d86-db06-4bd2-88a6-2c5e5659c2dd', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:10:44', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (152, '157c9ab2-260f-4fc9-953c-244e66a416dc', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:14:04', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (153, '58250a3d-9d20-4c06-a161-b89a5cbe2205', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:17:25', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (154, '503ec9f6-9c51-494c-abe6-d2025b6d5de8', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:23:32', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (155, '7da9ee7e-00f1-400c-9e82-aa756d33c2f7', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:25:14', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (156, '576eb582-a62f-4de4-a7c6-5a79d06a317e', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:26:11', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (157, '35fe81bd-a801-411e-a588-83e2073b53d1', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:36:01', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (158, '13cc3148-7818-4aae-b404-5aa5b21bcb43', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:37:12', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (159, 'c667755d-08bf-4575-8763-ece99a8d34ff', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:38:20', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (160, 'e9cb8b8f-0f5a-47f0-ac70-04b75341a2cd', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:40:18', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (161, '128cb9e9-52a8-4ecc-8b4f-14d0377a9bdb', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:41:53', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (162, 'e71e95b5-4d16-45d4-ad99-c719c971ee4f', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:46:18', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (163, 'c22e9388-e8e1-4965-8689-67d614efa611', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:47:29', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (164, 'f3232bc6-a8d0-48c0-a08f-0f7ad79dfaa1', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:48:36', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (165, '0bd9b8c6-bfe6-41f3-80ad-2bad1f56348b', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:51:38', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (166, '4c04dbef-6f2d-48a7-a549-55089038e197', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:53:04', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (167, '2c3b82a0-1cdb-4ccf-80ec-41d49f5c1bcf', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:54:21', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (168, '20d05c1d-c3c2-4f89-8093-44b548165d42', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:55:38', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (169, '6364f00a-44f9-41c6-a462-1edf968fe4e5', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 09:59:29', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (170, '6598c9c5-9e50-432c-aaa2-636e0e8d44f9', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:07:53', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (171, '3909b811-7a5a-46c1-b390-6d21d8857670', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:10:11', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (172, 'd3da6d29-b931-4f25-ba5b-bd091af19ff5', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:21:05', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (173, '11040fcd-6f8b-470b-aedc-1411b36165c7', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:23:34', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (174, 'c3ac6479-d9c2-4205-a257-abefe814a842', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:26:47', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (175, 'f0cf37ba-eeeb-44ea-a870-8bc74c079d5c', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:39:49', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (176, 'babe0cad-db0c-4f07-b478-89f8d89bc197', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:42:21', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (177, 'df2b5aae-e7da-4793-8f42-d7025855208e', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:46:08', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (178, '4b6bd295-aa7c-4549-b82f-fd0d8be4a439', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:49:22', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (179, '2e3ffaa3-d499-46a7-aa1b-b2ae27ef4d32', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:50:20', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (180, '8670c605-1b89-4448-9de3-e4d15a1b0bad', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:52:38', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (181, 'fc90c9b0-c5d1-41b2-be40-1ea9ee2e52f2', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:53:25', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (182, '4cb82fc7-e322-439d-bd49-59e22b4ba8de', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:55:25', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (183, '9d4f9fd7-0564-4128-be27-25030761f141', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 10:58:06', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (184, 'bfe86e54-30e8-4c0c-ae49-497863b73708', 'WECHAT_OPEN_MOBILE', NULL, NULL, NULL, 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 11:00:58', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (185, '89953f9b-30af-446c-9682-27358d8f4d76', 'WECHAT_OPEN_MOBILE', '72_1zj9L8T0iKDEqORM5reOYHBG3nL_5jbvb3TfFjGQqw5jv9-0YmI02SgOto6PZXZ7Y1R0o8nm5EeJc8bR8547MfZMBbICbasV2YDtW0XbfSQ', 7200, '72_0Ae6bzB8bTMtnrrfuHkNDN37ko1GEOTLsbqbE3tbQAXNHNd6n_7-HIie0v_zC_clqDr4mOmJBOtkvjCzVHDWW7OS0pAdoDUovfy2n-Y7WD8', 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 11:01:17', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/NEJsVswPcQnxDy3UBXcVGIpMwvn2FmJ6I1k5DoNZk0UcZwQEm7lCewbdneEEfCeVkVNXOIQOXw8evKBea5MBdA/132', 0, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (186, '09277a77-53a8-4cf9-8396-0442d33166ab', 'WECHAT_OPEN_MOBILE', '72_StpVhV87sy7cSsbkVoOJyxCdtlD3JxcdxG5vO8vgZ1eR7C2mORJdxYynL9SJR__pD_rdt2IHbfcSIH2Fpw5wh-BVMu3TTKeESp6qD4Nl1go', 7200, '72_LbZu1ZoNlOHPoqHVRROZ_eGiaMHwqRE4dy3xa6QxpbvnlV5mfAiyyiI0wfUYcnCyruuudNtMlW50NBZNcAxBPeBu3TYILuhlA3rYzCgaNqo', 'oRrdQt10T_V0r-s6plNgUfVWrzns', NULL, NULL, 'oU5Yyt_J3cry6qhOzJE1qW-tdiVA', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 11:03:08', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, 'oh', 'oh', 'https://thirdwx.qlogo.cn/mmopen/vi_32/5M4DYfvJP2dlsqQVmiclkxeGZrnnMf7hj6ryUR35INtKBicn7Whq0oPCdcJfotYxslSPGH2d8s2exvIicu8FYDXicg/132', 0, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (187, '79aca6b3-0552-4f19-8720-10efa034834f', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-13 14:34:42', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (188, 'e4f08938-b416-4713-8c37-a157d006991f', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-14 12:03:46', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (189, '2392005b-1079-4e6b-9625-a295f5e482ec', 'WECHAT_OPEN_MOBILE', '72_Yg_G7_l9nv0ikzJ6Oe7h1q9bz5oU_cJ3TYUMhKxO2ZKudg1bYfhAYygNt95C_qRy_zqiAZVO8jYvxj89iQaRvl5dgKLJl4gAh2GZus6xYfw', 7200, '72_NWbKK4ucUpHoMmLTKSGxTKfMOau99ebYJoWHJkWtVndGLVB6SmwVSwOlavfbh1KHDKqh4RNw28FWl4SauyBCoicugrLnH528z3RyIqrYF9M', 'oRrdQt4tGXZURgaPWika1a7yRzOU', NULL, NULL, 'oU5YytwWSaDv2FD83GB_Ax1pbpzk', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-14 15:14:17', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/NEJsVswPcQnxDy3UBXcVGIpMwvn2FmJ6I1k5DoNZk0UcZwQEm7lCewbdneEEfCeVkVNXOIQOXw8evKBea5MBdA/132', 0, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (190, '13fec398-b9a0-4a3f-b878-bc892a0104b0', 'WECHAT_OPEN_MINI_PROGRAM', NULL, NULL, NULL, 'o02g45SvGqn2RyGeLcv0-OA3SxuU', NULL, NULL, 'oL1Fu5zL-AW5yb0w8naA7tB61vMo', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-14 15:15:04', 'System', '2023-09-22 09:07:14', NULL, '1', '1', 6, NULL, NULL, NULL, NULL, 'wechat_open_mini_program'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (191, '338c3d89-a231-4b57-b5f0-cfe3d1f13850', 'WECHAT_OPEN_MOBILE', '72_4DWd6gR3GQIiXPpuagGrM5eILwEO4SfHWJIDwLMqp8I_2FJpBwdNL-Or9UhQ7T8BNKoV0GZ2lh9FaCHk_7LyABY3lmABBpee6Ok4W_KBX08', 7200, '72_iH1rgWvH35a-0O2aXSFSB9qWyXPF_JcChEpn-WFVeFzI1Scfw_1ZxhD8_tEZY5Wk5OMNCqh9WyOKBtO11pL0bUQIWyzYgoPiJHCA2NCrukw', 'oRrdQt10T_V0r-s6plNgUfVWrzns', NULL, NULL, 'oU5Yyt_J3cry6qhOzJE1qW-tdiVA', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-14 15:34:45', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, 'oh', 'oh', 'https://thirdwx.qlogo.cn/mmopen/vi_32/5M4DYfvJP2dlsqQVmiclkxeGZrnnMf7hj6ryUR35INtKBicn7Whq0oPCdcJfotYxsla7j7Dvh5eWLLNxttY6gyYA/132', 0, 'wechat_open_mobile'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (192, 'oyyyv6RrMpgR22_BHD-Ne7TWsVMo', 'WECHAT_OPEN', '72_1RLeJ9QnQYJkiMs87FTBBMoK5h9ISBM3XZtPLveA6IetBtyejnDk5c7f-p0mC1RTHLxMkjC-e9KfX8l2y-0XqCPKav_0R20C-Tzbw95wlt0', 7200, '72_lcw1_ihZeBiAUFq4YPt3gc10tRBDMMhLKEsV-f7fZrZkd8xK5-tKbRXaCZL-Cbf4QkPbxnCPWb4svWODgBKMjUXc7g4W4qEkqgNg-4zllss', 'oyyyv6RrMpgR22_BHD-Ne7TWsVMo', NULL, NULL, 'oL1Fu5x1fapbFrUGWUStT0Vs6f4I', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-14 17:16:47', 'System', '2023-09-15 17:23:12', NULL, '1', '1', 8, 'shadow', 'shadow', 'https://thirdwx.qlogo.cn/mmopen/vi_32/74LllXzhnGtAwmn3AEwrRDYFegYX00yJphUlyk6iaQNYNWnLwSMuZ0JXnXicav8n01D0cgL9ptRrG4GX2NttSNcg/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (193, 'bd40330e-9ff0-4c2b-ba00-ff2c3a9cf9e3', 'wechat_open_web', '72_pg1i2Xl9vrW288PCqZybI56qq3-2Yin1o8nvKFAPCRx9OaS8HxJNHUVb6xuG5j_fQdwMecInJYxUpvTTUlJ659DsFOVYrr4RBCTI0sAEqBU', NULL, '72_v0sNSaJQyj8XUCk1bRPIl0A7TB8n4pN0mC807o7YGbPVXugt7aId7RAyb2hi9gsvd0aX2R4vAW-BnDtCTHPm_Un_AkW-mM8SYc44JuxMhOg', 'oyyyv6RrMpgR22_BHD-Ne7TWsVMo', NULL, NULL, 'oL1Fu5x1fapbFrUGWUStT0Vs6f4I', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-14 17:30:40', 'System', '2023-09-15 17:23:12', 'System', '1', '1', 8, 'shadow', 'shadow', 'https://thirdwx.qlogo.cn/mmopen/vi_32/74LllXzhnGtAwmn3AEwrRDYFegYX00yJphUlyk6iaQNYNWnLwSMuZ0JXnXicav8n01D0cgL9ptRrG4GX2NttSNcg/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (194, 'a8681dc9-f2cc-4316-a6a4-d8d43aa00e19', 'wechat_open_web', '72_44jRuqhWDZYQwgFJMFzJkNRKd3_w0m9npMlL7gv16EoEW2UZy6CbNfy_oSuhqMz28PnUHOJwAyC-Xv--LvNxSePhPu-K-FOajq-1BE10G2o', NULL, '72_wF_NsYq04JgoGpNVvq6EvbZjD7BDDz7XHpGfGA4bT61A_wf3ITbXSFhc57MJUwi_o-HhCfBJ9FnSEBu2nySYkDVTbQ457WZ-ZXDTkwo7OMc', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-14 18:13:09', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (195, '128d79bf-7573-40c6-bbca-ff5fcf2a0a71', 'wechat_open_web', '72_h2CaZanyW6eeDFw4jybBzdqYKIWBovGeEeB29G6WZEPDtZPiXANNrFRLEMmtd_HGLwv8YwqwBinOVTIxtrjwFcue_x_z9YJlgM5pfJFNHJA', NULL, '72_hK0QOqLAqq-5-0sbwA4_Kqs-nweY_HC0LTaprTL8n_nbZD8wwhPkil5b2-0Sk855gQ47NGTwczEAt-pCt8ZyZwkTEX0gtO6kcRp8Ajz2kew', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-14 18:13:47', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (196, '698dbf21-8b29-47fa-9946-19a82d067645', 'wechat_open_web', '72_smafRNdslVfgLL-x0nBV5JZO3jT_r3LJBwYw2HJQYpcGe7KKBSSYtIrqpsvVFY75Z7knhMefGlOf9r6s1sH9sjdmAq5EQAOCx2B5QexT3_U', NULL, '72_ongWXQyEHIhXich6claT-7BzZZJbTAb-0dlr245Ee8GO4I9MFplLxa9P5o8qGmgxWhh3h1HvpyYzCyIJ2xxMaS79GhdOhmv6ZJ0dyJN5tsI', 'oyyyv6RrMpgR22_BHD-Ne7TWsVMo', NULL, NULL, 'oL1Fu5x1fapbFrUGWUStT0Vs6f4I', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-14 18:49:36', 'System', '2023-09-15 17:23:12', 'System', '1', '1', 8, 'shadow', 'shadow', 'https://thirdwx.qlogo.cn/mmopen/vi_32/74LllXzhnGtAwmn3AEwrRDYFegYX00yJphUlyk6iaQNYNWnLwSMuZ0JXnXicav8n01D0cgL9ptRrG4GX2NttSNcg/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (197, 'f0fd123d-b82a-4eb9-a67a-fb81db6b739d', 'wechat_open_web', '72_eexrzOvM96xPvH3Lsl7viBOtnBHFDzFJdIz1d074PJxOhAB9qY0HE-NxnWm67afHT0zphQ4RyVEM1BOohhE32HN_D5yZVcMh24oMrSCPJYg', NULL, '72_W25_phPvOFAfeASpx050O28_pOfgtW0LsnuWYQZI6LIrMeVJnju7FrLTG5xuYG_awhD7crWRzpd-guJs2gZ3ZBVj7bSRtwIgSvgVRfzG0zs', 'oyyyv6RrMpgR22_BHD-Ne7TWsVMo', NULL, NULL, 'oL1Fu5x1fapbFrUGWUStT0Vs6f4I', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-15 11:49:37', 'System', '2023-09-15 17:23:12', 'System', '1', '1', 8, 'shadow', 'shadow', 'https://thirdwx.qlogo.cn/mmopen/vi_32/74LllXzhnGtAwmn3AEwrRDYFegYX00yJphUlyk6iaQNYNWnLwSMuZ0JXnXicav8n01D0cgL9ptRrG4GX2NttSNcg/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (198, '702797d1-04ef-4374-a618-aa2c3370135c', 'wechat_open_web', '72_BqSILWRpNzD35f9vkga9dMSHQp3bftJMa7eBpOXIepLh7zJVdBMUiPghVRz96hvtuCvvY7CryJtM5yuKx0tU4IJer4ZshmLHSw1Fl7jYtlo', NULL, '72_jJ0WZ-4r18IkeIs0YC6FfCS0QtCk9S5N1cqYeCIsKijORm2I1diDUE4zVLzYL5dUfxoVeUdHpYY8EyFBKQiWOzaGSECPPLw2bzQnigQzr-g', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-15 14:27:11', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (199, 'ebe3c9b0-6d17-4e7a-9d4b-a4d127e5f81e', 'wechat_open_web', '72_eahdqYL3gU93PJ1IWa6sIKwL4-XvLvCcMnkLYYI3au_8OQ2ZEwe5YHjnRKVzmXDkEfW_IUwCpSyGBLYaOS_ms4RfSI-TAH_s7lUnh_pwOpQ', NULL, '72_8RcuvSh7R88zZSjHyMfuROguXNJxl28CinaM0DMVnQdlvrLORUkT-ArLdWEY_ukrctsOppiY85xYUtZ8mRKit66-IMJauWckLptvbS6mVtk', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-15 16:14:33', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (200, 'a9865b55-498e-47e5-ab12-bfc028f9401a', 'wechat_open_web', '72_sDs8oTAz4diS5nsjQyO-y2aO2IXDYL0CkVFkHaA5gJDb1YCUqfmG9ejNR0-lsshtYwOOswE5s5hdIMkBXsUt_zuVK5nyTlJ3oi3sVrUEaP4', NULL, '72_Z9mP_wckNOwwmrA0eGB8lUB5CY23FvlLciZBegzfnyg10VW0GOe56QF0uM4rgtTha-kO7Uhasm2FIFdDdGKhriu8t1OYs2PEyYT-GOYauvA', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-15 16:16:30', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (201, '45ef2f02-0498-4a91-9b7e-7ec1fbba1f4f', 'wechat_open_web', '72_pj5qq79ny99dg-nnZztIDdBw6pxQUTOI7GC1-50zdFugMU3JhIUgoWKG_zISSOT63HSkuogl0GTSM7zV-7XaGRZoVvT3ks9e4No7qh4lmcM', NULL, '72_jJaohqyJXjiOai2Y1X2JGxinYVUpGYQhNrNRqRBEGDzY44zuPuNxJSIAvlXbJoZXwi57WfV2FxbLCfeUPCnBzypTR6MyAgnY7UBPzfnkO8E', 'oyyyv6RrMpgR22_BHD-Ne7TWsVMo', NULL, NULL, 'oL1Fu5x1fapbFrUGWUStT0Vs6f4I', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-15 17:22:53', 'System', '2023-09-15 17:23:12', 'System', '1', '1', 8, 'shadow', 'shadow', 'https://thirdwx.qlogo.cn/mmopen/vi_32/74LllXzhnGtAwmn3AEwrRDYFegYX00yJphUlyk6iaQNYNWnLwSMuZ0JXnXicav8n01D0cgL9ptRrG4GX2NttSNcg/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (202, '719938db-a623-427c-b0bb-f93ccc66e12e', 'wechat_open_web', '72_47aVnqUFSV_6B866IIt56eXQ4MCeaON9p6uNXDNd8tM9C1aDLc42MpMvPCh4gUJBr1CPk6W2BjaJdbp53mhvgJQ9mbVTHi3Rgt7S5lYa1uc', NULL, '72_ES4G1cNwL7SR5zxg7wSUtyh1JAMD3iHksu9PhfriYVa7BviNMKTBXq0XA92tRNDGTLbYyjpzXBsihDooqcYziiJjJNJZ8HV573kvdk5Js6g', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-15 18:01:00', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (203, '6c128697-f856-4cec-9b22-9c041e546aa9', 'wechat_open_web', '72_ouu4bb-uHrl6KXeQP_H_nI2cn0GBsiCAq4sJcwK0vEhi4DqPbvInOEpYwX1ljPsrxJ2a6iXf48A8SRDDT0G-jKPhs5qsI7MTUvylc3tIvIA', NULL, '72_8yFIgg2C-J3jomyS19ZQmPsNu_bwxoVe_pOjDQInuid5WH2SLBL5ul8NIXF4kFbBT5S1xDvQ9Wo0yGLgLg4kAwvGRRk2atyA9u85HLXRrCU', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21 16:40:55', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (204, 'd78d0dfd-ea6a-419c-a95d-916f75ef8645', 'wechat_open_web', '72_In2RD2EUmBPN_cKpj_e_6WhSI0BFkOqOSGMAxPg8frEv3EExLiPv7H7p1VJFBoTXDRMUzxX4uBXJUanI3B38y2IO0T_T21WZWToph0Hqrfk', NULL, '72_ICxLSkfZYijpSu7nJwnOGVjwG0bLkwAlsKxMNYUAJF0O-hkVP44qlnSJjrEXvQ7tpId_-8uygb3EjfSYMBh1h5D-YtjYFTYgj-tQOcponpQ', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21 16:48:25', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (205, '3057f429-575b-4116-b6c2-2be2ed0daa6a', 'wechat_open_web', '72_8RcuvSh7R88zZSjHyMfuRAU8ESiAbG5qYjyInId2yhXEwIsJ--rVPWI-ZuUTkJzBym4oNf7hFJtvwZWqv1S0H-poe26G0sU_ge92uPjC3J8', NULL, '72_j_d-U4TM9Uc6ZXfG_ckplSQX_umZya-Z-HssZe57QjB0rYvI0LP2nzWusHpAVu352zq7LXTNGd2X239O3wHqlPSJ9dstTukRWWYy3h0nnVQ', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21 16:50:17', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (206, 'c0013cb3-7862-4477-b178-a1cf885ad278', 'wechat_open_web', '72_VO1uAiIQgD1l49wDcy5oqfq7Qp-e6qX8FDtdvgbGuib3T2JAZZrBC6wKunFue-O5fai49_Y2-Y_0NUldDAgGjFVGJ53FwA9sQH6W9yovX3Y', NULL, '72_ldWlbgKsd3GropvbdrgjzZMFOgKS8i8Cre678hFHSWlrGaQVjPR9WgRZftTWcQHA0vgDQM-wKERD7_LGC1qzKnxEeUPOH1cO_VztQ3ZCvM0', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21 16:53:02', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (207, '243912df-6515-4821-a2d2-311869eb4b66', 'wechat_open_web', '72_nrEdUC4X_xkmBsNbtePmd4tyBTDyhAzb35Xp0ul9pUfRsMfG8GIVQrIvM-GIJXyvJ1n5BscRwmOKeZxxqfzKiQdq-WjWy0PVmKEJ7YV2p_8', NULL, '72_H4I7KKoI2DSFE3dSVXAzyGxz0OqTXT6d8kMvraXgA4nslgsCM6iLB_7d-aHGOhKjKOQbUAJb8-mOerc9YhfM1oPRb_nW4y1lvswt-QwXrRs', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21 17:22:13', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (208, 'b14bbe72-eddb-4282-a42b-77281f61f27c', 'wechat_open_web', '72_eahdqYL3gU93PJ1IWa6sIHdTySn-4UB_nLAkQLGDSjY7CTMUE4EOSyKYEFSoZmq9Fs64RdAHCV3PJG4ifk_VlZaFkGopHrytcIScSIfyU6w', NULL, '72_8RcuvSh7R88zZSjHyMfuRKViN1EJKbd_ZCElj0V8epojZFlgv6LJZd_fBKE2hE3q9iUqj-0vPqndpMCdc-FfPUjbvDh4B5w1UtNv78wz1Ak', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21 17:39:53', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (209, '56f25762-2dcc-4be2-a50e-934eac40e328', 'wechat_open_web', '72_GqYw5ylQK7W9nn_cd8keVairltJ1Fcyp9SsIORxMtkihL1iQecSo5Boclagxl-RXHnmdc7mo82DLkFkSqSTDn0JunfPAtAIyAZl5geONq88', NULL, '72_2PoE8DZBF2qybpGHXPHagdYdPtt3Un3YjomGW7pGF65KKYF8t-qd4scANEK1QguVv1ig6zEDvL7F7iFgNVGkkRTEicSq21-QyZ7jVul6J1Y', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-21 18:31:11', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); INSERT INTO "public"."iot_social_user" ("social_user_id", "uuid", "source", "access_token", "expire_in", "refresh_token", "open_id", "uid", "access_code", "union_id", "scope", "token_type", "id_token", "mac_algorithm", "mac_key", "code", "oauth_token", "oauth_token_secret", "create_time", "create_by", "update_time", "update_by", "del_flag", "status", "sys_user_id", "username", "nickname", "avatar", "gender", "source_client") VALUES (210, '3a8b4ac4-8e24-4b23-b850-8fca2d90794b', 'wechat_open_web', '72_jJ0WZ-4r18IkeIs0YC6FfDOthAf9UIUNqALqUbYzBMirZuUh48M4AcVlp0Pjy4KbdA_OA1sWvkL1XWAcLa-KtqM-g-gF8Bz9DBfVUwcKGMU', NULL, '72_qfKdEHN3PH23LcmUsUrXoUmO2EkXUtRStVV_j7RabNi8Kuj8mhZYao9fZYCs_m_djArcug96q0TgX2Nxxnkk8LFOYQ26ODl0fy8ZLW6WW9c', 'oyyyv6arGVpFTY9CsqnSJtorlf-A', NULL, NULL, 'oL1Fu55rzFhAJtwkp2Cyl25PKHu0', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-09-22 09:06:39', 'System', '2023-09-22 09:07:14', 'System', '1', '1', 6, '🍎', '🍎', 'https://thirdwx.qlogo.cn/mmopen/vi_32/1MKp7S9bHm212HicjST72CcvmbF1NCcY1SvXskO1vicrlIcuJt6jUBKcSgoOiaGBI2Jr7ic5ZjEpMNMA42joLjFBWA/132', NULL, 'wechat_open_web'); COMMIT; -- ---------------------------- -- Table structure for iot_things_model -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_things_model"; CREATE TABLE "public"."iot_things_model" ( "model_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 510 INCREMENT BY 1), "model_name" varchar(64) NOT NULL, "product_id" int8 NOT NULL, "product_name" varchar(64) NOT NULL, "tenant_id" int8 NOT NULL, "tenant_name" varchar(30) NOT NULL, "identifier" varchar(32) NOT NULL, "type" int2 NOT NULL, "datatype" varchar(64) NOT NULL, "specs" text, "is_chart" int2 NOT NULL, "is_monitor" int2 NOT NULL, "is_history" int2, "is_readonly" int2, "is_share_perm" int2, "model_order" int4, "del_flag" char(1), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500), "temp_slave_id" int8, "formula" varchar(255), "reverse_formula" varchar(255), "reg_addr" int4, "bit_option" varchar(255), "value_type" varchar(64), "is_params" int4, "quantity" int4, "code" varchar(255), "parse_type" varchar(20) ) ; COMMENT ON COLUMN "public"."iot_things_model"."model_id" IS '物模型ID'; COMMENT ON COLUMN "public"."iot_things_model"."model_name" IS '物模型名称'; COMMENT ON COLUMN "public"."iot_things_model"."product_id" IS '产品ID'; COMMENT ON COLUMN "public"."iot_things_model"."product_name" IS '产品名称'; COMMENT ON COLUMN "public"."iot_things_model"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "public"."iot_things_model"."tenant_name" IS '租户名称'; COMMENT ON COLUMN "public"."iot_things_model"."identifier" IS '标识符,产品下唯一'; COMMENT ON COLUMN "public"."iot_things_model"."type" IS '模型类别(1-属性,2-功能,3-事件)'; COMMENT ON COLUMN "public"."iot_things_model"."datatype" IS '数据类型(integer、decimal、string、bool、array、enum)'; COMMENT ON COLUMN "public"."iot_things_model"."specs" IS '数据定义'; COMMENT ON COLUMN "public"."iot_things_model"."is_chart" IS '是否图表展示(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_things_model"."is_monitor" IS '是否实时监测(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_things_model"."is_history" IS '是否历史存储(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_things_model"."is_readonly" IS '是否只读数据(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_things_model"."is_share_perm" IS '是否设备分享权限(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_things_model"."model_order" IS '排序,值越大,排序越靠前'; COMMENT ON COLUMN "public"."iot_things_model"."del_flag" IS '删除标志(0代表存在 2代表删除)'; COMMENT ON COLUMN "public"."iot_things_model"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_things_model"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_things_model"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_things_model"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_things_model"."remark" IS '备注'; COMMENT ON COLUMN "public"."iot_things_model"."temp_slave_id" IS '从机id'; COMMENT ON COLUMN "public"."iot_things_model"."formula" IS '计算公式'; COMMENT ON COLUMN "public"."iot_things_model"."reverse_formula" IS '控制公式'; COMMENT ON COLUMN "public"."iot_things_model"."reg_addr" IS '寄存器地址值'; COMMENT ON COLUMN "public"."iot_things_model"."bit_option" IS '位定义选项'; COMMENT ON COLUMN "public"."iot_things_model"."value_type" IS '解析类型 1.数值 2.选项'; COMMENT ON COLUMN "public"."iot_things_model"."is_params" IS '是否是计算参数'; COMMENT ON COLUMN "public"."iot_things_model"."quantity" IS '读取寄存器数量'; COMMENT ON COLUMN "public"."iot_things_model"."code" IS 'modbus功能码'; COMMENT ON COLUMN "public"."iot_things_model"."parse_type" IS 'modbus解析类型'; COMMENT ON TABLE "public"."iot_things_model" IS '物模型'; -- ---------------------------- -- Records of iot_things_model -- ---------------------------- BEGIN; INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (113, '设备开关', 41, '温湿度智能开关', 1, 'admin', 'switch', 2, 'bool', '{"type": "bool", "trueText": "打开", "falseText": "关闭"}', 0, 0, 1, 0, 0, 9, '0', NULL, '2022-08-14 00:06:53', '', '2023-03-31 23:43:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (125, '空气温度', 41, '温湿度智能开关', 1, 'admin', 'temperature', 1, 'decimal', '{"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃"}', 1, 1, 1, 1, 0, 1, '0', NULL, '2022-11-05 23:56:21', '', '2023-03-31 23:44:21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (126, '空气湿度', 41, '温湿度智能开关', 1, 'admin', 'humidity', 1, 'decimal', '{"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "%"}', 1, 1, 1, 1, 0, 3, '0', NULL, '2022-11-05 23:56:21', '', '2023-03-31 23:44:12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (127, '二氧化碳', 41, '温湿度智能开关', 1, 'admin', 'co2', 1, 'integer', '{"max": 6000, "min": 100, "step": 1, "type": "integer", "unit": "ppm"}', 1, 1, 1, 1, 0, 2, '0', NULL, '2022-11-05 23:56:21', '', '2023-03-31 23:44:17', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (128, '室内亮度', 41, '温湿度智能开关', 1, 'admin', 'brightness', 1, 'integer', '{"max": 10000, "min": 0, "step": 1, "type": "integer", "unit": "cd/m2"}', 1, 1, 1, 1, 0, 4, '0', NULL, '2022-11-05 23:56:21', '', '2023-03-31 23:44:08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (129, '运行档位', 41, '温湿度智能开关', 1, 'admin', 'gear', 2, 'enum', '{"type": "enum", "showWay": "select", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}', 0, 0, 1, 0, 0, 8, '0', NULL, '2022-11-05 23:56:21', '', '2023-03-31 23:43:49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (130, '灯光色值', 41, '温湿度智能开关', 1, 'admin', 'light_color', 2, 'array', '{"type": "array", "arrayType": "integer", "arrayCount": "3"}', 0, 0, 1, 0, 0, 5, '0', NULL, '2022-11-05 23:56:21', '', '2023-09-25 22:57:42', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (131, '屏显消息', 41, '温湿度智能开关', 1, 'admin', 'message', 2, 'string', '{"type": "string", "maxLength": 1024}', 0, 0, 1, 0, 0, 7, '0', NULL, '2022-11-05 23:56:21', '', '2023-03-31 23:43:54', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (132, '上报数据', 41, '温湿度智能开关', 1, 'admin', 'report_monitor', 2, 'integer', '{"max": 10, "min": 1, "step": 1, "type": "integer", "unit": "次数"}', 0, 0, 0, 0, 0, 10, '0', NULL, '2022-11-05 23:56:21', '', '2023-03-31 23:43:38', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (134, '环境温度过高', 41, '温湿度智能开关', 1, 'admin', 'height_temperature', 3, 'decimal', '{"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "℃"}', 0, 0, 1, 0, 0, 0, '0', NULL, '2022-11-05 23:56:29', '', '2023-03-31 23:44:25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (135, '设备发生异常', 41, '温湿度智能开关', 1, 'admin', 'exception', 3, 'string', '{"type": "string", "maxLength": 1024}', 0, 0, 1, 0, 0, 0, '0', NULL, '2022-11-05 23:56:29', '', '2023-03-31 23:44:29', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (161, '子设备', 96, '网关产品', 1, 'admin', 'device', 1, 'array', '{"type": "array", "params": [{"id": "device_co2", "name": "二氧化碳", "order": 0, "isChart": 1, "datatype": {"max": 6000, "min": 100, "step": 1, "type": "integer", "unit": "ppm", "enumList": [{"text": "", "value": ""}], "arrayType": "int"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1, "isSharePerm": 0}, {"id": "device_temperature", "name": "空气温度-只读", "order": 4, "datatype": {"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃"}, "isHistory": 1, "isMonitor": 0, "isReadonly": 1}, {"id": "device_gear", "name": "运行档位", "order": 6, "isChart": 0, "datatype": {"type": "enum", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0, "isSharePerm": 1}, {"id": "device_switch", "name": "设备开关", "order": 5, "isChart": 0, "datatype": {"type": "bool", "trueText": "打开", "falseText": "关闭"}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0, "isSharePerm": 1}, {"id": "device_report_monitor", "name": "上报监测数据", "order": 9, "isChart": 0, "datatype": {"max": 10, "min": 1, "step": 1, "type": "integer", "unit": "次数"}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0, "isSharePerm": 1}, {"id": "device_irc", "name": "射频遥控", "order": 1, "isChart": 0, "datatype": {"type": "enum", "showWay": "button", "enumList": [{"text": "遥控学习", "value": "FFXX01"}, {"text": "遥控清码", "value": "FFXX02"}, {"text": "打开开关", "value": "FFXX03"}, {"text": "关闭开关", "value": "FFXX04"}, {"text": "暂停", "value": "FFXX05"}, {"text": "锁定", "value": "FFXX06"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0, "isSharePerm": 1}], "arrayType": "object", "arrayCount": "5"}', 0, 0, 0, 0, 1, 10, '0', NULL, '2023-02-25 22:51:53', '', '2023-09-25 23:13:21', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (162, '功能分组', 96, '网关产品', 1, 'admin', 'category', 1, 'object', '{"type": "object", "params": [{"id": "category_light", "name": "光照", "order": 1, "isChart": 1, "datatype": {"max": 100, "min": 0, "step": 1, "type": "decimal", "unit": "mm"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}, {"id": "category_humidity", "name": "空气湿度", "order": 2, "isChart": 1, "datatype": {"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "%"}, "isHistory": 0, "isMonitor": 1, "isReadonly": 1}, {"id": "category_temperature", "name": "空气温度-只读", "order": 3, "isChart": 0, "datatype": {"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃"}, "isHistory": 1, "isMonitor": 0, "isReadonly": 1}, {"id": "category_report_monitor", "name": "上报监测数据", "order": 7, "isChart": 0, "datatype": {"max": 10, "min": 1, "step": 1, "type": "integer", "unit": "次数"}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0, "isSharePerm": 1}, {"id": "category_gear", "name": "运行档位", "order": 5, "isChart": 0, "datatype": {"type": "enum", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0, "isSharePerm": 1}, {"id": "category_switch", "name": "设备开关", "order": 4, "isChart": 0, "datatype": {"type": "bool", "trueText": "打开", "falseText": "关闭"}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0, "isSharePerm": 1}, {"id": "category_irc", "name": "射频遥控", "order": 6, "isChart": 0, "datatype": {"type": "enum", "showWay": "button", "enumList": [{"text": "遥控配对", "value": "FFXX01"}, {"text": "遥控清码", "value": "FFXX02"}, {"text": "打开开关", "value": "FFXX03"}, {"text": "关闭开关", "value": "FFXX04"}, {"text": "暂停", "value": "FFXX05"}, {"text": "锁定", "value": "FFXX06"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0, "isSharePerm": 1}]}', 0, 0, 0, 0, 1, 9, '0', NULL, '2023-02-25 22:51:53', '', '2023-09-03 11:03:24', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (163, '空气温度', 96, '网关产品', 1, 'admin', 'temperature', 1, 'decimal', '{"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃"}', 1, 1, 1, 1, 0, 0, '0', NULL, '2023-02-25 22:52:16', '', '2023-03-31 16:08:03', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (164, '设备开关', 96, '网关产品', 1, 'admin', 'switch', 2, 'bool', '{"type": "bool", "trueText": "打开", "falseText": "关闭"}', 0, 0, 1, 0, 1, 8, '0', NULL, '2023-02-25 22:52:16', '', '2023-09-03 11:03:30', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (165, '运行档位', 96, '网关产品', 1, 'admin', 'gear', 2, 'enum', '{"type": "enum", "showWay": "select", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}', 0, 0, 1, 0, 1, 7, '0', NULL, '2023-02-25 22:52:16', '', '2023-09-03 11:03:41', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (166, '灯光色值', 96, '网关产品', 1, 'admin', 'light_color', 2, 'array', '{"type": "array", "arrayType": "integer", "arrayCount": "3"}', 0, 0, 1, 0, 0, 0, '0', NULL, '2023-02-25 22:52:16', '', '2023-03-31 16:08:09', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (167, '上报监测数据', 96, '网关产品', 1, 'admin', 'report_monitor', 2, 'integer', '{"max": 10, "min": 1, "step": 1, "type": "integer", "unit": "次数"}', 0, 0, 1, 0, 1, 11, '0', NULL, '2023-02-25 22:52:16', '', '2023-09-03 11:03:11', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (168, '环境温度过高', 96, '网关产品', 1, 'admin', 'height_temperature', 3, 'decimal', '{"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "℃"}', 0, 0, 1, 0, 0, 0, '0', NULL, '2023-02-25 22:52:16', '', '2023-03-31 16:08:15', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (169, '设备发生异常', 96, '网关产品', 1, 'admin', 'exception', 3, 'string', '{"type": "string", "maxLength": 1024}', 0, 0, 1, 0, 0, 0, '0', NULL, '2023-02-25 22:52:16', '', '2023-03-31 16:08:20', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (170, '屏显消息', 96, '网关产品', 1, 'admin', 'message', 2, 'string', '{"type": "string", "maxLength": 1024}', 0, 0, 1, 0, 1, 0, '0', NULL, '2023-02-25 22:52:35', '', '2023-09-03 11:03:55', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (171, '设备重启', 96, '网关产品', 1, 'admin', 'reset', 2, 'enum', '{"type": "enum", "showWay": "button", "enumList": [{"text": "重启", "value": "restart"}]}', 0, 0, 1, 0, 1, 0, '0', NULL, '2023-02-25 22:52:35', '', '2023-09-03 11:03:48', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (174, '室内亮度', 96, '网关产品', 1, 'admin', 'brightness', 1, 'integer', '{"max": 10000, "min": 0, "step": 1, "type": "integer", "unit": "cd/m2"}', 1, 1, 1, 1, 0, 0, '0', NULL, '2023-02-26 00:56:39', '', '2023-09-03 10:40:55', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (175, '设备重启', 41, '智能开关', 1, 'admin', 'reset', 2, 'enum', '{"type": "enum", "showWay": "button", "enumList": [{"text": "重启", "value": "restart"}]}', 0, 0, 1, 0, 0, 6, '0', NULL, '2023-02-26 02:20:40', '', '2023-04-01 23:40:05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (385, '射频遥控', 41, '★智能开关', 1, 'admin', 'irc', 2, 'enum', '{"type": "enum", "showWay": "button", "enumList": [{"text": "遥控学习", "value": "FFXX01"}, {"text": "遥控清码", "value": "FFXX02"}, {"text": "打开开关", "value": "FFXX03"}, {"text": "关闭开关", "value": "FFXX04"}, {"text": "暂停", "value": "FFXX05"}, {"text": "锁定", "value": "FFXX06"}]}', 0, 0, 1, 0, 0, 11, '0', 'admin', '2023-03-31 23:46:36', '', '2023-04-13 01:38:48', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (439, '上报状态', 41, '★智能开关产品', 1, 'admin', 'status', 2, 'enum', '{"type": "enum", "showWay": "button", "enumList": [{"text": "更新状态", "value": "update_status"}]}', 0, 0, 0, 0, 0, 12, '0', 'admin', '2023-04-13 01:39:31', '', '2023-04-13 01:39:42', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (493, '漏水值', 112, '★MODBUS协议产品', 1, 'admin', '0', 1, 'integer', '{"max": 100, "min": 1, "step": 1, "type": "integer", "unit": "度"}', 0, 0, 1, 0, 0, 0, '0', '', '2023-09-13 23:33:19', '', NULL, NULL, 1, NULL, NULL, 0, NULL, NULL, NULL, 1, '3', 'ushort'); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (494, '温度', 112, '★MODBUS协议产品', 1, 'admin', '0', 1, 'integer', '{"max": 100, "min": 1, "step": 1, "type": "integer", "unit": "°"}', 0, 0, 1, 0, 0, 0, '0', '', '2023-09-13 23:33:19', '', NULL, NULL, 2, NULL, NULL, 0, NULL, NULL, NULL, 1, '3', 'ushort'); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (495, '电量', 112, '★MODBUS协议产品', 1, 'admin', '1', 1, 'integer', '{"max": 100, "min": 1, "step": 1, "type": "integer", "unit": ""}', 0, 0, 1, 0, 0, 0, '0', '', '2023-09-13 23:33:19', '', NULL, NULL, 11, NULL, NULL, 1, NULL, NULL, NULL, 1, '3', 'ushort'); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (496, '光照强度', 55, '网关产品', 1, 'admin', 'light_level', 1, 'integer', '{"max": 89.2, "min": 2.5, "step": 0.1, "type": "integer", "unit": "L/g"}', 1, 1, 1, 1, 0, 0, '0', 'admin', '2025-03-19 16:32:06', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (497, '状态灯色', 55, '网关产品', 1, 'admin', 'color', 2, 'enum', '{"type": "enum", "showWay": "select", "enumList": [{"text": "红色", "value": "0"}, {"text": "绿色", "value": "1"}, {"text": "蓝色", "value": "2"}, {"text": "黄色", "value": "3"}]}', 0, 0, 1, 0, 0, 0, '0', 'admin', '2025-03-19 16:32:06', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (498, '子设备', 55, '网关产品', 1, 'admin', 'device', 2, 'array', '{"type": "array", "params": [{"id": "device_co2", "name": "二氧化碳", "order": 0, "isChart": 1, "datatype": {"max": 6000, "min": 100, "step": 1, "type": "integer", "unit": "ppm", "enumList": [{"text": "", "value": ""}], "arrayType": "int"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}, {"id": "device_temperature", "name": "空气温度-只读", "order": 4, "isChart": 0, "datatype": {"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃", "enumList": [{"text": "", "value": ""}], "arrayType": "int"}, "isMonitor": 0, "isReadonly": 1}, {"id": "device_gear", "name": "运行档位", "order": 6, "datatype": {"type": "enum", "showWay": "select", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}, "isMonitor": 0, "isReadonly": 0}, {"id": "device_switch", "name": "设备开关", "order": 5, "datatype": {"type": "bool", "enumList": [{"text": "", "value": ""}], "trueText": "打开", "arrayType": "int", "falseText": "关闭"}, "isMonitor": 0, "isReadonly": 0}, {"id": "device_report_monitor", "name": "上报监测数据", "order": 9, "datatype": {"max": 10, "min": 1, "step": 1, "type": "integer", "unit": "次数", "enumList": [{"text": "", "value": ""}], "arrayType": "int"}, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}], "arrayType": "object", "arrayCount": 5}', 0, 0, 0, 0, 0, 0, '0', 'admin', '2025-03-19 16:32:06', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (499, '功能分组', 55, '网关产品', 1, 'admin', 'group', 2, 'object', '{"type": "object", "params": [{"id": "group_light", "name": "光照", "order": 1, "isChart": 1, "datatype": {"max": 100, "min": 0, "step": 1, "type": "decimal", "unit": "mm"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}, {"id": "group_humidity", "name": "空气湿度", "order": 2, "isChart": 1, "datatype": {"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "%"}, "isMonitor": 1, "isReadonly": 1}, {"id": "group_temperature", "name": "空气温度-只读", "order": 3, "isChart": 0, "datatype": {"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃"}, "isMonitor": 0, "isReadonly": 1}, {"id": "group_report_monitor", "name": "上报监测数据", "order": 7, "datatype": {"max": 10, "min": 1, "step": 1, "type": "integer", "unit": "次数"}, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "group_gear", "name": "运行档位", "order": 5, "datatype": {"type": "enum", "showWay": "select", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "group_switch", "name": "设备开关", "order": 4, "datatype": {"type": "bool", "trueText": "打开", "falseText": "关闭"}, "isMonitor": 0, "isReadonly": 0}, {"id": "group_irc", "name": "红外遥控", "order": 6, "isChart": 0, "datatype": {"type": "enum", "showWay": "button", "enumList": [{"text": "遥控学习", "value": "FFXX01"}, {"text": "遥控清码", "value": "FFXX02"}, {"text": "打开开关", "value": "FFXX03"}, {"text": "关闭开关", "value": "FFXX04"}, {"text": "暂停", "value": "FFXX05"}, {"text": "锁定", "value": "FFXX06"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}]}', 0, 0, 0, 0, 0, 0, '0', 'admin', '2025-03-19 16:32:06', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (500, '射频遥控', 55, '网关产品', 1, 'admin', 'irc', 2, 'enum', '{"type": "enum", "showWay": "button", "enumList": [{"text": "遥控学习", "value": "FFXX01"}, {"text": "遥控清码", "value": "FFXX02"}, {"text": "打开开关", "value": "FFXX03"}, {"text": "关闭开关", "value": "FFXX04"}, {"text": "暂停", "value": "FFXX05"}, {"text": "锁定", "value": "FFXX06"}]}', 0, 0, 1, 0, 0, 0, '0', 'admin', '2025-03-19 16:32:06', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (501, '上报状态', 55, '网关产品', 1, 'admin', 'status', 2, 'enum', '{"type": "enum", "showWay": "button", "enumList": [{"text": "更新状态", "value": "update_status"}]}', 0, 0, 0, 0, 1, 0, '0', 'admin', '2025-03-19 16:32:06', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (502, '运行档位', 55, '网关产品', 1, 'admin', 'gear', 2, 'enum', '{"type": "enum", "showWay": "select", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}', 0, 0, 1, 0, 0, 0, '0', 'admin', '2025-03-19 16:32:21', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (503, '灯光色值', 55, '网关产品', 1, 'admin', 'light_color', 2, 'array', '{"type": "array", "arrayType": "integer", "arrayCount": "3"}', 0, 0, 1, 0, 0, 0, '0', 'admin', '2025-03-19 16:32:21', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (504, '屏显消息', 55, '网关产品', 1, 'admin', 'message', 2, 'string', '{"type": "string", "maxLength": 1024}', 0, 0, 1, 0, 0, 0, '0', 'admin', '2025-03-19 16:32:21', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (505, '环境温度过高', 55, '网关产品', 1, 'admin', 'height_temperature', 3, 'decimal', '{"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "℃"}', 0, 0, 1, 0, 0, 0, '0', 'admin', '2025-03-19 16:32:21', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (506, '设备发生异常', 55, '网关产品', 1, 'admin', 'exception', 3, 'string', '{"type": "string", "maxLength": 1024}', 0, 0, 1, 0, 0, 0, '0', 'admin', '2025-03-19 16:32:21', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (507, '空气温度', 55, '网关产品', 1, 'admin', 'temperature', 1, 'decimal', '{"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃"}', 1, 1, 1, 1, 0, 0, '0', 'admin', '2025-03-19 16:32:31', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (508, '空气湿度', 55, '网关产品', 1, 'admin', 'humidity', 1, 'decimal', '{"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "%"}', 1, 1, 1, 1, 0, 0, '0', 'admin', '2025-03-19 16:32:31', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model" ("model_id", "model_name", "product_id", "product_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "parse_type") VALUES (509, '设备开关', 55, '网关产品', 1, 'admin', 'switch', 2, 'bool', '{"type": "bool", "trueText": "打开", "falseText": "关闭"}', 0, 0, 1, 0, 0, 0, '0', 'admin', '2025-03-19 16:32:31', '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for iot_things_model_template -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_things_model_template"; CREATE TABLE "public"."iot_things_model_template" ( "template_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 344 INCREMENT BY 1), "template_name" varchar(64) NOT NULL, "tenant_id" int8 NOT NULL, "tenant_name" varchar(30) NOT NULL, "identifier" varchar(32) NOT NULL, "type" int2 NOT NULL, "datatype" varchar(64) NOT NULL, "specs" text, "is_sys" int2 NOT NULL, "is_chart" int2 NOT NULL, "is_monitor" int2 NOT NULL, "is_history" int2 NOT NULL, "is_readonly" int2, "is_share_perm" int2, "model_order" int4, "del_flag" char(1), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500), "temp_slave_id" varchar(20), "formula" varchar(255), "reverse_formula" varchar(255), "reg_addr" int4, "bit_option" varchar(255), "value_type" varchar(64), "is_params" int8, "quantity" int4, "code" varchar(255), "old_identifier" varchar(10), "old_temp_slave_id" varchar(10), "parse_type" varchar(20) ) ; COMMENT ON COLUMN "public"."iot_things_model_template"."template_id" IS '物模型ID'; COMMENT ON COLUMN "public"."iot_things_model_template"."template_name" IS '物模型名称'; COMMENT ON COLUMN "public"."iot_things_model_template"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "public"."iot_things_model_template"."tenant_name" IS '租户名称'; COMMENT ON COLUMN "public"."iot_things_model_template"."identifier" IS '标识符,产品下唯一'; COMMENT ON COLUMN "public"."iot_things_model_template"."type" IS '模型类别(1-属性,2-功能,3-事件)'; COMMENT ON COLUMN "public"."iot_things_model_template"."datatype" IS '数据类型(integer、decimal、string、bool、array、enum)'; COMMENT ON COLUMN "public"."iot_things_model_template"."specs" IS '数据定义'; COMMENT ON COLUMN "public"."iot_things_model_template"."is_sys" IS '是否系统通用(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_things_model_template"."is_chart" IS '是否图表展示(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_things_model_template"."is_monitor" IS '是否实时监测(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_things_model_template"."is_history" IS '是否历史存储 (0-否,1-是)'; COMMENT ON COLUMN "public"."iot_things_model_template"."is_readonly" IS '是否只读数据(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_things_model_template"."is_share_perm" IS '是否设备分享权限(0-否,1-是)'; COMMENT ON COLUMN "public"."iot_things_model_template"."model_order" IS '排序,值越大,排序越靠前'; COMMENT ON COLUMN "public"."iot_things_model_template"."del_flag" IS '删除标志(0代表存在 2代表删除)'; COMMENT ON COLUMN "public"."iot_things_model_template"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."iot_things_model_template"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."iot_things_model_template"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."iot_things_model_template"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."iot_things_model_template"."remark" IS '备注'; COMMENT ON COLUMN "public"."iot_things_model_template"."temp_slave_id" IS '从机id'; COMMENT ON COLUMN "public"."iot_things_model_template"."formula" IS '计算公式'; COMMENT ON COLUMN "public"."iot_things_model_template"."reverse_formula" IS '控制公式'; COMMENT ON COLUMN "public"."iot_things_model_template"."reg_addr" IS '寄存器地址值'; COMMENT ON COLUMN "public"."iot_things_model_template"."bit_option" IS '位定义选项'; COMMENT ON COLUMN "public"."iot_things_model_template"."value_type" IS '解析类型 1.数值 2.选项'; COMMENT ON COLUMN "public"."iot_things_model_template"."is_params" IS '是否是计算参数,默认否 0=否,1=是'; COMMENT ON COLUMN "public"."iot_things_model_template"."quantity" IS '读取寄存器数量'; COMMENT ON COLUMN "public"."iot_things_model_template"."code" IS 'modbus功能码'; COMMENT ON COLUMN "public"."iot_things_model_template"."old_identifier" IS '旧的标识符'; COMMENT ON COLUMN "public"."iot_things_model_template"."old_temp_slave_id" IS '旧的从机id'; COMMENT ON COLUMN "public"."iot_things_model_template"."parse_type" IS 'modbus解析类型'; COMMENT ON TABLE "public"."iot_things_model_template" IS '物模型模板'; -- ---------------------------- -- Records of iot_things_model_template -- ---------------------------- BEGIN; INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (1, '空气温度', 1, 'admin', 'temperature', 1, 'decimal', '{"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃"}', 1, 1, 1, 1, 1, 0, 4, '0', 'admin', '2022-03-09 17:41:49', 'admin', '2023-04-10 01:12:06', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (2, '空气湿度', 1, 'admin', 'humidity', 1, 'decimal', '{"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "%"}', 1, 1, 1, 1, 1, 0, 3, '0', 'admin', '2022-03-09 17:41:49', 'admin', '2023-04-10 01:12:02', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (3, '二氧化碳', 1, 'admin', 'co2', 1, 'integer', '{"max": 6000, "min": 100, "step": 1, "type": "integer", "unit": "ppm"}', 1, 1, 1, 1, 1, 0, 0, '0', 'admin', '2022-03-09 17:41:49', 'admin', '2023-04-10 01:11:57', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (4, '室内亮度', 1, 'admin', 'brightness', 1, 'integer', '{"max": 10000, "min": 0, "step": 1, "type": "integer", "unit": "cd/m2"}', 1, 1, 1, 1, 1, 0, 0, '0', 'admin', '2022-03-09 17:41:49', 'admin', '2023-04-10 01:11:53', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (5, '设备开关', 1, 'admin', 'switch', 2, 'bool', '{"type": "bool", "trueText": "打开", "falseText": "关闭"}', 1, 0, 0, 1, 0, 0, 5, '0', 'admin', '2022-03-09 17:41:49', 'admin', '2023-04-10 01:11:48', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (6, '运行档位', 1, 'admin', 'gear', 2, 'enum', '{"type": "enum", "showWay": "select", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}', 1, 0, 0, 1, 0, 0, 6, '0', 'admin', '2022-03-09 17:41:49', 'admin', '2023-04-10 01:11:43', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (7, '灯光色值', 1, 'admin', 'light_color', 2, 'array', '{"type": "array", "arrayType": "integer", "arrayCount": "3"}', 1, 0, 0, 1, 0, 0, 2, '0', 'admin', '2022-03-09 17:41:49', 'admin', '2023-04-10 01:11:38', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (8, '屏显消息', 1, 'admin', 'message', 2, 'string', '{"type": "string", "maxLength": 1024}', 1, 0, 0, 1, 0, 0, 1, '0', 'admin', '2022-03-09 17:41:49', 'admin', '2023-04-10 01:11:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (9, '上报监测数据', 1, 'admin', 'report_monitor', 2, 'integer', '{"max": 10, "min": 1, "step": 1, "type": "integer", "unit": "次数"}', 1, 0, 0, 0, 0, 0, 9, '0', 'admin', '2022-03-09 17:41:49', 'admin', '2023-04-10 01:11:25', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (10, '环境温度过高', 1, 'admin', 'height_temperature', 3, 'decimal', '{"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "℃"}', 1, 0, 0, 1, 0, 0, 8, '0', 'admin', '2022-03-09 17:41:49', 'admin', '2023-04-10 01:11:19', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (11, '设备发生异常', 1, 'admin', 'exception', 3, 'string', '{"type": "string", "maxLength": 1024}', 1, 0, 0, 1, 0, 0, 7, '0', 'admin', '2022-03-09 17:41:49', 'admin', '2023-04-10 01:11:16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (12, '光照', 1, 'admin', 'light', 1, 'decimal', '{"max": 100, "min": 0, "step": 1, "type": "decimal", "unit": "mm"}', 0, 1, 1, 1, 1, 0, 0, '0', 'wumei', '2022-05-07 09:41:17', 'admin', '2023-04-10 01:11:12', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (13, '压力', 1, 'admin', 'pressure', 1, 'decimal', '{"max": 200, "min": 0, "step": 0.1, "type": "decimal", "unit": "帕斯卡"}', 1, 1, 1, 1, 1, 0, 0, '0', 'admin', '2023-02-20 22:39:18', 'admin', '2023-04-10 01:11:05', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (14, '设备重启', 1, 'admin', 'reset', 2, 'enum', '{"type": "enum", "showWay": "button", "enumList": [{"text": "重启", "value": "restart"}]}', 1, 0, 0, 1, 0, 0, 0, '0', 'admin', '2023-02-20 23:15:25', 'admin', '2023-04-10 01:11:08', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (15, '电池电压', 1, 'admin', 'voltage', 1, 'decimal', '{"max": 5, "min": 0, "step": 0.001, "type": "decimal", "unit": "V"}', 1, 1, 1, 1, 1, 0, 0, '0', 'admin', '2023-02-20 23:17:43', 'admin', '2023-04-10 01:10:56', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (16, '饮水量', 1, 'admin', 'shuiliang', 1, 'integer', '{"max": 500, "min": 80, "step": 1, "type": "integer", "unit": "ML"}', 1, 1, 1, 1, 1, 0, 0, '0', 'admin', '2023-02-20 23:18:39', 'admin', '2023-04-10 01:10:52', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (17, '灯光', 1, 'admin', 'light', 1, 'integer', '{"max": 1000, "min": 0, "step": 1, "type": "integer", "unit": "Lux"}', 1, 1, 1, 1, 1, 0, 0, '0', 'admin', '2023-02-20 23:19:23', 'admin', '2023-04-10 01:10:49', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (18, '长度', 1, 'admin', 'length', 1, 'integer', '{"max": 2000, "min": 1, "step": 5, "type": "integer", "unit": "M"}', 1, 1, 1, 1, 1, 0, 0, '0', 'admin', '2023-02-20 23:20:03', 'admin', '2023-04-10 01:10:44', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (19, '心率', 1, 'admin', 'heart_rate', 1, 'integer', '{"max": 250, "min": 0, "step": 1, "type": "integer", "unit": "次数"}', 1, 1, 1, 1, 1, 0, 0, '0', 'admin', '2023-02-20 23:21:46', 'admin', '2023-04-10 01:12:40', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (20, '光照强度', 1, 'admin', 'light_level', 1, 'integer', '{"max": 89.2, "min": 2.5, "step": 0.1, "type": "integer", "unit": "L/g"}', 1, 1, 1, 1, 1, 0, 0, '0', 'admin', '2023-02-20 23:24:36', 'admin', '2023-04-10 01:10:35', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (21, '状态灯色', 1, 'admin', 'color', 2, 'enum', '{"type": "enum", "showWay": "select", "enumList": [{"text": "红色", "value": "0"}, {"text": "绿色", "value": "1"}, {"text": "蓝色", "value": "2"}, {"text": "黄色", "value": "3"}]}', 1, 0, 0, 1, 0, 0, 0, '0', 'admin', '2023-02-20 23:26:24', 'admin', '2023-04-10 01:10:32', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (22, '子设备', 1, 'admin', 'device', 2, 'array', '{"type": "array", "params": [{"id": "device_co2", "name": "二氧化碳", "order": 0, "isChart": 1, "datatype": {"max": 6000, "min": 100, "step": 1, "type": "integer", "unit": "ppm", "enumList": [{"text": "", "value": ""}], "arrayType": "int"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}, {"id": "device_temperature", "name": "空气温度-只读", "order": 4, "isChart": 0, "datatype": {"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃", "enumList": [{"text": "", "value": ""}], "arrayType": "int"}, "isMonitor": 0, "isReadonly": 1}, {"id": "device_gear", "name": "运行档位", "order": 6, "datatype": {"type": "enum", "showWay": "select", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}, "isMonitor": 0, "isReadonly": 0}, {"id": "device_switch", "name": "设备开关", "order": 5, "datatype": {"type": "bool", "enumList": [{"text": "", "value": ""}], "trueText": "打开", "arrayType": "int", "falseText": "关闭"}, "isMonitor": 0, "isReadonly": 0}, {"id": "device_report_monitor", "name": "上报监测数据", "order": 9, "datatype": {"max": 10, "min": 1, "step": 1, "type": "integer", "unit": "次数", "enumList": [{"text": "", "value": ""}], "arrayType": "int"}, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}], "arrayType": "object", "arrayCount": 5}', 1, 0, 0, 0, 0, 0, 10, '0', 'admin', '2023-02-24 01:10:43', 'admin', '2023-04-13 01:33:38', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (23, '功能分组', 1, 'admin', 'group', 2, 'object', '{"type": "object", "params": [{"id": "group_light", "name": "光照", "order": 1, "isChart": 1, "datatype": {"max": 100, "min": 0, "step": 1, "type": "decimal", "unit": "mm"}, "isHistory": 1, "isMonitor": 1, "isReadonly": 1}, {"id": "group_humidity", "name": "空气湿度", "order": 2, "isChart": 1, "datatype": {"max": 100, "min": 0, "step": 0.1, "type": "decimal", "unit": "%"}, "isMonitor": 1, "isReadonly": 1}, {"id": "group_temperature", "name": "空气温度-只读", "order": 3, "isChart": 0, "datatype": {"max": 120, "min": -20, "step": 0.1, "type": "decimal", "unit": "℃"}, "isMonitor": 0, "isReadonly": 1}, {"id": "group_report_monitor", "name": "上报监测数据", "order": 7, "datatype": {"max": 10, "min": 1, "step": 1, "type": "integer", "unit": "次数"}, "isHistory": 0, "isMonitor": 0, "isReadonly": 0}, {"id": "group_gear", "name": "运行档位", "order": 5, "datatype": {"type": "enum", "showWay": "select", "enumList": [{"text": "低速档位", "value": "0"}, {"text": "中速档位", "value": "1"}, {"text": "中高速档位", "value": "2"}, {"text": "高速档位", "value": "3"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}, {"id": "group_switch", "name": "设备开关", "order": 4, "datatype": {"type": "bool", "trueText": "打开", "falseText": "关闭"}, "isMonitor": 0, "isReadonly": 0}, {"id": "group_irc", "name": "红外遥控", "order": 6, "isChart": 0, "datatype": {"type": "enum", "showWay": "button", "enumList": [{"text": "遥控学习", "value": "FFXX01"}, {"text": "遥控清码", "value": "FFXX02"}, {"text": "打开开关", "value": "FFXX03"}, {"text": "关闭开关", "value": "FFXX04"}, {"text": "暂停", "value": "FFXX05"}, {"text": "锁定", "value": "FFXX06"}]}, "isHistory": 1, "isMonitor": 0, "isReadonly": 0}]}', 1, 0, 0, 0, 0, 0, 11, '0', 'admin', '2023-02-25 22:41:43', 'admin', '2023-08-30 15:29:34', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (201, '频率 ', 1, 'admin', 'frequency', 2, 'integer', '{"max": 65535, "min": 0, "step": 1, "type": "integer", "unit": "0.001Hz"}', 1, 0, 0, 1, 0, 0, 0, '0', '', '2023-02-28 16:08:06', 'admin', '2023-04-10 03:37:11', NULL, '3#3', '%s*0.001', '', 27, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (225, '校验位', 1, 'admin', 'check', 2, 'enum', '{"type": "enum", "showWay": "select", "enumList": [{"text": "N", "value": "0"}, {"text": "O", "value": "1"}, {"text": "E", "value": "2"}]}', 1, 0, 0, 1, 1, 0, 0, '0', '', '2023-02-28 16:08:08', 'admin', '2023-04-10 21:36:01', NULL, '3#3', '', '', 771, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (226, '波特率', 1, 'admin', 'baud', 2, 'enum', '{"type": "enum", "showWay": "select", "enumList": [{"text": "1200", "value": "0"}, {"text": "2400", "value": "1"}, {"text": "4800", "value": "2"}, {"text": "9600", "value": "3"}, {"text": "19200", "value": "4"}]}', 1, 0, 0, 1, 1, 0, 0, '0', '', '2023-02-28 16:08:09', 'admin', '2023-04-10 03:37:32', NULL, '3#3', '', '', 772, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (227, '电压', 1, 'admin', 'voltage', 1, 'integer', '{"max": 6, "min": 0.1, "step": 0.1, "type": "integer", "unit": "v"}', 1, 1, 1, 1, 1, 0, 0, '0', '', '2023-02-28 16:08:09', 'admin', '2023-04-10 03:37:16', NULL, '3#3', '', '', 773, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (236, '射频遥控', 1, 'admin', 'irc', 2, 'enum', '{"type": "enum", "showWay": "button", "enumList": [{"text": "遥控学习", "value": "FFXX01"}, {"text": "遥控清码", "value": "FFXX02"}, {"text": "打开开关", "value": "FFXX03"}, {"text": "关闭开关", "value": "FFXX04"}, {"text": "暂停", "value": "FFXX05"}, {"text": "锁定", "value": "FFXX06"}]}', 1, 0, 0, 1, 0, 0, 0, '0', 'admin', '2023-03-31 23:46:20', 'admin', '2023-04-10 01:09:46', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (250, '漏水值', 1, 'admin', '0', 1, 'integer', '{"max": 100, "min": 1, "step": 1, "type": "integer", "unit": "度"}', 1, 0, 0, 1, 0, 0, 0, '0', '', '2023-04-11 22:35:36', '', '2023-09-13 23:32:34', NULL, '1#1', NULL, NULL, 0, NULL, NULL, NULL, 1, '3', NULL, NULL, 'ushort'); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (251, '温度', 1, 'admin', '0', 1, 'integer', '{"max": 100, "min": 1, "step": 1, "type": "integer", "unit": "°"}', 1, 0, 0, 1, 0, 0, 0, '0', '', '2023-04-11 22:36:10', '', '2023-09-13 23:32:51', NULL, '1#2', NULL, NULL, 0, NULL, NULL, NULL, 1, '3', NULL, NULL, 'ushort'); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (252, '电量', 1, 'admin', '1', 1, 'integer', '{"max": 100, "min": 1, "step": 1, "type": "integer", "unit": ""}', 1, 0, 0, 1, 0, 0, 0, '0', '', '2023-04-11 22:36:27', '', '2023-09-13 23:33:11', NULL, '1#11', NULL, NULL, 1, NULL, NULL, NULL, 1, '3', NULL, NULL, 'ushort'); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (323, '上报状态', 1, 'admin', 'status', 2, 'enum', '{"type": "enum", "showWay": "button", "enumList": [{"text": "更新状态", "value": "update_status"}]}', 1, 0, 0, 0, 0, 1, 0, '0', 'admin', '2023-04-13 01:35:42', 'admin', '2023-09-03 10:50:16', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (324, 'X位移', 1, 'admin', 'x-shift', 1, 'decimal', '{"max": 100, "min": 0, "step": 1, "type": "decimal", "unit": "mm"}', 1, 1, 1, 1, 1, 0, 0, '0', '', '2023-08-26 19:36:58', '', NULL, NULL, '2#1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (325, 'Y位移', 1, 'admin', 'y-shift', 1, 'decimal', '{"max": 100, "min": 0, "step": 1, "type": "decimal", "unit": "mm"}', 1, 1, 1, 1, 1, 0, 0, '0', '', '2023-08-26 19:37:23', '', '2023-08-26 19:37:32', NULL, '2#1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (326, 'X位移', 1, 'admin', 'x-shift', 1, 'decimal', '{"max": 100, "min": 0, "step": 1, "type": "decimal", "unit": "mm"}', 1, 1, 1, 1, 1, 0, 0, '0', '', '2023-08-26 19:38:31', '', NULL, NULL, '2#2', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (327, 'Y位移', 1, 'admin', 'y-shift', 1, 'decimal', '{"max": 100, "min": 0, "step": 1, "type": "decimal", "unit": "mm"}', 1, 1, 1, 1, 1, 0, 0, '0', '', '2023-08-26 19:38:51', '', NULL, NULL, '2#2', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (328, '计件数量', 1, 'admin', '0', 1, 'integer', '{"max": 10000, "min": 0, "step": 1, "type": "integer", "unit": ""}', 1, 0, 0, 0, 1, 0, 0, '0', '', '2023-08-28 15:05:25', '', NULL, NULL, '3#1', NULL, NULL, 0, NULL, NULL, NULL, 1, '3', NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (329, '参数1', 1, 'admin', '0', 1, 'integer', '{"max": 100, "min": 0, "step": 1, "type": "integer", "unit": ""}', 1, 0, 0, 0, 1, 0, 0, '0', '', '2023-08-28 15:06:55', '', NULL, NULL, '3#2', NULL, NULL, 0, NULL, NULL, NULL, 1, '3', NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (330, '图片', 1, 'admin', 'image', 1, 'string', '{"type": "string", "maxLength": 10240}', 1, 0, 0, 1, 1, 0, 0, '0', '', '2023-08-28 23:19:30', '', NULL, NULL, '2#1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (331, '回路状态', 10, 'jamon', 'loop_status', 1, 'array', '{"type": "array", "arrayType": "integer"}', 0, 0, 0, 0, 0, 0, 0, '0', '', '2023-08-29 18:21:38', '', NULL, NULL, '4#1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (332, '回路状态', 10, 'jamon', 'loop_status', 1, 'array', '{"type": "array", "arrayType": "integer"}', 0, 0, 0, 0, 0, 0, 0, '0', '', '2023-08-29 18:23:08', '', NULL, NULL, '4#2', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (335, '湿度', 1, 'admin', '0', 1, 'integer', '{"max": 100, "min": 0, "step": 1, "type": "integer", "unit": ""}', 1, 0, 0, 1, 1, 0, 0, '0', '', '2023-08-30 14:05:38', '', '2023-08-30 14:58:28', NULL, '6#1', '%s/10', NULL, 0, NULL, NULL, NULL, 1, '3', NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (336, '温度', 1, 'admin', '1', 1, 'integer', '{"max": 100, "min": 0, "step": 1, "type": "integer", "unit": "°C"}', 1, 0, 0, 1, 1, 0, 0, '0', '', '2023-08-30 14:06:05', '', '2023-08-30 14:58:38', NULL, '6#1', '%s/10', NULL, 1, NULL, NULL, NULL, 1, '3', NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (341, '视频', 1, 'admin', 'video', 1, 'integer', '{"max": 100, "min": 0, "step": 1, "type": "integer", "unit": ""}', 1, 0, 0, 1, 1, 0, 0, '0', '', '2023-08-30 23:08:51', '', '2023-08-30 23:25:15', NULL, '2#1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (342, '图片', 1, 'admin', 'image', 1, 'string', '{"type": "string", "maxLength": 1024}', 1, 0, 0, 1, 1, 0, 0, '0', '', '2023-08-30 23:21:48', '', '2023-08-30 23:25:22', NULL, '2#2', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); INSERT INTO "public"."iot_things_model_template" ("template_id", "template_name", "tenant_id", "tenant_name", "identifier", "type", "datatype", "specs", "is_sys", "is_chart", "is_monitor", "is_history", "is_readonly", "is_share_perm", "model_order", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "temp_slave_id", "formula", "reverse_formula", "reg_addr", "bit_option", "value_type", "is_params", "quantity", "code", "old_identifier", "old_temp_slave_id", "parse_type") VALUES (343, '状态', 1, 'admin', 'status', 1, 'integer', '{"max": 100, "min": 0, "step": 1, "type": "integer", "unit": ""}', 1, 0, 0, 1, 1, 0, 0, '0', '', '2023-08-30 23:28:00', '', '2023-08-30 23:28:17', NULL, '2#1', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for iot_things_model_template_translate -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_things_model_template_translate"; CREATE TABLE "public"."iot_things_model_template_translate" ( "id" int8 NOT NULL, "zh_cn" varchar(200), "en_us" varchar(200) ) ; COMMENT ON COLUMN "public"."iot_things_model_template_translate"."id" IS 'ID'; COMMENT ON COLUMN "public"."iot_things_model_template_translate"."zh_cn" IS 'zh_CN'; COMMENT ON COLUMN "public"."iot_things_model_template_translate"."en_us" IS 'en_US'; COMMENT ON TABLE "public"."iot_things_model_template_translate" IS '物模型模板翻译表'; -- ---------------------------- -- Records of iot_things_model_template_translate -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for iot_things_model_translate -- ---------------------------- DROP TABLE IF EXISTS "public"."iot_things_model_translate"; CREATE TABLE "public"."iot_things_model_translate" ( "id" int8 NOT NULL, "zh_cn" varchar(200), "en_us" varchar(200), "product_id" int8 ) ; COMMENT ON COLUMN "public"."iot_things_model_translate"."id" IS 'ID'; COMMENT ON COLUMN "public"."iot_things_model_translate"."zh_cn" IS 'zh_CN'; COMMENT ON COLUMN "public"."iot_things_model_translate"."en_us" IS 'en_US'; COMMENT ON COLUMN "public"."iot_things_model_translate"."product_id" IS '产品ID'; COMMENT ON TABLE "public"."iot_things_model_translate" IS '物模型翻译表'; -- ---------------------------- -- Records of iot_things_model_translate -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for media_server -- ---------------------------- DROP TABLE IF EXISTS "public"."media_server"; CREATE TABLE "public"."media_server" ( "id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 8 INCREMENT BY 1), "server_id" varchar(30) NOT NULL, "tenant_id" int8 NOT NULL, "tenant_name" varchar(30) NOT NULL, "enabled" int2, "protocol" varchar(10) NOT NULL, "ip" varchar(255) NOT NULL, "domain" varchar(128) NOT NULL, "hookurl" varchar(255) NOT NULL, "secret" varchar(255) NOT NULL, "port_http" int4 NOT NULL, "port_https" int4 NOT NULL, "port_rtmp" int4 NOT NULL, "port_rtsp" int4 NOT NULL, "rtp_proxy_port" int4 NOT NULL, "rtp_enable" int2 NOT NULL, "rtp_port_range" varchar(255) NOT NULL, "record_port" int4 NOT NULL, "auto_config" int2 NOT NULL, "status" int2 NOT NULL, "del_flag" char(1) NOT NULL, "create_by" varchar(64) NOT NULL, "create_time" timestamp NOT NULL, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500), "port_ws" int4 ) ; COMMENT ON COLUMN "public"."media_server"."id" IS '流媒体配置ID'; COMMENT ON COLUMN "public"."media_server"."server_id" IS '服务器标识'; COMMENT ON COLUMN "public"."media_server"."tenant_id" IS '租户ID'; COMMENT ON COLUMN "public"."media_server"."tenant_name" IS '租户名称'; COMMENT ON COLUMN "public"."media_server"."enabled" IS '使能开关'; COMMENT ON COLUMN "public"."media_server"."protocol" IS '默认播放协议'; COMMENT ON COLUMN "public"."media_server"."ip" IS '服务器ip'; COMMENT ON COLUMN "public"."media_server"."domain" IS '服务器域名'; COMMENT ON COLUMN "public"."media_server"."hookurl" IS '回调服务器地址'; COMMENT ON COLUMN "public"."media_server"."secret" IS '流媒体密钥'; COMMENT ON COLUMN "public"."media_server"."port_http" IS 'http端口'; COMMENT ON COLUMN "public"."media_server"."port_https" IS 'https端口'; COMMENT ON COLUMN "public"."media_server"."port_rtmp" IS 'rtmp端口'; COMMENT ON COLUMN "public"."media_server"."port_rtsp" IS 'rtsp端口'; COMMENT ON COLUMN "public"."media_server"."rtp_proxy_port" IS 'RTP收流端口'; COMMENT ON COLUMN "public"."media_server"."rtp_enable" IS '是否使用多端口模式'; COMMENT ON COLUMN "public"."media_server"."rtp_port_range" IS 'rtp端口范围'; COMMENT ON COLUMN "public"."media_server"."record_port" IS '录像服务端口'; COMMENT ON COLUMN "public"."media_server"."auto_config" IS '是否自动同步配置ZLM'; COMMENT ON COLUMN "public"."media_server"."status" IS '状态'; COMMENT ON COLUMN "public"."media_server"."del_flag" IS '删除标志(0代表存在 2代表删除)'; COMMENT ON COLUMN "public"."media_server"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."media_server"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."media_server"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."media_server"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."media_server"."remark" IS '备注'; COMMENT ON COLUMN "public"."media_server"."port_ws" IS 'ws端口'; COMMENT ON TABLE "public"."media_server" IS '流媒体服务器配置'; -- ---------------------------- -- Records of media_server -- ---------------------------- BEGIN; INSERT INTO "public"."media_server" ("id", "server_id", "tenant_id", "tenant_name", "enabled", "protocol", "ip", "domain", "hookurl", "secret", "port_http", "port_https", "port_rtmp", "port_rtsp", "rtp_proxy_port", "rtp_enable", "rtp_port_range", "record_port", "auto_config", "status", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark", "port_ws") VALUES (7, 'fastbee', 1, 'admin', 1, 'http', '192.168.2.120', 'fastbee.com2', '192.168.2.15:8080', '035c73f7-bb6b-4889-a715-d9eb2d192xxx', 8082, 8443, 1935, 554, 0, 1, '30000,30103', 18081, 1, 0, '0', '', '2023-09-26 21:11:43', '', '2023-10-26 21:51:25', NULL, NULL); COMMIT; -- ---------------------------- -- Table structure for news -- ---------------------------- DROP TABLE IF EXISTS "public"."news"; CREATE TABLE "public"."news" ( "news_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 9 INCREMENT BY 1), "title" varchar(64) NOT NULL, "content" text NOT NULL, "img_url" varchar(128) NOT NULL, "is_top" int2 NOT NULL, "is_banner" int2 NOT NULL, "category_id" int8 NOT NULL, "category_name" varchar(32) NOT NULL, "status" int2 NOT NULL, "author" varchar(50) NOT NULL, "del_flag" char(1), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500) ) ; COMMENT ON COLUMN "public"."news"."news_id" IS '新闻ID'; COMMENT ON COLUMN "public"."news"."title" IS '标题'; COMMENT ON COLUMN "public"."news"."content" IS '内容'; COMMENT ON COLUMN "public"."news"."img_url" IS '封面'; COMMENT ON COLUMN "public"."news"."is_top" IS '是否置顶(0-置顶 1-置顶)'; COMMENT ON COLUMN "public"."news"."is_banner" IS '是否banner(0-是banner 1-不是banner)'; COMMENT ON COLUMN "public"."news"."category_id" IS '分类ID'; COMMENT ON COLUMN "public"."news"."category_name" IS '分类名称'; COMMENT ON COLUMN "public"."news"."status" IS '新闻状态(0-未发布,1-已发布)'; COMMENT ON COLUMN "public"."news"."author" IS '作者'; COMMENT ON COLUMN "public"."news"."del_flag" IS '删除标志(0代表存在 2代表删除)'; COMMENT ON COLUMN "public"."news"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."news"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."news"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."news"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."news"."remark" IS '备注'; COMMENT ON TABLE "public"."news" IS '新闻资讯'; -- ---------------------------- -- Records of news -- ---------------------------- BEGIN; INSERT INTO "public"."news" ("news_id", "title", "content", "img_url", "is_top", "is_banner", "category_id", "category_name", "status", "author", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (1, '广告图一', '
请后台添加内容
', '/iot/tool/download?fileName=/profile/iot/118/2022-0424-215805.png', 0, 1, 2, '相关产品', 1, '物美智能', '0', '', '2022-05-12 12:13:40', '', '2022-05-12 12:13:40', '物美智能'); INSERT INTO "public"."news" ("news_id", "title", "content", "img_url", "is_top", "is_banner", "category_id", "category_name", "status", "author", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (2, '广告图二', '请后台添加内容
', '/iot/tool/download?fileName=/profile/iot/118/2022-0424-215852.png', 0, 1, 1, '新闻资讯', 1, '物美智能', '0', '', '2022-05-12 12:13:42', '', '2022-05-12 12:13:42', '物美智能'); INSERT INTO "public"."news" ("news_id", "title", "content", "img_url", "is_top", "is_banner", "category_id", "category_name", "status", "author", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (3, '广告图三', '后台添加内容
', '/iot/tool/download?fileName=/profile/iot/118/2022-0424-224553.png', 0, 1, 2, '相关产品', 1, '物美智能', '0', '', '2022-05-12 12:13:44', '', '2022-05-12 12:13:44', '物美智能'); INSERT INTO "public"."news" ("news_id", "title", "content", "img_url", "is_top", "is_banner", "category_id", "category_name", "status", "author", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (4, '物美智能-快速搭建物联网和智能家居平台', '物美智能 wumei-smart 是一个简单易用的生活物联网平台。可用于搭建物联网平台以及二次开发和学习。设备接入使用EMQX消息服务器,加密认证;后端采用Spring boot;前端采用Vue;移动端采用Uniapp;数据库采用Mysql和Redis;设备端支持ESP32、ESP8266、树莓派等;

系统功能介绍
1.权限管理: 用户管理、部门管理、岗位管理、菜单管理、角色管理、字典和参数管理等
2.系统监控: 操作日志、登录日志、系统日志、在线用户、服务监控、连接池监控、缓存监控等
3.产品管理: 产品、产品物模型、产品分类、产品固件、授权码等
4.设备管理: 控制、分组、定时、日志、统计、定位、OTA升级、影子模式、实时监测、加密认证等
5.EMQ管理: Mqtt客户端、监听器、消息主题、消息订阅、插件管理、规则引擎、资源
6.硬件 SDK: 支持WIFI和MQTT连接、物模型响应、实时监测、定时上报监测数据、AES加密、NTP时间等
7.物模型管理: 属性(设备状态和监测数据),功能(执行特定任务),事件(设备主动上报给云端)
8.其他(开发中):第三方登录,设备分享、设备告警、场景联动(进度50%),智能音箱、多租户、APP界面自定义(进度40%),时序数据库、分布式集群部署、Granfa监控(进度30%),视频流处理、桌面端模拟器/监控、安卓端模拟器/监控(进度20%)
硬件设备接入流程
1.设备认证:加密认证、简单认证和emqx支持的多种认证方式。
2.设备交互:发布和订阅物模型、设备信息、设备升级和时钟同步等mqtt主题
', '/iot/tool/download?fileName=/profile/iot/1/2022-0508-133031.png', 1, 0, 2, '相关产品', 1, '物美智能', '0', '', '2022-05-12 12:13:46', '', '2022-05-12 12:13:46', '物美智能'); INSERT INTO "public"."news" ("news_id", "title", "content", "img_url", "is_top", "is_banner", "category_id", "category_name", "status", "author", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (5, '2022年中国物联网全景图产业链上中下游市场及企业剖析', '后台添加内容
', '/iot/tool/download?fileName=/profile/iot/118/2022-0424-224151.png', 1, 0, 1, '新闻资讯', 1, '物美智能', '0', '', '2022-05-12 12:13:48', '', '2022-05-12 12:13:48', '物美智能'); INSERT INTO "public"."news" ("news_id", "title", "content", "img_url", "is_top", "is_banner", "category_id", "category_name", "status", "author", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (6, 'Arm打造物联网全面解决方案 携手合作伙伴共探智能未来', '后台添加内容
', '/iot/tool/download?fileName=/profile/iot/118/2022-0424-224352.png', 1, 0, 1, '新闻资讯', 1, '物美智能', '0', '', '2022-05-12 12:13:50', '', '2022-05-12 12:13:50', '物美智能'); INSERT INTO "public"."news" ("news_id", "title", "content", "img_url", "is_top", "is_banner", "category_id", "category_name", "status", "author", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (7, '使用ESP32开发板,快速学习物联网开发', '请后台添加内容
', '/iot/tool/download?fileName=/profile/iot/118/2022-0428-130824.jpg', 1, 0, 2, '相关产品', 1, '物美智能', '0', '', '2022-05-12 12:13:53', '', '2022-05-12 12:13:53', '物美智能'); INSERT INTO "public"."news" ("news_id", "title", "content", "img_url", "is_top", "is_banner", "category_id", "category_name", "status", "author", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (8, '物联网赛道观察之无源物联网', '无源物联网,即终端无外接能量源,采用获取环境能量的方式进行供能的物联网技术。在当前物联网技术发展条件下,终端覆盖率是一个亟待解决的问题,而无源物联网凭借其极低的部署和维护成本、灵活多变的应用场景成为解决更广范围内终端供能需求问题、实现“千亿级互联”愿景的关键。
无源物联网技术的发展最终有赖于环境能量采集、低功耗计算与反向散射等低功耗通讯技术的进步。目前无源物联网应用较为成熟的路线主要包括射频识别技术(RFID)与近场通信技术(NFC)两类,覆盖仓储物流、智能制造、智慧零售、资产管理、物业服务等多元应用场景。未来,随着物联网行业的碎片化整合以及以Bluetooth、5G、LoRa等为媒介进行能量采集与信息传输的技术路线的逐渐成熟,当前困扰行业的诸多问题将会逐步得到解决,随之而来的是更包罗多样的无源终端需求与极具潜力的应用场景。
', '/iot/tool/download?fileName=/profile/iot/118/2022-0424-215643.png', 1, 0, 1, '新闻资讯', 1, '物美智能', '0', '', '2022-05-12 12:13:55', '', '2022-05-12 12:13:55', '物美智能'); COMMIT; -- ---------------------------- -- Table structure for news_category -- ---------------------------- DROP TABLE IF EXISTS "public"."news_category"; CREATE TABLE "public"."news_category" ( "category_id" int8 NOT NULL GENERATED BY DEFAULT AS IDENTITY (START WITH 3 INCREMENT BY 1), "category_name" varchar(64) NOT NULL, "order_num" int4 NOT NULL, "del_flag" char(1), "create_by" varchar(64), "create_time" timestamp, "update_by" varchar(64), "update_time" timestamp, "remark" varchar(500) ) ; COMMENT ON COLUMN "public"."news_category"."category_id" IS '分类ID'; COMMENT ON COLUMN "public"."news_category"."category_name" IS '分类名称'; COMMENT ON COLUMN "public"."news_category"."order_num" IS '显示顺序'; COMMENT ON COLUMN "public"."news_category"."del_flag" IS '删除标志(0代表存在 2代表删除)'; COMMENT ON COLUMN "public"."news_category"."create_by" IS '创建者'; COMMENT ON COLUMN "public"."news_category"."create_time" IS '创建时间'; COMMENT ON COLUMN "public"."news_category"."update_by" IS '更新者'; COMMENT ON COLUMN "public"."news_category"."update_time" IS '更新时间'; COMMENT ON COLUMN "public"."news_category"."remark" IS '备注'; COMMENT ON TABLE "public"."news_category" IS '新闻分类'; -- ---------------------------- -- Records of news_category -- ---------------------------- BEGIN; INSERT INTO "public"."news_category" ("category_id", "category_name", "order_num", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (1, '新闻资讯', 3, '0', '', '2022-04-11 20:53:55', '', '2022-04-13 15:30:22', '新闻资讯信息'); INSERT INTO "public"."news_category" ("category_id", "category_name", "order_num", "del_flag", "create_by", "create_time", "update_by", "update_time", "remark") VALUES (2, '相关产品', 2, '0', '', '2022-04-11 20:54:16', '', '2022-04-13 15:30:15', '相关产品推荐'); COMMIT; -- ---------------------------- -- Table structure for oauth_access_token -- ---------------------------- DROP TABLE IF EXISTS "public"."oauth_access_token"; CREATE TABLE "public"."oauth_access_token" ( "token_id" varchar(255), "token" bytea, "authentication_id" varchar(255), "user_name" varchar(255), "client_id" varchar(255), "authentication" bytea, "refresh_token" varchar(255) ) ; -- ---------------------------- -- Records of oauth_access_token -- ---------------------------- BEGIN; INSERT INTO "public"."oauth_access_token" ("token_id", "token", "authentication_id", "user_name", "client_id", "authentication", "refresh_token") VALUES ('d406d946aac7c24cd01a2df1105ec898', E'\\254\\355\\000\\005sr\\000Corg.springframework.security.oauth2.common.DefaultOAuth2AccessToken\\014\\262\\2366\\033$\\372\\316\\002\\000\\006L\\000\\025additionalInformationt\\000\\017Ljava/util/Map;L\\000\\012expirationt\\000\\020Ljava/util/Date;L\\000\\014refreshTokent\\000?Lorg/springframework/security/oauth2/common/OAuth2RefreshToken;L\\000\\005scopet\\000\\017Ljava/util/Set;L\\000\\011tokenTypet\\000\\022Ljava/lang/String;L\\000\\005valueq\\000~\\000\\005xpsr\\000\\036java.util.Collections$EmptyMapY6\\024\\205Z\\334\\347\\320\\002\\000\\000xpsr\\000\\016java.util.Datehj\\201\\001KYt\\031\\003\\000\\000xpw\\010\\000\\000\\001\\212\\247`\\321cxsr\\000Lorg.springframework.security.oauth2.common.DefaultExpiringOAuth2RefreshToken/\\337Gc\\235\\320\\311\\267\\002\\000\\001L\\000\\012expirationq\\000~\\000\\002xr\\000Dorg.springframework.security.oauth2.common.DefaultOAuth2RefreshTokens\\341\\016\\012cT\\324^\\002\\000\\001L\\000\\005valueq\\000~\\000\\005xpt\\000\\033VE-7wD8mpAJ4Izf-I4_EdP1o1bosq\\000~\\000\\011w\\010\\000\\000\\001\\212\\247`\\321-xsr\\000%java.util.Collections$UnmodifiableSet\\200\\035\\222\\321\\217\\233\\200U\\002\\000\\000xr\\000,java.util.Collections$UnmodifiableCollection\\031B\\000\\200\\313^\\367\\036\\002\\000\\001L\\000\\001ct\\000\\026Ljava/util/Collection;xpsr\\000\\027java.util.LinkedHashSet\\330l\\327Z\\225\\335*\\036\\002\\000\\000xr\\000\\021java.util.HashSet\\272D\\205\\225\\226\\270\\2674\\003\\000\\000xpw\\014\\000\\000\\000\\004?@\\000\\000\\000\\000\\000\\002t\\000\\004readt\\000\\005writext\\000\\006bearert\\000\\033p8Z_G8JsI2z3xeugD0djIK0Z9k8', '2c27d3f4516a653753e8337094cf35e1', 'admin', 'admin-dueros', E'\\254\\355\\000\\005sr\\000Aorg.springframework.security.oauth2.provider.OAuth2Authentication\\275@\\013\\002\\026bR\\023\\002\\000\\002L\\000\\015storedRequestt\\000\\350\\277\\231\\346\\230\\257\\346\\265\\213\\350\\257\\225\\345\\206\\205\\345\\256\\271\\357\\274\\214\\346\\226\\260\\347\\211\\210\\346\\234\\254\\345\\212\\237\\350\\203\\275\\357\\274\\232
\\350\\277\\231\\346\\230\\257\\346\\265\\213\\350\\257\\225\\345\\206\\205\\345\\256\\271\\357\\274\\214\\347\\233\\256\\345\\211\\215sdk\\346\\224\\257\\346\\214\\201\\347\\232\\204\\347\\211\\210\\346\\234\\254: