-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy pathsys_Document.sql
More file actions
61 lines (54 loc) · 725 KB
/
sys_Document.sql
File metadata and controls
61 lines (54 loc) · 725 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
-- MySQL dump 10.13 Distrib 5.7.17, for macos10.12 (x86_64)
--
-- Host: apijson.cn Database: sys
-- ------------------------------------------------------
-- Server version 5.7.34-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `Document`
--
DROP TABLE IF EXISTS `Document`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `Document` (
`id` bigint(15) NOT NULL AUTO_INCREMENT COMMENT '唯一标识',
`userId` bigint(15) NOT NULL COMMENT '管理员用户id。\n需要先建Admin表,新增登录等相关接口。',
`testAccountId` bigint(15) NOT NULL DEFAULT '0' COMMENT '测试账号id。0-不限',
`version` tinyint(4) NOT NULL DEFAULT '3' COMMENT '接口版本号\n<=0 - 不限制版本,任意版本都可用这个接口;\n>0 - 在这个版本添加的接口。\n\n可在给新版文档前调高默认值,新增的测试用例就不用手动设置版本号了。',
`name` varchar(100) NOT NULL COMMENT '接口名称',
`type` varchar(5) NOT NULL DEFAULT 'JSON' COMMENT 'PARAM - GET url parameters,\nFORM - POST application/www-x-form-url-encoded,\nJSON - POST application/json',
`url` varchar(250) NOT NULL COMMENT '请求地址',
`request` text NOT NULL COMMENT '请求\n用json格式会导致强制排序,而请求中引用赋值只能引用上面的字段,必须有序。',
`standard` text,
`header` text COMMENT '请求头 Request Header:\nkey: value //注释',
`date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
`detail` text COMMENT '详细的说明,可以是普通文本或 Markdown 格式文本',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1649087867384 DEFAULT CHARSET=utf8 COMMENT='测试用例文档\n后端开发者在测试好后,把选好的测试用例上传,这样就能共享给前端/客户端开发者';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `Document`
--
LOCK TABLES `Document` WRITE;
/*!40000 ALTER TABLE `Document` DISABLE KEYS */;
INSERT INTO `Document` VALUES (1,82001,82001,1,'登录','JSON','/login','{\n \"type\": 0,\n \"phone\": \"13000082001\",\n \"password\": \"123456\",\n \"version\": 1,\n \"remember\": false\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"type\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"comment\": \"请求方式 0-密码 1-验证码\",\n \"trend\": {\n \"top\": 2\n }\n },\n \"phone\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ],\n \"comment\": \"手机号\"\n },\n \"password\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ],\n \"comment\": \"登录密码或验证码\"\n },\n \"version\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"comment\": \"版本号\",\n \"trend\": {\n \"top\": 2\n }\n },\n \"remember\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n false\n ],\n \"lengthLevel\": 1,\n \"lengths\": [],\n \"comment\": \"记住登录\"\n }\n }\n ]\n}','','2017-11-26 07:35:19',NULL),(2,82001,0,1,'注册(先获取验证码type:1)','JSON','/register','{\n \"Privacy\": {\n \"phone\": \"13000083333\",\n \"_password\": \"123456\"\n },\n \"User\": {\n \"name\": \"APIJSONUser\"\n },\n \"verify\": \"6840\" //验证码,需要先调用接口 /post/verify\n}',NULL,NULL,'2017-11-26 07:35:19',NULL),(3,82001,0,1,'退出登录','JSON','/logout','{}',NULL,NULL,'2017-11-26 09:56:10',NULL),(1511689914599,82001,0,1,'获取用户隐私信息','JSON','/gets','{\"tag\": \"Privacy\", \"Privacy\": {\"id\": 82001}}',NULL,NULL,'2017-11-26 09:51:54',NULL),(1511796155276,82001,0,1,'获取验证码','JSON','/post/verify','{\n \"type\": 0,\n \"phone\": \"13000082001\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"type\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": [],\n \"comment\": \"类型: 0-登录 1-注册 2-修改登录密码 3-修改支付密码\"\n },\n \"phone\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ],\n \"comment\": \"手机号\"\n }\n }\n ]\n}','','2017-11-27 15:23:28',NULL),(1511796208671,82001,0,1,'检查验证码是否存在','JSON','/heads/verify','{\n \"type\": 0, //类型: 0-登录 1-注册 2-修改登录密码 3-修改支付密码\n \"phone\": \"13000082001\" //手机号\n}',NULL,NULL,'2017-11-27 15:23:28',NULL),(1511796589078,82001,82001,1,'修改登录密码(先获取验证码type:2)-手机号+验证码','JSON','/put/password','{\n \"verify\": \"10322\", //验证码,需要先调用接口 /post/verify\n \"Privacy\": {\n \"phone\": \"13000082001\",\n \"_password\": \"666666\"\n }\n}',NULL,NULL,'2017-11-27 15:23:28',NULL),(1511796882184,82001,82001,1,'充值(需要支付密码)/提现','JSON','/put/balance','{\"tag\": \"Privacy\", \"Privacy\": {\"id\": 82001, \"balance+\": 100.15, \"_payPassword\": \"123456\"}}',NULL,NULL,'2017-11-27 15:34:42',NULL),(1511969417633,82001,82001,1,'点赞/取消点赞','JSON','/put','{\n \"Moment\": {\n \"id\": 15,\n \"praiseUserIdList-\": [\n 82001\n ]\n },\n \"tag\": \"Moment\"\n}',NULL,NULL,'2017-11-29 15:30:17',NULL),(1511969630372,82001,82001,1,'新增评论','JSON','/post','{ \"Comment\": { \"momentId\": 15, \"content\": \"测试新增评论\" }, \"tag\": \"Comment\" }',NULL,NULL,'2017-11-29 15:33:50',NULL),(1511970009072,82001,82001,1,'新增动态','JSON','/post','{ \"Moment\": { \"content\": \"测试新增动态\", \"pictureList\": [\"http://static.oschina.net/uploads/user/48/96331_50.jpg\" ] }, \"tag\": \"Moment\" }',NULL,NULL,'2017-11-29 15:40:09',NULL),(1511970224333,82001,82001,1,'修改用户信息','JSON','/put','{\r \"User\": {\r \"id\": 82001,\r \"name\": \"测试账号\"\r },\r \"tag\": \"User\"\r }',NULL,NULL,'2017-11-29 15:43:44',NULL),(1521901518765,88888,0,2,'功能符(对象关键词): ⑤从pictureList获取第0张图片:','JSON','/get','{ \"User\": { \"id\": 38710, \"@position\": 0, \"firstPicture()\": \"getFromArray(pictureList,@position)\" } }',NULL,NULL,'2018-03-24 14:25:18',NULL),(1521901610784,88888,0,2,'功能符(对象关键词): ④查询 按userId分组、id最大值>=100 的Moment数组','JSON','/get','{\n \"[]\": {\n \"count\": 10,\n \"Moment\": {\n \"@column\": \"userId;max(id):maxId\",\n \"@group\": \"userId\",\n \"@having\": \"(maxId)>=100\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 10\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"Moment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 20\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"@having\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 12\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2018-03-24 14:26:50',NULL),(1521901682846,88888,0,2,'功能符(对象关键词): ③查询按userId分组的Moment数组','JSON','/get','{\"[]\":{\"count\":10,\"Moment\":{\"@column\":\"userId,id\",\"@group\":\"userId,id\"}}}',NULL,NULL,'2018-03-24 14:28:02',NULL),(1521901746809,88888,0,2,'功能符(对象关键词): ②查询按 name降序、id默认顺序 排序的User数组','JSON','/get','{\"[]\":{\"count\":10,\"User\":{\"@column\":\"name,id\",\"@order\":\"name-,id\"}}}',NULL,NULL,'2018-03-24 14:29:06',NULL),(1521901787203,88888,0,2,'功能符(对象关键词): ①只查询id,sex,name这几列并且请求结果也按照这个顺序','JSON','/get','{\"User\":{\"@column\":\"id,sex,name\",\"id\":38710}}',NULL,NULL,'2018-03-24 14:29:47',NULL),(1521902033332,88888,0,2,'功能符(数组关键词): ③查询User数组和对应的User总数','JSON','/get','{\"[]\":{\"query\":2,\"count\":5,\"User\":{}},\"total@\":\"/[]/total\"}',NULL,NULL,'2018-03-24 14:33:53',NULL),(1521902069871,88888,0,2,'功能符(数组关键词): ②查询第3页的User数组,每页5个','JSON','/get','{\"[]\":{\"count\":5,\"page\":3,\"User\":{}}}',NULL,NULL,'2018-03-24 14:34:29',NULL),(1521902110680,88888,0,2,'功能符(数组关键词): ①查询User数组,最多5个','JSON','/get','{\"[]\":{\"count\":5,\"User\":{}}}',NULL,NULL,'2018-03-24 14:35:10',NULL),(1521903761689,88888,0,2,'功能符(逻辑运算): ③ ! 非运算','JSON','/head','{\"User\":{\"id!{}\":[82001,38710]}}',NULL,NULL,'2018-03-24 15:02:41',NULL),(1521903828410,88888,0,2,'功能符(逻辑运算): ② | 或运算','JSON','/head','{\"User\":{\"id|{}\":\">90000,<=80000\"}}',NULL,NULL,'2018-03-24 15:03:48',NULL),(1521903882830,88888,0,2,'功能符(逻辑运算): ① & 与运算','JSON','/head','{\"User\":{\"id&{}\":\">80000,<=90000\"}}',NULL,NULL,'2018-03-24 15:04:42',NULL),(1521904098111,88888,0,2,'功能符: 减少 或 去除','JSON','/put/balance','{\n \n \"Privacy\": {\n \"id\": 82001,\n \"balance+\": -100,\n \"_payPassword\": \"123456\"\n },\"tag\": \"Privacy\"\n}',NULL,NULL,'2018-03-24 15:08:18',NULL),(1521904162066,88888,0,2,'功能符: 增加 或 扩展','JSON','/put','{\n \"Moment\": {\n \"id\": 15,\n \"praiseUserIdList+\": [\n 82001\n ]\n },\n \"tag\": \"Moment\"\n}',NULL,NULL,'2018-03-24 15:09:22',NULL),(1521904337054,88888,0,2,'功能符: 新建别名','JSON','/get','{\"Comment\":{\"@column\":\"id,toId:parentId\",\"id\":51}}',NULL,NULL,'2018-03-24 15:12:17',NULL),(1521904394042,88888,0,2,'功能符: 正则匹配','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"name~\":\"^[0-9]+$\"}}}',NULL,NULL,'2018-03-24 15:13:14',NULL),(1521904437584,88888,0,2,'功能符: 模糊搜索','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"name$\":\"%m%\"}}}',NULL,NULL,'2018-03-24 15:13:57',NULL),(1521904547992,88888,0,2,'功能符: 引用赋值','JSON','/get','{\"Moment\":{\n \"userId\":38710\n},\n\"User\":{\n \"id@\":\"/Moment/userId\"\n}}',NULL,NULL,'2018-03-24 15:15:47',NULL),(1521904617127,88888,0,2,'功能符: 远程调用函数','JSON','/get','{ \"Moment\": { \"id\": 301, \"@column\": \"userId,praiseUserIdList\", \"isPraised()\": \"isContain(praiseUserIdList,userId)\" } }',NULL,NULL,'2018-03-24 15:16:57',NULL),(1521904653622,88888,0,2,'功能符: 包含选项范围','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"contactIdList<>\":38710}}}',NULL,NULL,'2018-03-24 15:17:33',NULL),(1521904698935,88888,0,2,'功能符: 匹配条件范围','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"id{}\":\"<=80000,>90000\"}}}',NULL,NULL,'2018-03-24 15:18:18',NULL),(1521904756674,88888,0,2,'功能符: 查询数组','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{}}}',NULL,NULL,'2018-03-24 15:19:16',NULL),(1521905263828,88888,82001,2,'操作方法(DELETE): 删除数据','JSON','/delete','{\n \"Moment\":{\n \"id\":120\n },\n \"tag\":\"Moment\"\n}',NULL,NULL,'2018-03-24 15:27:43',NULL),(1521905599150,88888,82001,2,'操作方法(PUT): 修改数据,只修改所传的字段','JSON','/put','{\n \"Moment\":{\n \"id\":235,\n \"content\":\"APIJSON,let interfaces and documents go to hell !\"\n },\n \"tag\":\"Moment\"\n}',NULL,NULL,'2018-03-24 15:33:19',NULL),(1521905680680,88888,82001,2,'操作方法(POST): 新增数据','JSON','/post','{ \"Moment\": { \"content\": \"APIJSON,let interfaces and documents go to hell !\" }, \"tag\": \"Moment\" }',NULL,NULL,'2018-03-24 15:34:40',NULL),(1521905787850,88888,82001,2,'操作方法(HEADS): 安全/私密获取数量,用于获取银行卡数量等 对安全性要求高的数据总数','JSON','/heads','{\n \"Login\": {\n \"userId\": 38710,\"type\":1\n },\n \"tag\": \"Login\"\n}',NULL,NULL,'2018-03-24 15:36:27',NULL),(1521905868719,88888,82001,2,'操作方法(GETS): 安全/私密获取数据,用于获取钱包等 对安全性要求高的数据','JSON','/gets','{\n \"Privacy\": {\n \"id\": 82001\n },\n \"tag\": \"Privacy\"\n}',NULL,NULL,'2018-03-24 15:37:48',NULL),(1521905895591,88888,82001,2,'操作方法(HEAD): 普通获取数量,可用浏览器调试','JSON','/head','{\n \"Moment\":{\n \"userId\":38710\n }\n}',NULL,NULL,'2018-03-24 15:38:15',NULL),(1521905913188,88888,82001,2,'操作方法(GET): 普通获取数据,可用浏览器调试','JSON','/get','{\n \"Moment\":{\n \"id\":235\n }\n}',NULL,NULL,'2018-03-24 15:38:33',NULL),(1521906240332,88888,0,2,'User发布的Moment列表,每个Moment包括 1.发布者User 2.前3条Comment: ③不查已获取的User','JSON','/get','{\n \"[]\":{\n \"page\":0,\n \"count\":3, \n \"Moment\":{\n \"userId\":38710\n },\n \"Comment[]\":{\n \"count\":3,\n \"Comment\":{\n \"momentId@\":\"[]/Moment/id\"\n }\n }\n }\n}',NULL,NULL,'2018-03-24 15:44:00',NULL),(1521906265960,88888,0,2,'User发布的Moment列表,每个Moment包括 1.发布者User 2.前3条Comment: ②省去重复的User','JSON','/get','{\n \"User\":{\n \"id\":38710\n },\n \"[]\":{\n \"page\":0,\n \"count\":3, \n \"Moment\":{\n \"userId\":38710\n }, \n \"Comment[]\":{\n \"count\":3,\n \"Comment\":{\n \"momentId@\":\"[]/Moment/id\"\n }\n }\n }\n}',NULL,NULL,'2018-03-24 15:44:25',NULL),(1521906517001,88888,0,2,'User发布的Moment列表,每个Moment包括 1.发布者User 2.前3条Comment: ①指定id','JSON','/get','{\n \"[]\": {\n \"page\": 0,\n \"count\": 3,\n \"Moment\":{\"userId\":38710}, \"User\":{\"id\":38710} ,\n \"Comment[]\": {\n \"count\": 3,\n \"Comment\": {\n \"momentId@\": \"[]/Moment/id\"\n }\n }\n }\n}',NULL,NULL,'2018-03-24 15:48:37',NULL),(1521907009308,88888,0,2,'Moment列表,每个Moment包括 1.发布者User 2.前3条Comment','JSON','/get','{\n \"[]\":{\n \"page\":0, \n \"count\":3, \n \"Moment\":{}, \n \"User\":{\n \"id@\":\"/Moment/userId\"\n },\n \"Comment[]\":{\n \"count\":3,\n \"Comment\":{\n \"momentId@\":\"[]/Moment/id\"\n }\n }\n }\n}',NULL,NULL,'2018-03-24 15:56:49',NULL),(1521907303540,88888,0,2,'User列表','JSON','/get','{\n \"User[]\":{\n \"page\":0,\n \"count\":3, \n \"User\":{\n \"sex\":0\n }\n }\n}',NULL,NULL,'2018-03-24 16:01:43',NULL),(1521907317871,88888,0,2,'Moment和对应的User','JSON','/get','{\n \"Moment\":{\n \"userId\":38710\n }, \n \"User\":{\n \"id\":38710\n }\n}',NULL,NULL,'2018-03-24 16:01:57',NULL),(1521907333041,88888,0,2,'User','JSON','/get','{\n \"User\":{\n \"id\":38710\n }\n}',NULL,NULL,'2018-03-24 16:02:13',NULL),(1521907333043,88888,82002,3,'微信个人资料-用户信息+最近3个有照片的动态的第0张照片','JSON','/get','{\n \"User\": {\n \"id\": 82002\n },\n \"Moment-firstPicture[]\": {\n \"count\": 3,\n \"Moment\": {\n \"userId@\": \"User/id\",\n \"@column\": \"pictureList\",\n \"@having\": \"json_length(pictureList)>0\",\n \"firstPicture()\": \"getFromArray(pictureList,0)\"\n }\n }\n}',NULL,NULL,'2018-03-24 16:03:13',NULL),(1521907333044,82001,82002,3,'微信个人资料-用户信息+最近3个有照片的动态的第0张照片','JSON','/get','{\n \"User\": {\n \"id\": 82002\n },\n \"Moment-firstPicture[]\": {\n \"count\": 3,\n \"Moment\": {\n \"userId@\": \"User/id\",\n \"@column\": \"userId,pictureList\",\n \"@having\": \"json_length(pictureList)>0\",\n \"firstPicture()\": \"getFromArray(pictureList,0)\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82002\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ],\n \"trend\": {\n \"top\": 1\n }\n }\n }\n ]\n },\n \"Moment-firstPicture[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 3\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"trend\": {\n \"top\": 1\n }\n },\n \"Moment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"userId@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 18\n ]\n },\n \"@having\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 26\n ]\n },\n \"firstPicture()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 27\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2018-03-24 16:03:13',NULL),(1521907333046,88888,0,2,'获取粉丝的动态列表','JSON','/get','{ \"Moment[]\": { \"join\": \"&/User/id@\", \"Moment\": {}, \"User\": { \"id@\": \"/Moment/userId\", \"contactIdList<>\": 82001, \"@column\": \"id\" } } }',NULL,NULL,'2018-03-24 16:03:13',NULL),(1521907546129,88888,0,2,'获取类似微信朋友圈的动态列表','JSON','/get','{\n \"[]\": {\n \"page\": 0,\n \"count\": 2,\n \"Moment\": {\n \"content$\": \"%a%\"\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"Comment[]\": {\n \"count\": 2,\n \"Comment\": {\n \"momentId@\": \"[]/Moment/id\"\n }\n }\n }\n}',NULL,NULL,'2018-03-24 16:05:46',NULL),(1521907570452,88888,0,2,'获取动态及发布者用户','JSON','/get','{\n \"Moment\": {},\n \"User\": {\n \"id@\": \"Moment/userId\"\n }\n}',NULL,NULL,'2018-03-24 16:06:10',NULL),(1521907587430,88888,0,2,'获取用户列表','JSON','/get','{\n \"[]\": {\n \"count\": 3,\n \"User\": {\n \"@column\": \"id,name\"\n }\n }\n}',NULL,NULL,'2018-03-24 16:06:27',NULL),(1521907601299,88888,0,2,'获取用户','JSON','/get','{\n \"User\":{\n }\n}',NULL,NULL,'2018-03-24 16:06:41',NULL),(1522905263828,82001,0,2,'操作方法(DELETE): 删除数据','JSON','/delete','{\n \"Moment\":{\n \"id\":120\n },\n \"tag\":\"Moment\"\n}',NULL,NULL,'2018-03-24 13:27:43',NULL),(1522905599150,82001,0,2,'操作方法(PUT): 修改数据,只修改所传的字段','JSON','/put','{\n \"Moment\":{\n \"id\":235,\n \"content\":\"APIJSON,let interfaces and documents go to hell !\"\n },\n \"tag\":\"Moment\"\n}',NULL,NULL,'2018-03-24 13:33:19',NULL),(1522905680680,82001,0,2,'操作方法(POST): 新增数据','JSON','/post','{ \"Moment\": { \"content\": \"APIJSON,let interfaces and documents go to hell !\" }, \"tag\": \"Moment\" }',NULL,NULL,'2018-03-24 13:34:40',NULL),(1522905787850,82001,0,2,'操作方法(HEADS): 安全/私密获取数量,用于获取银行卡数量等 对安全性要求高的数据总数','JSON','/heads','{\n \"Login\": {\n \"userId\": 38710,\"type\":1\n },\n \"tag\": \"Login\"\n}',NULL,NULL,'2018-03-24 13:36:27',NULL),(1522905868719,82001,0,2,'操作方法(GETS): 安全/私密获取数据,用于获取钱包等 对安全性要求高的数据','JSON','/gets','{\n \"Privacy\": {\n \"id\": 82001\n },\n \"tag\": \"Privacy\"\n}',NULL,NULL,'2018-03-24 13:37:48',NULL),(1522905895591,82001,0,2,'操作方法(HEAD): 普通获取数量,可用浏览器调试','JSON','/head','{\n \"Moment\":{\n \"userId\":38710\n }\n}',NULL,NULL,'2018-03-24 13:38:15',NULL),(1522905913188,82001,0,2,'操作方法(GET): 普通获取数据,可用浏览器调试','JSON','/get','{\n \"Moment\":{\n \"id\":235\n }\n}',NULL,NULL,'2018-03-24 13:38:33',NULL),(1544881887527,88888,0,3,'Moment INNER JOIN User LEFT JOIN Comment','JSON','/get','{\n \"[]\": {\n \"count\": 10,\n \"page\": 0,\n \"join\": \"&/User/id@,</Comment/momentId@\",\n \"Moment\": {\n \"@order\": \"date+\"\n },\n \"User\": {\n \"name~\": [\n \"a\",\n \"t\"\n ],\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"Comment\": {\n \"momentId@\": \"/Moment/id\",\n \"@column\": \"id,momentId,content\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:51:27',NULL),(1544882007411,88888,0,3,'Moment LEFT JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"</User/id@\",\n \"Moment\": {\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:53:27',NULL),(1544882038386,88888,0,3,'Comment LEFT JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"</User/id@\",\n \"Comment\": {\n \"@column\": \"id,userId,content\",\"@order\":\"date-\"\n },\n \"User\": {\n \"@column\": \"id,name\",\n \"id@\": \"/Comment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:53:58',NULL),(1544882070832,88888,0,3,'Moment INNER JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"&/User/id@\",\n \"Moment\": {\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\"name~\":[\"a\",\"t\"],\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:54:30',NULL),(1544882126906,88888,0,3,'Comment INNER JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"&/User/id@\",\n \"Comment\": {\n \"content~\": \"a\",\n \"@order\": \"date-\"\n },\n \"User\": {\n \"name~\": [\n \"a\",\n \"t\"\n ],\n \"@column\": \"id,name\",\n \"id@\": \"/Comment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:55:26',NULL),(1544882162662,88888,0,3,'Moment APP JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"@/User/id@\",\n \"Moment\": {\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:56:02',NULL),(1544882183671,88888,0,3,'Comment APP JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"@/User/id@\",\n \"Comment\": {\n \"content~\": \"a\",\n \"@order\": \"date-\"\n },\n \"User\": {\n \"name~\": [\n \"a\",\n \"t\"\n ],\n \"@column\": \"id,name\",\n \"id@\": \"/Comment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:56:23',NULL),(1544882236758,88888,0,3,'朋友圈 LEFT JOIN','JSON','/get','{\n \"[]\": {\n \"count\": 5,\n \"page\": 0,\n \"join\": \"</User/id@\",\n \"Moment\": {\n \"@order\": \"date+\"\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"User[]\": {\n \"count\": 10,\n \"User\": {\n \"id{}@\": \"[]/Moment/praiseUserIdList\",\n \"@column\": \"id,name\"\n }\n },\n \"[]\": {\n \"count\": 6, \"join\": \"</User/id@\",\n \"Comment\": {\n \"@order\": \"date+\",\n \"momentId@\": \"[]/Moment/id\"\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name\"\n }\n }\n }\n}',NULL,NULL,'2018-12-15 13:57:16',NULL),(1544882253771,88888,0,3,'朋友圈 APP JOIN','JSON','/get','{\n \"[]\": {\n \"count\": 5,\n \"page\": 0,\n \"join\": \"@/User/id@\",\n \"Moment\": {\n \"@order\": \"date+\"\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"User[]\": {\n \"count\": 10,\n \"User\": {\n \"id{}@\": \"[]/Moment/praiseUserIdList\",\n \"@column\": \"id,name\"\n }\n },\n \"[]\": {\n \"count\": 6,\n \"join\": \"@/User/id@\",\n \"Comment\": {\n \"@order\": \"date+\",\n \"momentId@\": \"[]/Moment/id\"\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name\"\n }\n }\n }\n}',NULL,NULL,'2018-12-15 13:57:33',NULL),(1544882327374,88888,0,3,'Comment SIDE JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"^/User/id@\",\n \"Comment\": {\n \"@column\": \"id,userId,content\",\n \"@order\": \"date-\"\n },\n \"User\": {\n \"@column\": \"id,name\",\n \"id@\": \"/Comment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:58:47',NULL),(1544882345510,88888,0,3,'Moment SIDE JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"^/User/id@\",\n \"Moment\": {\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:59:05',NULL),(1544883133787,88888,0,3,'Moment^User each with condition','JSON','/get','{\n \"[]\": {\n \"join\": \"^/User/id@\",\n \"Moment\": {\"content~\":\"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\"sex\":1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:12:13',NULL),(1544883165350,88888,0,3,'Moment<User each with condition','JSON','/get','{\n \"[]\": {\n \"join\": \"</User/id@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:12:45',NULL),(1544883183460,88888,0,3,'Moment&User each with condition','JSON','/get','{\n \"[]\": {\n \"join\": \"&/User/id@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:13:03',NULL),(1544883206003,88888,0,3,'Moment|User each with condition','JSON','/get','{\n \"[]\": {\n \"join\": \"|/User/id@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:13:26',NULL),(1544883224060,88888,0,3,'Moment!User each with condition','JSON','/get','{\n \"[]\": {\n \"join\": \"!/User/id@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:13:44',NULL),(1544883250598,88888,0,3,'Moment>User each with condition','JSON','/get','{\n \"[]\": {\n \"join\": \">/User/id@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:14:10',NULL),(1544883278939,88888,0,3,'Moment@User each with condition','JSON','/get','{\n \"[]\": {\n \"join\": \"@/User/id@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:14:38',NULL),(1544883352884,88888,0,3,'Moment<User<Comment','JSON','/get','{\n \"[]\": {\n \"join\": \"</User/id@,</Comment/momentId@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n },\n \"Comment\": {\n \"momentId@\": \"/Moment/id\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:15:52',NULL),(1544883368286,88888,0,3,'Moment&User<Comment','JSON','/get','{\n \"[]\": {\n \"join\": \"&/User/id@,</Comment/momentId@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n },\n \"Comment\": {\n \"momentId@\": \"/Moment/id\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:16:08',NULL),(1544883407371,88888,0,3,'Moment|User<Comment','JSON','/get','{\n \"[]\": {\n \"join\": \"|/User/id@,</Comment/momentId@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n },\n \"Comment\": {\n \"momentId@\": \"/Moment/id\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:16:47',NULL),(1544883431831,88888,0,3,'Moment^User<Comment','JSON','/get','{\n \"[]\": {\n \"join\": \"^/User/id@,</Comment/momentId@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n },\n \"Comment\": {\n \"momentId@\": \"/Moment/id\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:17:11',NULL),(1544883455364,88888,0,3,'Moment@User<Comment','JSON','/get','{\n \"[]\": {\n \"join\": \"@/User/id@,</Comment/momentId@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n },\n \"Comment\": {\n \"momentId@\": \"/Moment/id\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:17:35',NULL),(1544884133788,88888,0,3,'Moment@User each with condition','JSON','/get','{ \"[]\": { \"join\": \"@/User/id@\", \"Moment\": {\"content~\":\"a\", \"@column\": \"id,userId,content\" }, \"User\": {\"sex\":1, \"@column\": \"id,name\", \"id@\": \"/Moment/userId\" } } }',NULL,NULL,'2018-12-15 14:12:13',NULL),(1544884165351,88888,0,3,'Moment@User each with condition','JSON','/get','{ \"[]\": { \"join\": \"@/User/id@\", \"Moment\": { \"content~\": \"a\", \"@column\": \"id,userId,content\" }, \"User\": { \"sex\": 1, \"@column\": \"id,name\", \"id@\": \"/Moment/userId\" } } }',NULL,NULL,'2018-12-15 14:12:45',NULL),(1544884183460,88888,0,3,'Moment@User each with condition','JSON','/get','{ \"[]\": { \"join\": \"@/User/id@\", \"Moment\": { \"content~\": \"a\", \"@column\": \"id,userId,content\" }, \"User\": { \"sex\": 1, \"@column\": \"id,name\", \"id@\": \"/Moment/userId\" } } }',NULL,NULL,'2018-12-15 14:13:03',NULL),(1544884206003,88888,0,3,'Moment@User each with condition','JSON','/get','{ \"[]\": { \"join\": \"@/User/id@\", \"Moment\": { \"content~\": \"a\", \"@column\": \"id,userId,content\" }, \"User\": { \"sex\": 1, \"@column\": \"id,name\", \"id@\": \"/Moment/userId\" } } }',NULL,NULL,'2018-12-15 14:13:26',NULL),(1544884224060,88888,0,3,'Moment@User each with condition','JSON','/get','{ \"[]\": { \"join\": \"@/User/id@\", \"Moment\": { \"content~\": \"a\", \"@column\": \"id,userId,content\" }, \"User\": { \"sex\": 1, \"@column\": \"id,name\", \"id@\": \"/Moment/userId\" } } }',NULL,NULL,'2018-12-15 14:13:44',NULL),(1544884250598,88888,0,3,'Moment@User each with condition','JSON','/get','{ \"[]\": { \"join\": \"@/User/id@\", \"Moment\": { \"content~\": \"a\", \"@column\": \"id,userId,content\" }, \"User\": { \"sex\": 1, \"@column\": \"id,name\", \"id@\": \"/Moment/userId\" } } }',NULL,NULL,'2018-12-15 14:14:10',NULL),(1544884278939,88888,0,3,'Moment@User each with condition','JSON','/get','{\n \"[]\": {\n \"join\": \"@/User/id@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:14:38',NULL),(1544884352884,88888,0,3,'Moment@User<Comment','JSON','/get','{ \"[]\": { \"join\": \"@/User/id@,</Comment/momentId@\", \"Moment\": { \"content~\": \"a\", \"@column\": \"id,userId,content\" }, \"User\": { \"sex\": 1, \"@column\": \"id,name\", \"id@\": \"/Moment/userId\" }, \"Comment\": { \"momentId@\": \"/Moment/id\" } } }',NULL,NULL,'2018-12-15 14:15:52',NULL),(1544884368286,88888,0,3,'Moment@User<Comment','JSON','/get','{ \"[]\": { \"join\": \"@/User/id@,</Comment/momentId@\", \"Moment\": { \"content~\": \"a\", \"@column\": \"id,userId,content\" }, \"User\": { \"sex\": 1, \"@column\": \"id,name\", \"id@\": \"/Moment/userId\" }, \"Comment\": { \"momentId@\": \"/Moment/id\" } } }',NULL,NULL,'2018-12-15 14:16:08',NULL),(1544884407371,88888,0,3,'Moment@User<Comment','JSON','/get','{ \"[]\": { \"join\": \"@/User/id@,</Comment/momentId@\", \"Moment\": { \"content~\": \"a\", \"@column\": \"id,userId,content\" }, \"User\": { \"sex\": 1, \"@column\": \"id,name\", \"id@\": \"/Moment/userId\" }, \"Comment\": { \"momentId@\": \"/Moment/id\" } } }',NULL,NULL,'2018-12-15 14:16:47',NULL),(1544884431831,88888,0,3,'Moment@User<Comment','JSON','/get','{ \"[]\": { \"join\": \"@/User/id@,</Comment/momentId@\", \"Moment\": { \"content~\": \"a\", \"@column\": \"id,userId,content\" }, \"User\": { \"sex\": 1, \"@column\": \"id,name\", \"id@\": \"/Moment/userId\" }, \"Comment\": { \"momentId@\": \"/Moment/id\" } } }',NULL,NULL,'2018-12-15 14:17:11',NULL),(1544884455364,88888,0,3,'Moment@User<Comment','JSON','/get','{\n \"[]\": {\n \"join\": \"@/User/id@,</Comment/momentId@\",\n \"Moment\": {\n \"content~\": \"a\",\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"sex\": 1,\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n },\n \"Comment\": {\n \"momentId@\": \"/Moment/id\"\n }\n }\n}',NULL,NULL,'2018-12-15 14:17:35',NULL),(1546414155879,82001,82001,3,'获取类似微信朋友圈的动态列表','JSON','/get','{\n \"[]\": {\n \"page\": 0,\n \"count\": 2,\n \"Moment\": {\n \"content$\": \"%a%\"\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"Comment[]\": {\n \"count\": 2,\n \"Comment\": {\n \"momentId@\": \"[]/Moment/id\"\n }\n }\n }\n}',NULL,NULL,'2019-01-02 07:29:15',NULL),(1546414179257,82001,82001,3,'获取动态及发布者用户','JSON','/get','{\n \"Moment\": {},\n \"User\": {\n \"id@\": \"Moment/userId\"\n }\n}',NULL,NULL,'2019-01-02 07:29:39',NULL),(1546414192830,82001,82001,3,'获取用户列表','JSON','/get','{\n \"[]\": {\n \"count\": 3,\n \"User\": {\n \"@column\": \"id,name\"\n }\n }\n}',NULL,NULL,'2019-01-02 07:29:52',NULL),(1546881887421,88888,0,1,'子查询 WHERE id IN(SELECT userId FROM Comment WHERE momentId=15)','JSON','/get','{\n \"[]\": {\n \"User\": {\n \"id{}@\": {\n \"from\": \"Comment\",\n \"Comment\": {\n \"momentId\": 15,\n \"@column\": \"userId\"\n }\n },\n \"@column\": \"id,sex,name\"\n }\n }\n}',NULL,NULL,'2018-02-24 14:25:18',NULL),(1546881887422,88888,0,1,'子查询 WHERE EXISTS(SELECT userId FROM Comment WHERE momentId=15)','JSON','/get','{\n \"[]\": {\n \"User\": {\n \"id}{@\": {\n \"from\": \"Comment\",\n \"Comment\": {\n \"momentId\": 15,\n \"@column\": \"userId\"\n }\n },\n \"@column\": \"id,sex,name\"\n }\n }\n}',NULL,NULL,'2018-02-24 14:25:18',NULL),(1546881887423,88888,0,1,'子查询 WHERE id=(SELECT min(userId) FROM Comment)','JSON','/get','{\n \"User\": {\n \"id@\": {\n \"from\": \"Comment\",\n \"Comment\": {\n \"@column\": \"min(userId)\"\n }\n }\n }\n}',NULL,NULL,'2018-02-24 14:28:18',NULL),(1546881887521,82001,82001,1,'子查询 WHERE id IN(SELECT userId FROM Comment WHERE momentId=15)','JSON','/get','{\n \"[]\": {\n \"User\": {\n \"id{}@\": {\n \"from\": \"Comment\",\n \"Comment\": {\n \"momentId\": 15,\n \"@column\": \"userId\"\n }\n },\n \"@column\": \"id,sex,name\"\n }\n }\n}',NULL,NULL,'2018-02-24 14:25:18',NULL),(1546881887522,82001,82001,1,'子查询 WHERE EXISTS(SELECT userId FROM Comment WHERE momentId=15)','JSON','/get','{\n \"[]\": {\n \"User\": {\n \"id}{@\": {\n \"from\": \"Comment\",\n \"Comment\": {\n \"momentId\": 15,\n \"@column\": \"userId\"\n }\n },\n \"@column\": \"id,sex,name\"\n }\n }\n}',NULL,NULL,'2018-02-24 14:25:18',NULL),(1546881887523,82001,82001,1,'子查询 WHERE id=(SELECT min(userId) FROM Comment)','JSON','/get','{\n \"User\": {\n \"id@\": {\n \"from\": \"Comment\",\n \"Comment\": {\n \"@column\": \"min(userId)\"\n }\n }\n }\n}',NULL,NULL,'2018-02-24 14:28:18',NULL),(1546881887524,88888,88888,1,'存储过程','JSON','/get','{\n \"User\": {\n \"@limit\": 10,\n \"@offset\": 0,\n \"@procedure()\": \"getCommentByUserId(id,@limit,@offset)\"\n }\n}',NULL,NULL,'2018-03-24 13:34:40',NULL),(1546881887525,82001,82001,1,'存储过程','JSON','/get','{\n \"User\": {\n \"@limit\": 10,\n \"@offset\": 0,\n \"@procedure()\": \"getCommentByUserId(id,@limit,@offset)\"\n }\n}',NULL,NULL,'2018-03-24 13:34:40',NULL),(1546881887527,82001,0,1,'Moment INNER JOIN User LEFT JOIN Comment','JSON','/get','{\n \"[]\": {\n \"count\": 10,\n \"page\": 0,\n \"join\": \"&/User/id@,</Comment/momentId@\",\n \"Moment\": {\n \"@order\": \"date+\"\n },\n \"User\": {\n \"name~\": [\n \"a\",\n \"t\"\n ],\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"Comment\": {\n \"momentId@\": \"/Moment/id\",\n \"@column\": \"id,momentId,content\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:51:27',NULL),(1546882007411,82001,0,1,'Moment LEFT JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"</User/id@\",\n \"Moment\": {\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:53:27',NULL),(1546882038386,82001,0,1,'Comment LEFT JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"</User/id@\",\n \"Comment\": {\n \"@column\": \"id,userId,content\",\"@order\":\"date-\"\n },\n \"User\": {\n \"@column\": \"id,name\",\n \"id@\": \"/Comment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:53:58',NULL),(1546882070832,82001,0,1,'Moment INNER JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"&/User/id@\",\n \"Moment\": {\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\"name~\":[\"a\",\"t\"],\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:54:30',NULL),(1546882126906,82001,0,1,'Comment INNER JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"&/User/id@\",\n \"Comment\": {\n \"content~\": \"a\",\n \"@order\": \"date-\"\n },\n \"User\": {\n \"name~\": [\n \"a\",\n \"t\"\n ],\n \"@column\": \"id,name\",\n \"id@\": \"/Comment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:55:26',NULL),(1546882162662,82001,0,1,'Moment APP JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"@/User/id@\",\n \"Moment\": {\n \"@column\": \"id,userId,content\"\n },\n \"User\": {\n \"@column\": \"id,name\",\n \"id@\": \"/Moment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 13:56:02',NULL),(1546882183671,82001,0,1,'Comment APP JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"@/User/id@\",\n \"Comment\": {\n \"content~\": \"a\",\n \"@order\": \"date-\"\n },\n \"User\": {\n \"name~\": [\n \"a\",\n \"t\"\n ],\n \"@column\": \"id,name\",\n \"id@\": \"/Comment/userId\"\n }\n }\n}',NULL,NULL,'2018-12-15 12:56:23',NULL),(1546882236758,82001,0,1,'朋友圈 LEFT JOIN','JSON','/get','{\n \"[]\": {\n \"count\": 5,\n \"page\": 0,\n \"join\": \"</User/id@\",\n \"Moment\": {\n \"@order\": \"date+\"\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"User[]\": {\n \"count\": 10,\n \"User\": {\n \"id{}@\": \"[]/Moment/praiseUserIdList\",\n \"@column\": \"id,name\"\n }\n },\n \"[]\": {\n \"count\": 6, \"join\": \"</User/id@\",\n \"Comment\": {\n \"@order\": \"date+\",\n \"momentId@\": \"[]/Moment/id\"\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name\"\n }\n }\n }\n}',NULL,NULL,'2018-12-15 12:57:16',NULL),(1546882253771,82001,0,1,'朋友圈 APP JOIN','JSON','/get','{\n \"[]\": {\n \"count\": 5,\n \"page\": 0,\n \"join\": \"@/User/id@\",\n \"Moment\": {\n \"@order\": \"date+\"\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"User[]\": {\n \"count\": 10,\n \"User\": {\n \"id{}@\": \"[]/Moment/praiseUserIdList\",\n \"@column\": \"id,name\"\n }\n },\n \"[]\": {\n \"count\": 6,\n \"join\": \"@/User/id@\",\n \"Comment\": {\n \"@order\": \"date+\",\n \"momentId@\": \"[]/Moment/id\"\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name\"\n }\n }\n }\n}',NULL,NULL,'2018-12-15 12:57:33',NULL),(1546901518765,82001,0,2,'功能符(对象关键词): ⑤从pictureList获取第0张图片:','JSON','/get','{ \"User\": { \"id\": 38710, \"@position\": 0, \"firstPicture()\": \"getFromArray(pictureList,@position)\" } }',NULL,NULL,'2018-03-24 14:25:18',NULL),(1546902069871,82001,0,2,'功能符(数组关键词): ②查询第3页的User数组,每页5个','JSON','/get','{\"[]\":{\"count\":5,\"page\":3,\"User\":{}}}',NULL,NULL,'2018-03-24 14:34:29',NULL),(1546902110680,82001,0,2,'功能符(数组关键词): ①查询User数组,最多5个','JSON','/get','{\"[]\":{\"count\":5,\"User\":{}}}',NULL,NULL,'2018-03-24 14:35:10',NULL),(1546903761689,82001,0,2,'功能符(逻辑运算): ③ ! 非运算','JSON','/head','{\n \"User\": {\n \"id!{}\": [\n 82001,\n 38710\n ]\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id!{}\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001,\n 38710\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2018-03-24 15:02:41',NULL),(1546903828410,82001,0,2,'功能符(逻辑运算): ② | 或运算','JSON','/head','{\"User\":{\"id|{}\":\">90000,<=80000\"}}',NULL,NULL,'2018-03-24 15:03:48',NULL),(1546903882830,82001,0,2,'功能符(逻辑运算): ① & 与运算','JSON','/head','{\"User\":{\"id&{}\":\">80000,<=90000\"}}',NULL,NULL,'2018-03-24 15:04:42',NULL),(1546904098111,82001,82001,2,'功能符: 减少 或 去除','JSON','/put/balance','{\n \n \"Privacy\": {\n \"id\": 82001,\n \"balance+\": -100,\n \"_payPassword\": \"123456\"\n },\"tag\": \"Privacy\"\n}',NULL,NULL,'2018-03-24 15:08:18',NULL),(1546904162066,82001,82001,2,'功能符: 增加 或 扩展','JSON','/put','{\n \"Moment\": {\n \"id\": 15,\n \"praiseUserIdList+\": [\n 82001\n ]\n },\n \"tag\": \"Moment\"\n}',NULL,NULL,'2018-03-24 15:09:22',NULL),(1546904337054,82001,0,2,'功能符: 新建别名','JSON','/get','{\"Comment\":{\"@column\":\"id,toId:parentId\",\"id\":51}}',NULL,NULL,'2018-03-24 15:12:17',NULL),(1546904394042,82001,0,2,'功能符: 正则匹配','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"name~\":\"^[0-9]+$\"}}}',NULL,NULL,'2018-03-24 15:13:14',NULL),(1546904437584,82001,0,2,'功能符: 模糊搜索','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"name$\":\"%m%\"}}}',NULL,NULL,'2018-03-24 15:13:57',NULL),(1546904547992,82001,0,2,'功能符: 引用赋值','JSON','/get','{\"Moment\":{\n \"userId\":38710\n},\n\"User\":{\n \"id@\":\"/Moment/userId\"\n}}',NULL,NULL,'2018-03-24 15:15:47',NULL),(1546904617127,82001,0,2,'功能符: 远程调用函数','JSON','/get','{ \"Moment\": { \"id\": 301, \"@column\": \"userId,praiseUserIdList\", \"isPraised()\": \"isContain(praiseUserIdList,userId)\" } }',NULL,NULL,'2018-03-24 15:16:57',NULL),(1546904653622,82001,0,2,'功能符: 包含选项范围','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"contactIdList<>\":38710}}}',NULL,NULL,'2018-03-24 15:17:33',NULL),(1546904698935,82001,0,2,'功能符: 匹配条件范围','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"id{}\":\"<=80000,>90000\"}}}',NULL,NULL,'2018-03-24 15:18:18',NULL),(1546904756674,82001,0,2,'功能符: 查询数组','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{}}}',NULL,NULL,'2018-03-24 15:19:16',NULL),(1546907333046,82001,0,1,'获取粉丝的动态列表','JSON','/get','{ \"Moment[]\": { \"join\": \"&/User/id@\", \"Moment\": {}, \"User\": { \"id@\": \"/Moment/userId\", \"contactIdList<>\": 82001, \"@column\": \"id\" } } }',NULL,NULL,'2018-03-24 16:03:13',NULL),(1547401498195,88888,0,1,'子查询FROM和IN','JSON','/get','{\r \"sql@\": {\r \"from\": \"Comment\",\r \"Comment\": {\r \"momentId\": 12,\r \"@column\": \"userId\",\r \"@group\": \"userId\"\r }\r },\r \"Comment-userId[]\": {\r \"Comment\": {\r \"@from@\": \"sql\"\r }\r },\r \"[]\": {\r \"User\": {\r \"id{}@\": \"sql\",\r \"sex\": 1,\r \"@column\": \"id,sex,name\"\r }\r }\r }',NULL,NULL,'2019-01-13 17:44:58',NULL),(1556385621907,82001,0,1,'子查询 WHERE id IN(SELECT userId FROM Comment WHERE momentId=15)','JSON','/get','{\n \"subquery@\": {\n \"from\": \"Comment\",\n \"Comment\": {\n \"momentId\": 15,\n \"@column\": \"userId\"\n }\n },\n \"User[]\": {\n \"User\": {\n \"id{}@\": \"subquery\",\n \"@column\": \"id,sex,name\"\n }\n },\n \"[]\": null\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": false,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id{}@\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"from\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n },\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"momentId\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 15\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"subquery@\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"from\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n },\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"momentId\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 15\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"User[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id{}@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2018-02-24 14:28:18',NULL),(1556385621908,88888,0,1,'子查询 WHERE id IN(SELECT userId FROM Comment WHERE momentId=15)','JSON','/get','{\n \"subquery@\": {\n \"from\": \"Comment\",\n \"Comment\": {\n \"momentId\": 15,\n \"@column\": \"userId\"\n }\n },\n \"[]\": {\n \"User\": {\n \"id{}@\": \"subquery\",\n \"@column\": \"id,sex,name\"\n }\n }\n}',NULL,NULL,'2018-02-24 14:28:18',NULL),(1556385677607,82001,0,1,'子查询 WHERE EXISTS(SELECT userId FROM Comment WHERE momentId=15)','JSON','/get','{\n \"subquery@\": {\n \"from\": \"Comment\",\n \"Comment\": {\n \"momentId\": 15,\n \"@column\": \"userId\"\n }\n },\n \"[]\": {\n \"User\": {\n \"id}{@\": \"subquery\",\n \"@column\": \"id,sex,name\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id}{@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [\n {\n \"from\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n },\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"momentId\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 15\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n }\n }\n ]\n }\n }\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"subquery@\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"from\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n },\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"momentId\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 15\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2018-02-24 14:28:18',NULL),(1556385677608,88888,0,1,'子查询 WHERE EXISTS(SELECT userId FROM Comment WHERE momentId=15)','JSON','/get','{\n \"subquery@\": {\n \"from\": \"Comment\",\n \"Comment\": {\n \"momentId\": 15,\n \"@column\": \"userId\"\n }\n },\n \"[]\": {\n \"User\": {\n \"id}{@\": \"subquery\",\n \"@column\": \"id,sex,name\"\n }\n }\n}',NULL,NULL,'2018-02-24 14:28:18',NULL),(1558944411696,82001,82001,3,'关联查询 Comment.userId = User.id','JSON','/get','{\n \"User\": {\n \"id\": 82001\n },\n \"[]\": {\n \"Comment\": {\n \"userId@\": \"User/id\"\n }\n }\n}',NULL,NULL,'2019-05-27 08:06:51',NULL),(1559995734352,82001,0,3,'get 自定义关键词和远程函数的应用','JSON','/get','{\n \"User\": {\n \"id\": 82001,\n \"@column\": \"contactIdList\",\n \"@value\": 82006,\n \"isContect()\": \"isContain(contactIdList,@value)\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"@value\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82006\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"isContect()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 31\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2019-06-08 12:08:54','\n1、获取User表中的id==82001的数据块;\n2、获取contactIdList列中的数据;\n3、设定自定义关键词和值\"@value\": 82006;\n4、调用远程函数isContain判断 contactIdList 中是否存在值为82006的id;\n5、判断结果看 isContect的值。'),(1560075285563,82001,0,3,'Comment JOIN User','JSON','/get','{\n \"[]\": {\n \"join\": \"</User/id@\",\n \"Comment\": {\n \"@order\": \"date-\"\n },\n \"User\": {\n \"id@\": \"/Comment/userId\"\n }\n }\n}',NULL,NULL,'2019-06-09 10:14:45',NULL),(1560737118846,82001,82001,3,'获取单个用户信息','JSON','/get','{\n \"User\": {\n \"id\": 82002\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82002\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2019-06-17 02:05:18',NULL),(1563115049174,88888,0,3,'去重 DISTINCT','JSON','/get','{\n \"[]\": {\n \"Comment\": {\n \"@column\": \"DISTINCT momentId;count(DISTINCT userId)\",\n \"@group\": \"momentId\"\n }\n },\n \"@explain\": true\n}',NULL,NULL,'2018-03-20 14:25:18',NULL),(1563120735968,82001,0,3,'去重 DISTINCT','JSON','/get','{\n \"[]\": {\n \"Comment\": {\n \"@column\": \"DISTINCT momentId;count(DISTINCT userId)\",\n \"@group\": \"momentId\"\n }\n },\n \"@explain\": true\n}',NULL,NULL,'2018-03-20 14:25:18',NULL),(1563983388528,82001,0,3,'热更新 权限控制、请求校验、远程函数 等配置','JSON','/reload','{\n \"type\": \"REQUEST\",\n \"phone\": \"13000082001\",\n \"verify\": \"1234\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"type\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"REQUEST\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ],\n \"comment\": \"ALL-全部, ACCESS-权限, REQUEST-请求校验, FUNCTION-远程函数\"\n },\n \"phone\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n },\n \"verify\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ],\n \"comment\": \"验证码,调用 /post/verify ,type:4 获取\"\n }\n }\n ]\n}','','2019-07-24 15:49:48',NULL),(1563983969937,88888,0,3,'热更新 权限控制、请求校验、远程函数 等配置','JSON','/reload','{\n \"type\": \"REQUEST\", // ALL-全部, ACCESS-权限, REQUEST-请求校验, FUNCTION-远程函数\n \"phone\": \"13000082001\",\n \"verify\": \"1234\" //验证码,调用 /post/verify ,type:4 获取\n}',NULL,NULL,'2019-07-24 15:59:29',NULL),(1564388238598,1564369325432,82001,3,'测试上传','JSON','/get','{\n \"User\": {\n \"id\": 82001\n },\n \"[]\": {\n \"Comment\": {\n \"userId@\": \"User/id\"\n }\n }\n}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634765,1564369325432,82001,1,'登录','JSON','/login','{\r \"type\": 0, //密码类型,0-登录密码 1-验证码\r \"phone\": \"13000082001\", //手机号\r \"password\": \"123456\", //登录密码或验证码\r \"version\": 1, //版本号\r \"remember\": false //记住登录\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634766,1564369325432,0,1,'注册(先获取验证码type:1)','JSON','/register','{\r \"Privacy\": {\r \"phone\": \"13000083333\",\r \"_password\": \"123456\"\r },\r \"User\": {\r \"name\": \"APIJSONUser\"\r },\r \"verify\": \"6840\" //验证码,需要先调用接口 /post/verify\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634841,82001,0,2,'视图表 ViewTable 查单条记录 /get','JSON','/get','{\n \"ViewTable\": {\n \"id\": 82001\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ViewTable\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ],\n \"comment\": \"视图表\"\n }\n }\n ]\n}','','2019-07-29 08:43:18',NULL),(1564483634842,82001,0,2,'视图表 ViewTable 查列表带条件','JSON','/get','{\n \"ViewTable[]\": {\n \"ViewTable\": {\n \"toId\": 0,\n \"content~\": \"a\"\n }\n }\n}\n \n',NULL,'','2019-07-29 08:43:18',NULL),(1564483634843,82001,0,2,'视图表 ViewTable INNER JOIN Moment','JSON','/get','{\n \"[]\": {\n \"join\": \"&/Moment/id@\",\n \"ViewTable\": {\"toId\":0},\n \"Moment\": {\"content~\":\"a\",\n \"id@\": \"/ViewTable/momentId\"\n }\n }\n}\n \n',NULL,'','2019-07-29 08:43:18',NULL),(1564483634844,82001,0,2,'视图表 ViewTable 子查询','JSON','/get','{\n \"ViewTable[]\": {\n \"ViewTable\": {\n \"momentId{}@\": {\n \"from\": \"Moment\",\n \"Moment\": {\n \"@column\": \"id\"\n }\n }\n }\n }\n}\n \n',NULL,'','2019-07-29 08:43:18',NULL),(1564483634845,82001,0,2,'视图表 ViewTable LEFT JOIN Moment','JSON','/get','{\n \"[]\": {\n \"join\": \"</Moment/id@\",\n \"ViewTable\": {},\n \"Moment\": {\n \"id@\": \"/ViewTable/momentId\"\n }\n }\n}\n \n',NULL,'','2019-07-29 08:43:18',NULL),(1564483634846,82001,0,2,'全局关键词','JSON','/get','{\n \"[]\": {\n \"count\": 3,\n \"Moment\": {},\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"[]\": {\n \"count\": 6,\n \"Comment\": {\n \"momentId@\": \"[]/Moment/id\"\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name\"\n }\n }\n },\n \"format\": false,\n \"tag\": \"Moment[]\",\n \"version\": 0,\n \"@role\": \"CIRCLE\",\n \"@database\": \"MYSQL\",\n \"@schema\": \"sys\",\n \"@explain\": true,\n \"@cache\": 0\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 3\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"Moment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {}\n ]\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 14\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 12\n ]\n }\n }\n ]\n },\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 6\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"momentId@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 12\n ]\n }\n }\n ]\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"format\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n false\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"tag\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"version\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"@role\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"CIRCLE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"@database\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"MYSQL\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"@schema\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"@cache\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2019-07-29 08:43:18',NULL),(1564483634853,1564369325432,0,1,'退出登录','JSON','/logout','{}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634854,1564369325432,0,1,'获取用户隐私信息','JSON','/gets','{\"tag\": \"Privacy\", \"Privacy\": {\"id\": 82001}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634855,1564369325432,0,1,'获取验证码','JSON','/post/verify','{\r \"type\": 0, //类型: 0-登录 1-注册 2-修改登录密码 3-修改支付密码\r \"phone\": \"13000082001\" //手机号\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634856,1564369325432,0,1,'检查验证码是否存在','JSON','/heads/verify','{\r \"type\": 0, //类型: 0-登录 1-注册 2-修改登录密码 3-修改支付密码\r \"phone\": \"13000082001\" //手机号\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634857,1564369325432,82001,1,'修改登录密码(先获取验证码type:2)-手机号+验证码','JSON','/put/password','{\r \"verify\": \"10322\", //验证码,需要先调用接口 /post/verify\r \"Privacy\": {\r \"phone\": \"13000082001\",\r \"_password\": \"666666\"\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634858,1564369325432,82001,1,'充值(需要支付密码)/提现','JSON','/put/balance','{\"tag\": \"Privacy\", \"Privacy\": {\"id\": 82001, \"balance+\": 100.15, \"_payPassword\": \"123456\"}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634859,1564369325432,82001,1,'点赞/取消点赞','JSON','/put','{\r \"Moment\": {\r \"id\": 15,\r \"praiseUserIdList-\": [\r 82001\r ]\r },\r \"tag\": \"Moment\"\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634860,1564369325432,82001,1,'新增评论','JSON','/post','{ \"Comment\": { \"momentId\": 15, \"content\": \"测试新增评论\" }, \"tag\": \"Comment\" }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634861,1564369325432,82001,1,'新增动态','JSON','/post','{ \"Moment\": { \"content\": \"测试新增动态\", \"pictureList\": [\"http://static.oschina.net/uploads/user/48/96331_50.jpg\" ] }, \"tag\": \"Moment\" }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634862,1564369325432,82001,1,'修改用户信息','JSON','/put','{\r \"User\": {\r \"id\": 82001,\r \"name\": \"测试账号\"\r },\r \"tag\": \"User\"\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634863,1564369325432,82002,3,'微信个人资料-用户信息+最近3个有照片的动态的第0张照片','JSON','/get','{\r \"User\": {\r \"id\": 82002\r },\r \"Moment-firstPicture[]\": {\r \"count\": 3,\r \"Moment\": {\r \"userId@\": \"User/id\",\r \"@column\": \"userId,pictureList\",\r \"@having\": \"json_length(pictureList)>0\",...',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634864,1564369325432,0,2,'操作方法(DELETE): 删除数据','JSON','/delete','{\r \"Moment\":{\r \"id\":120\r },\r \"tag\":\"Moment\"\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634865,1564369325432,0,2,'操作方法(PUT): 修改数据,只修改所传的字段','JSON','/put','{\r \"Moment\":{\r \"id\":235,\r \"content\":\"APIJSON,let interfaces and documents go to hell !\"\r },\r \"tag\":\"Moment\"\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634866,1564369325432,0,2,'操作方法(POST): 新增数据','JSON','/post','{ \"Moment\": { \"content\": \"APIJSON,let interfaces and documents go to hell !\" }, \"tag\": \"Moment\" }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634867,1564369325432,0,2,'操作方法(HEADS): 安全/私密获取数量,用于获取银行卡数量等 对安全性要求高的数据总数','JSON','/heads','{\r \"Login\": {\r \"userId\": 38710,\"type\":1\r },\r \"tag\": \"Login\"\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634868,1564369325432,0,2,'操作方法(GETS): 安全/私密获取数据,用于获取钱包等 对安全性要求高的数据','JSON','/gets','{\r \"Privacy\": {\r \"id\": 82001\r },\r \"tag\": \"Privacy\"\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634869,1564369325432,0,2,'操作方法(HEAD): 普通获取数量,可用浏览器调试','JSON','/head','{\r \"Moment\":{\r \"userId\":38710\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634870,1564369325432,0,2,'操作方法(GET): 普通获取数据,可用浏览器调试','JSON','/get','{\r \"Moment\":{\r \"id\":235\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634871,1564369325432,82001,3,'获取类似微信朋友圈的动态列表','JSON','/get','{\r \"[]\": {\r \"page\": 0,\r \"count\": 2,\r \"Moment\": {\r \"content$\": \"%a%\"\r },\r \"User\": {\r \"id@\": \"/Moment/userId\",\r \"@column\": \"id,name,head\"\r },\r \"Comment[]\": {\r \"...',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634872,1564369325432,82001,3,'获取动态及发布者用户','JSON','/get','{\r \"Moment\": {},\r \"User\": {\r \"id@\": \"Moment/userId\"\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634873,1564369325432,82001,3,'获取用户列表','JSON','/get','{\r \"[]\": {\r \"count\": 3,\r \"User\": {\r \"@column\": \"id,name\"\r }\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634874,1564369325432,82001,3,'获取用户','JSON','/get','{\r \"User\":{\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634875,1564369325432,82001,1,'子查询 WHERE id IN(SELECT userId FROM Comment WHERE momentId=15)','JSON','/get','{\r \"[]\": {\r \"User\": {\r \"id{}@\": {\r \"from\": \"Comment\",\r \"Comment\": {\r \"momentId\": 15,\r \"@column\": \"userId\"\r }\r },\r \"@column\": \"id...',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634876,1564369325432,82001,1,'子查询 WHERE EXISTS(SELECT userId FROM Comment WHERE momentId=15)','JSON','/get','{\r \"[]\": {\r \"User\": {\r \"id}{@\": {\r \"from\": \"Comment\",\r \"Comment\": {\r \"momentId\": 15,\r \"@column\": \"userId\"\r }\r },\r \"@column\": \"id...',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634877,1564369325432,82001,1,'子查询 WHERE id=(SELECT min(userId) FROM Comment)','JSON','/get','{\r \"User\": {\r \"id@\": {\r \"from\": \"Comment\",\r \"Comment\": {\r \"@column\": \"min(userId)\"\r }\r }\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634878,1564369325432,82001,1,'存储过程','JSON','/get','{\r \"User\": {\r \"@limit\": 10,\r \"@offset\": 0,\r \"@procedure()\": \"getCommentByUserId(id,@limit,@offset)\"\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634879,1564369325432,0,1,'Moment INNER JOIN User LEFT JOIN Comment','JSON','/get','{\r \"[]\": {\r \"count\": 10,\r \"page\": 0,\r \"join\": \"&/User/id@,</Comment/momentId@\",\r \"Moment\": {\r \"@order\": \"date+\"\r },\r \"User\": {\r \"name~\": [\r \"a\",\r \"t\"\r ...',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634880,1564369325432,0,1,'Moment LEFT JOIN User','JSON','/get','{\r \"[]\": {\r \"join\": \"</User/id@\",\r \"Moment\": {\r \"@column\": \"id,userId,content\"\r },\r \"User\": {\r \"@column\": \"id,name\",\r \"id@\": \"/Moment/userId\"\r }\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634881,1564369325432,0,1,'Comment LEFT JOIN User','JSON','/get','{\r \"[]\": {\r \"join\": \"</User/id@\",\r \"Comment\": {\r \"@column\": \"id,userId,content\",\"@order\":\"date-\"\r },\r \"User\": {\r \"@column\": \"id,name\",\r \"id@\": \"/Comment/userId\"\r }\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634882,1564369325432,0,1,'Moment INNER JOIN User','JSON','/get','{\r \"[]\": {\r \"join\": \"&/User/id@\",\r \"Moment\": {\r \"@column\": \"id,userId,content\"\r },\r \"User\": {\"name~\":[\"a\",\"t\"],\r \"@column\": \"id,name\",\r \"id@\": \"/Moment/userId\"\r }\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634883,1564369325432,0,1,'Comment INNER JOIN User','JSON','/get','{\r \"[]\": {\r \"join\": \"&/User/id@\",\r \"Comment\": {\r \"content~\": \"a\",\r \"@order\": \"date-\"\r },\r \"User\": {\r \"name~\": [\r \"a\",\r \"t\"\r ],\r \"@column\":...',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634884,1564369325432,0,1,'Moment APP JOIN User','JSON','/get','{\r \"[]\": {\r \"join\": \"@/User/id@\",\r \"Moment\": {\r \"@column\": \"id,userId,content\"\r },\r \"User\": {\r \"@column\": \"id,name\",\r \"id@\": \"/Moment/userId\"\r }\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634885,1564369325432,0,1,'Comment APP JOIN User','JSON','/get','{\r \"[]\": {\r \"join\": \"@/User/id@\",\r \"Comment\": {\r \"content~\": \"a\",\r \"@order\": \"date-\"\r },\r \"User\": {\r \"name~\": [\r \"a\",\r \"t\"\r ],\r \"@column\":...',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634886,1564369325432,0,1,'朋友圈 LEFT JOIN','JSON','/get','{\r \"[]\": {\r \"count\": 5,\r \"page\": 0,\r \"join\": \"</User/id@\",\r \"Moment\": {\r \"@order\": \"date+\"\r },\r \"User\": {\r \"id@\": \"/Moment/userId\",\r \"@column\": \"id,name,head\"\r },\r ...',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634887,1564369325432,0,1,'朋友圈 APP JOIN','JSON','/get','{\r \"[]\": {\r \"count\": 5,\r \"page\": 0,\r \"join\": \"@/User/id@\",\r \"Moment\": {\r \"@order\": \"date+\"\r },\r \"User\": {\r \"id@\": \"/Moment/userId\",\r \"@column\": \"id,name,head\"\r },\r ...',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634888,1564369325432,0,2,'功能符(对象关键词): ⑤从pictureList获取第0张图片:','JSON','/get','{ \"User\": { \"id\": 38710, \"@position\": 0, \"firstPicture()\": \"getFromArray(pictureList,@position)\" } }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634889,1564369325432,0,2,'功能符(数组关键词): ②查询第3页的User数组,每页5个','JSON','/get','{\"[]\":{\"count\":5,\"page\":3,\"User\":{}}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634890,1564369325432,0,2,'功能符(数组关键词): ①查询User数组,最多5个','JSON','/get','{\"[]\":{\"count\":5,\"User\":{}}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634891,1564369325432,0,2,'功能符(逻辑运算): ③ ! 非运算','JSON','/head','{\"User\":{\"id!{}\":[82001,38710]}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634892,1564369325432,0,2,'功能符(逻辑运算): ② | 或运算','JSON','/head','{\"User\":{\"id|{}\":\">90000,<=80000\"}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634893,1564369325432,0,2,'功能符(逻辑运算): ① & 与运算','JSON','/head','{\"User\":{\"id&{}\":\">80000,<=90000\"}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634894,1564369325432,82001,2,'功能符: 减少 或 去除','JSON','/put/balance','{\r \r \"Privacy\": {\r \"id\": 82001,\r \"balance+\": -100,\r \"_payPassword\": \"123456\"\r },\"tag\": \"Privacy\"\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634895,1564369325432,82001,2,'功能符: 增加 或 扩展','JSON','/put','{\r \"Moment\": {\r \"id\": 15,\r \"praiseUserIdList+\": [\r 82001\r ]\r },\r \"tag\": \"Moment\"\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634896,1564369325432,0,2,'功能符: 新建别名','JSON','/get','{\"Comment\":{\"@column\":\"id,toId:parentId\",\"id\":51}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634897,1564369325432,0,2,'功能符: 正则匹配','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"name~\":\"^[0-9]+$\"}}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634898,1564369325432,0,2,'功能符: 模糊搜索','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"name$\":\"%m%\"}}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634899,1564369325432,0,2,'功能符: 引用赋值','JSON','/get','{\"Moment\":{\r \"userId\":38710\r },\r \"User\":{\r \"id@\":\"/Moment/userId\"\r }}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634900,1564369325432,0,2,'功能符: 远程调用函数','JSON','/get','{ \"Moment\": { \"id\": 301, \"@column\": \"userId,praiseUserIdList\", \"isPraised()\": \"isContain(praiseUserIdList,userId)\" } }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634901,1564369325432,0,2,'功能符: 包含选项范围','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"contactIdList<>\":38710}}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634902,1564369325432,0,2,'功能符: 匹配条件范围','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"id{}\":\"<=80000,>90000\"}}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634903,1564369325432,0,2,'功能符: 查询数组','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{}}}',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634904,1564369325432,0,1,'获取粉丝的动态列表','JSON','/get','{ \"Moment[]\": { \"join\": \"&/User/id@\", \"Moment\": {}, \"User\": { \"id@\": \"/Moment/userId\", \"contactIdList<>\": 82001, \"@column\": \"id\" } } }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634905,1564369325432,82001,3,'get test','JSON','/get','{\r \"User\": {\r \"id\": 82001\r },\r \"[]\": {\r \"Comment\": {\r \"userId@\": \"User/id\"\r }\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634906,1564369325432,0,1,'子查询 WHERE id IN(SELECT userId FROM Comment WHERE momentId=15)','JSON','/get','{\r \"subquery@\": {\r \"from\": \"Comment\",\r \"Comment\": {\r \"momentId\": 15,\r \"@column\": \"userId\"\r }\r },\r \"[]\": {\r \"User\": {\r \"id{}@\": \"subquery\",\r \"@column\": \"id,sex,name\"\r ...',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634907,1564369325432,0,1,'子查询 WHERE EXISTS(SELECT userId FROM Comment WHERE momentId=15)','JSON','/get','{\r \"subquery@\": {\r \"from\": \"Comment\",\r \"Comment\": {\r \"momentId\": 15,\r \"@column\": \"userId\"\r }\r },\r \"[]\": {\r \"User\": {\r \"id}{@\": \"subquery\",\r \"@column\": \"id,sex,name\"\r ...',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634908,1564369325432,82001,3,'关联查询 Comment.userId = User.id','JSON','/get','{\r \"User\": {\r \"id\": 82001\r },\r \"[]\": {\r \"Comment\": {\r \"userId@\": \"User/id\"\r }\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634909,1564369325432,0,3,'get 自定义关键词和远程函数的应用','JSON','/get','{\r \"User\": {\r \"id\": 82001,\r \"@column\": \"contactIdList\",\r \"@value\": 82006,\r \"isContect()\": \"isContain(contactIdList,@value)\"\r }\r }\r /*\r 1、获取User表中的id==82001的数据块;\r 2、获取contactIdList列中的数据...',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634910,1564369325432,0,3,'Comment JOIN User','JSON','/get','{\r \"[]\": {\r \"join\": \"</User/id@\",\r \"Comment\": {\r \"@order\": \"date-\"\r },\r \"User\": {\r \"id@\": \"/Comment/userId\"\r }\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634911,1564369325432,82001,3,'测试查询','JSON','/get','{\r \"User\": {\r \"id\": 82001\r },\r \"[]\": {\r \"Comment\": {\r \"userId@\": \"User/id\"\r }\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634912,1564369325432,82001,3,'get User','JSON','/get','{\r \"User\": {\r \"id\": 82002\r }\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634913,1564369325432,0,3,'去重 DISTINCT','JSON','/get','{\r \"[]\": {\r \"Comment\": {\r \"@column\": \"DISTINCT momentId;count(DISTINCT userId)\",\r \"@group\": \"momentId\"\r }\r },\r \"@explain\": true\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634914,1564369325432,0,3,'热更新 权限控制、请求校验、远程函数 等配置','JSON','/reload','{\r \"type\": \"REQUEST\", // ALL-全部, ACCESS-权限, REQUEST-请求校验, FUNCTION-远程函数\r \"phone\": \"13000082001\",\r \"verify\": \"1234\" //验证码,调用 /post/verify ,type:4 获取\r }',NULL,NULL,'2019-07-29 08:43:18',NULL),(1564483634915,82001,0,2,'功能符:连续范围','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"date%\":\"2017-10-01,2018-10-01\"}}}',NULL,'','2019-07-29 08:43:18',NULL),(1564907459034,82001,0,3,'请求头 Request Header','JSON','/get','{\n \"User\": {\n \"id\": 82001\n },\n \"[]\": {\n \"Comment\": {\n \"userId@\": \"User/id\"\n }\n }\n}',NULL,'Authorization: Basic GERIJ2438R9FH239NW= //取出 /login 接口返回的 token\nOther-Header: test','2019-08-04 08:30:59',NULL),(1567927050590,88888,0,3,'test response hint','JSON','/get','{\n \"[]\": {\n \"count\": 5,\n \"page\": 0,\n \"Moment\": {\n \"@order\": \"date+\"\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"User[]\": {\n \"count\": 10,\n \"query\": 2,\n \"User\": {\n \"id{}@\": \"[]/Moment/praiseUserIdList\",\n \"@column\": \"id,name\"\n }\n },\n \"Comment-userId[]\": {\n \"count\": 6,\n \"query\": 2,\n \"Comment\": {\n \"@order\": \"date+\",\n \"momentId@\": \"[]/Moment/id\"\n }\n },\n \"praiseCount@\": \"/User[]/total\",\n \"commentCount@\": \"/Comment-userId[]/total\"\n }\n}',NULL,'','2019-09-08 07:17:30',NULL),(1572174664812,88888,0,3,'部分功能总览','JSON','/get','{\n \"[]\": {\n \"count\": 5,\n \"page\": 0,\n \"join\": \"</User/id@\",\n \"Moment\": {\n \"@order\": \"date+\",\n \"@column\": \"id,userId;date_format(date,%Y-%m-%d %H:%m)\",\n \"@explain\": true,\n \"content~\": \"o\",\n \"userId!\": 82001,\n \"@combine\": \"userId!,content~\"\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"[]\": {\n \"count\": 6,\n \"join\": \"@/User/id@\",\n \"Comment\": {\n \"@order\": \"date-\",\n \"momentId@\": \"[]/Moment/id\"\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"DISTINCT id,name;concat(\'%\',name,\'%\'):concat\"\n }\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 5\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"page\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"join\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"Moment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@order\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 42\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"content~\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"userId!\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"@combine\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n }\n }\n ]\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 14\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 12\n ]\n }\n }\n ]\n },\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 6\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"join\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@order\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"momentId@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 12\n ]\n }\n }\n ]\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 44\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2019-10-27 11:11:04',NULL),(1583173736243,88888,0,3,'批量修改-每项单独设置','JSON','/put','{\n \"Comment[]\": [\n {\n \"id\": 1581271679641,\n \"content\": \"test\"\n },\n {\n \"id\": 1581314845034,\n \"momentId\": 12,\n \"date\": \"2020-02-02\"\n }\n ],\n \"tag\": \"Comment:[]\"\n}',NULL,'','2020-03-02 18:28:56',NULL),(1583173841064,88888,0,3,'批量新增-每项单独设置','JSON','/post','{\n \"Moment[]\": [\n {\n \"content\": \"测试新增动态\"\n },\n \n {\n \"pictureList\": [\n \"http://abc.com/3.png\"\n ]\n },\n {\n \"content\": \"test\",\n \"praiseUserIdList\": [\n 82002\n ],\n \"pictureList\": [\n \"http://abc.com/2.png\"\n ]\n }\n ],\n \"tag\": \"Moment:[]\"\n}',NULL,'','2020-03-02 18:30:41',NULL),(1583415965740,99999,0,3,'where子查询中多表关联筛选','JSON','/get','{\n \"User\": {\n \"id@\": {\n \"from\": \"Comment\",\n \"join\": \"&/Moment/id@\",\n \"Comment\": {\n \"@column\": \"min(userId)\"\n },\n \"Moment\": {\n \"id@\": \"/Comment/momentId\",\n \"@column\":\"\"\n }\n }\n },\n \"@explain\": true\n}',NULL,'','2020-03-05 13:46:05',NULL),(1583510816154,99999,0,3,'复杂的子查询与关联查询','JSON','/get','{\n \"sql@\": {\n \"from\": \"Comment\",\n \"join\": \"&/Comment:to/userId@\",\n \"Comment\": {\n \"@column\": \"userId\",\n \"content~\": \"a\"\n },\n \"Comment:to\": {\n \"userId@\": \"/Comment/userId\",\n \"@column\": \"\",\n \"content~\": \"j\"\n }\n },\n \"[]\": {\n \"Moment\": {\n \"userId{}@\": {\n \"from\": \"User\",\n \"User\": {\n \"id{}@\": \"sql\",\n \"@column\": \"id\"\n }\n }\n }\n },\n \"@explain\": true\n}',NULL,'','2020-03-06 16:06:56',NULL),(1583513151839,99999,0,3,'类似12306根据两站来查火车班次','JSON','/get','{ //类似 12306 根据始发站和到达站来过滤火车班次,班次和线路多对一,线路和站点多对多\n \"sql@\": {\n \"from\": \"Comment\",\n \"join\": \"&/Comment:to/userId@\",\n \"Comment\": { //假装是始发站\n \"@column\": \"userId\",\n \"content~\": \"a\" //假装是站点名\n },\n \"Comment:to\": { //假装是终点站\n \"userId@\": \"/Comment/userId\",\n \"@column\": \"\",\n \"content~\": \"j\" //假装是站点名\n }\n },\n \"[]\": {\n \"Moment\": { //假装是班次\n \"userId{}@\": {\n \"from\": \"User\",\n \"User\": { //假装是线路\n \"id{}@\": \"sql\",\n \"@column\": \"id\"\n }\n }\n }\n },\n \"@explain\": true\n}',NULL,'','2020-03-06 16:45:51',NULL),(1584113823081,2000,0,3,'自连接返回数据错误','JSON','/get','{\n \"[]\": {\n \"join\": \"&/Comment:to/id@\",\n \"Comment\": {}, //解决方案:加 \"@column\": \"id,toId\"\n \"Comment:to\": {\n \"id@\": \"/Comment/toId\",\n \"id>\": 0\n }\n },\n \"@explain\": true\n}\n/*\n 这是一个 3.3.0, 3.8.6-4.0.0 都发现存在的 bug,\n 事实上也是自从支持自连接(副表 Comment AS `to`)以来就存在。\n 原因是对副表生成的 SQL 里表名和主表表名一样,导致 \n AbstractSQLExecutor.onPutColumn 中 299 行\n item = onPutColumn(config, rs, rsmd, index, item, i, config.isExplain() == false && hasJoin && i >= viceColumnStart ? childMap : null);\n 488 行 if 走了第一个分支(应该走 else 来把副表的值存进 childMap)\n finalTable = table;\n 从而使 JOIN 查出来的主副表全部字段都在 521 行\n finalTable.put(lable, getValue(config, rs, rsmd, tablePosition, table, columnIndex, lable, childMap));\n 由于主副表有相同字段,导致后面 put 的副表字段替代了前面 put 的主表同名字段。\n \n 除了以上折中方案,还可以判断 AS 的副表别名来做区分,put 进 childMap。\n*/',NULL,'','2020-03-13 15:37:03',NULL),(1584117747580,2000,0,3,'全局默认字段失效','JSON','/login','{\n \"type\": 0,\n \"phone\": \"13000082001\",\n \"password\": \"123456\",\n \"version\": 1,\n \"remember\": false,\n \"format\": true, //失效\n \"defaults\": { //失效\n \"format\": true,\n \"@explain\": true,\n \"@database\": \"POSTGRESQL\",\n \"@schema\": \"sys\"\n }\n}',NULL,'','2020-03-13 16:42:27',NULL),(1584118278602,2000,0,3,'SIDE JOIN 实现可能有误','JSON','/get','{\n \"[]\": {\n \"join\": \"^/User/id@\",\n \"Comment\": {\n \"momentId\": 12\n },\n \"User\": {\n \"id@\": \"/Comment/toId\",\n \"sex\": 0\n }\n },\n \"@explain\": true\n}\n/*\n SIDE JOIN 实现可能有误,并且性能不大好。\n Comment 的条件 A: momentId=12\n User 的条件 B: sex=0\n 理论上 NOT(A AND B) 等价于(A AND NOT B) OR (B AND NOT A) \n 目前使用的是后者,当我想要改成前者,分别用对应的 SQL 放数据库执行,\n 发现结果集不一样!\n SELECT `Comment`.*, `User`.* FROM `sys`.`Comment` AS `Comment` INNER JOIN `sys`.`apijson_user` AS `User` ON `User`.`id` = `Comment`.`toId` WHERE ( NOT ( `Comment`.`momentId` = 12 AND `User`.`sex` = 0 ) ) LIMIT 10 OFFSET 0\n SELECT `Comment`.*, `User`.* FROM `sys`.`Comment` AS `Comment` INNER JOIN `sys`.`apijson_user` AS `User` ON `User`.`id` = `Comment`.`toId` WHERE ( ( ( (`Comment`.`momentId` = 12) ) AND NOT ( ( (`User`.`sex` = 0) ) ) ) OR ( ( (`User`.`sex` = 0) ) AND NOT ( ( (`Comment`.`momentId` = 12) ) ) ) ) LIMIT 10 OFFSET 0\n*/',NULL,'','2020-03-13 16:51:18',NULL),(1584120971519,2020,0,3,'新增 WITH AS','JSON','/get','{ //看看关注的人最近有什么动态(分享、评论)\n \"sql@\": {\n \"with\": true, //生成 WITH(SELECT id ...) AS `sql`\n \"from\": \"User\",\n \"User\": {\n \"@column\": \"id\",\n \"@role\": \"CONTACT\"\n }\n },\n \"Moment[]\": {\n \"Moment\": {\n \"userId{}@\": \"sql\",\n \"@order\": \"date-\"\n }\n },\n \"Comment[]\": {\n \"Comment\": {\n \"userId{}@\": \"sql\",\n \"@order\": \"date-\"\n }\n },\n \"@explain\": true\n}',NULL,'','2020-03-13 17:36:11',NULL),(1584120990337,2020,0,3,'新增 UNION','JSON','/get','{\n \"[]\": {\n \"User\": {\n \"name~\": \"a\",\n \"tag~\": \"a\",\n \"@combine\": \"name~,tag~\", \n \"@union\": 1 //将 @combine 中的 N 个 OR 连接字段用 UNION 替换,原本一条 SQL 需要拆分成 N 条 SQL 来 UNION \n }\n },\n \"@explain\": true\n}',NULL,'','2020-03-13 17:36:30',NULL),(1584121026469,2020,0,3,'新增分布式执行','JSON','/get','{\n \"User\": {\n \"@url\": \"http://apijson.cn:8080/get\" //转发给其它服务器执行\n },\n \"[]\": {\n \"Comment\": {\n \"userId@\": \"User/id\"\n }\n },\n \"@explain\": true\n}',NULL,'','2020-03-13 17:37:06',NULL),(1589859330200,1589859275450,1589859275450,3,'login','JSON','/login','{\n \"type\": 0,\n \"phone\": \"13525569073\",\n \"password\": \"123456\",\n \"version\": 1,\n \"remember\": false,\n \"format\": false,\n \"defaults\": {\n \"@database\": \"MYSQL\",\n \"@schema\": \"sys\"\n }\n}',NULL,'','2020-05-19 03:35:30',NULL),(1592545943722,1592544818327,1592544225995,3,'login','JSON','/login','{\n \"body\": {\n \"personName\": \"杨家湖超限班长\",\n \"Authenticated\": true,\n \"UserName\": \"yjhcxbz\",\n \"personMobile\": \"\",\n \"iconList\": [\n \"PTCL\"\n ],\n \"Token\": \"3dba223a3a9046f7abfffdddc9f93936\",\n \"userOrgName\": \"杨家湖收费站\",\n \"userId\": \"297edfab72c14e940172c1552d4b0002\",\n \"userOrgId\": \"009429986\"\n },\n \"head\": {\n \"clientId\": null,\n \"ret\": {\n \"retCode\": \"000000\",\n \"retMsg\": null\n },\n \"timestamp\": \"2020-06-19 11:46:52\"\n }\n}\n \n',NULL,'','2020-06-19 05:52:23',NULL),(1592546007877,1592544818327,1592544225995,3,'login11','JSON','/login','{\n \"body\": {\n \"personName\": \"杨家湖超限班长\",\n \"Authenticated\": true,\n \"UserName\": \"yjhcxbz\",\n \"personMobile\": \"\",\n \"iconList\": [\n \"PTCL\"\n ],\n \"Token\": \"3dba223a3a9046f7abfffdddc9f93936\",\n \"userOrgName\": \"杨家湖收费站\",\n \"userId\": \"297edfab72c14e940172c1552d4b0002\",\n \"userOrgId\": \"009429986\"\n },\n \"head\": {\n \"clientId\": null,\n \"ret\": {\n \"retCode\": \"000000\",\n \"retMsg\": null\n },\n \"timestamp\": \"2020-06-19 11:46:52\"\n }\n}\n \n',NULL,'','2020-06-19 05:53:27',NULL),(1593973492312,1593972128383,0,3,'login1','JSON','/login','{\n \"type\": 0,\n \"phone\": \"13000082002\",\n \"password\": \"123456\",\n \"version\": 1,\n \"remember\": false,\n \"format\": false,\n \"defaults\": {\n \"@database\": \"MYSQL\",\n \"@schema\": \"sys\"\n }\n}',NULL,'','2020-07-05 18:24:52',NULL),(1593973606841,1593972128383,0,3,'get1','JSON','/get','{\n \"User\": {\n \"id\": 82001\n },\n \"[]\": {\n \"Comment\": {\n \"userId@\": \"User/id\"\n }\n }\n}\n \n',NULL,'','2020-07-05 18:26:46',NULL),(1593973707836,1593972128383,0,3,'get1','JSON','/get','{\n \"User\": {\n \"id\": 82001\n },\n \"[]\": {//ooo\n \"Comment\": {\n \"userId@\": \"User/id\"\n }\n }\n}\n \n',NULL,'','2020-07-05 18:28:27',NULL),(1596002514234,1596002416764,0,3,'get','JSON','/get','{\n \"type\": 0,\n \"phone\": \"13000082002\",\n \"password\": \"123456\",\n \"version\": 1,\n \"remember\": false,\n \"format\": false,\n \"defaults\": {\n \"@database\": \"MYSQL\",\n \"@schema\": \"sys\"\n }\n}\n \n',NULL,'','2020-07-29 06:01:54',NULL),(1596439230051,1596439187212,0,3,'login','JSON','/login','{\n \"type\": 0,\n \"phone\": \"13000082002\",\n \"password\": \"123456\",\n \"version\": 1,\n \"remember\": false,\n \"format\": false,\n \"defaults\": {\n \"@database\": \"MYSQL\",\n \"@schema\": \"sys\"\n }\n}',NULL,'','2020-08-03 07:20:30',NULL),(1602231365650,2020,0,3,'JOIN 对象支持包含多个 @ 引用赋值 的字段','JSON','/get','{ // 自动合并 ON Method.class = `Method:group`.class AND Method.package = `Method:group`.package\n \"Method[]\": {\n \"count\": 0,\n \"join\": \"@/Method/class@,@/Method/package@\",\n \"Method:group\": {\n \"@column\": \"DISTINCT class\",\n \"@order\": \"class+\",\n \"@having\": \"length(class)>0\",\n \"package*~\": null,\n \"class*~\": null,\n \"@combine\": null\n },\n \"Method\": {\n \"package@\": \"[]/Method/package\",\n \"class@\": \"/Method:group/class\",\n \"@column\": \"class,genericClassArgs\",\n \"@order\": \"class+\",\n \"arguments()\": \"getMethodArguments(genericClassArgs)\"\n }\n }\n}\n \n',NULL,'','2020-10-09 08:16:05',NULL),(1607881786667,99999,0,3,'特殊符号','JSON','/get','{\n \"Comment[]\": {\n \"Comment\": {\n \"@column\": \"date,content;concat(id,^,\'<\',>?|,toId,&,{},userId,LES+=)\",\n \"@having\": \"to_days(date)%7=0\",\n \"@raw\": \"@column\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 65\n ]\n },\n \"@raw\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"Comment[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 56\n ]\n },\n \"@having\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 17\n ]\n },\n \"@raw\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2020-12-13 17:49:46',NULL),(1607881843319,99999,0,3,'复杂的 @having','JSON','/get','{\n \"Comment[]\": {\n \"Comment\": {\n \"@having\": \"concat(id,\'^\',\'<\',>?|,\'&\',{},:[],DROP!)<=8^3*3.14-7/4+50\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@having\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 56\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2020-12-13 17:50:43',NULL),(1607881872995,99999,0,3,'最近7天','JSON','/get','{\n \"Comment\": {\n \"@having\": \"to_days(now())-to_days(`date`)<=7\",\n \"@raw\": \"@having\"\n },\n \"@explain\": true\n}\n \n',NULL,'','2020-12-13 17:51:12',NULL),(1607881932306,99999,0,3,'@raw 自定义 SQL 片段','JSON','/get','{ // 类似 12306 根据始发站和到达站来过滤火车班次,班次和线路多对一,线路和站点多对多\n \"sql@\": {\n \"from\": \"Comment\",\n \"join\": \"&/Comment:to/userId@\",\n \"Comment\": { // 假装是始发站\n \"@column\": \"userId\",\n \"content~\": \"a\", // 假装是站点名\n \"momentId>\": \"to.momentId\",\n \"@raw\": \"momentId>\"\n },\n \"Comment:to\": { // 假装是终点站\n \"userId@\": \"/Comment/userId\",\n \"@column\": \"\",\n \"content~\": \"j\" // 假装是站点名\n }\n },\n \"[]\": {\n \"Moment\": { // 假装是班次\n \"userId{}@\": {\n \"from\": \"User\",\n \"User\": { // 假装是线路\n \"id{}@\": \"sql\",\n \"@column\": \"id\"\n }\n }\n }\n },\n \"@explain\": true\n}\n \n',NULL,'','2020-12-13 17:52:12',NULL),(1608995763278,99999,0,3,'SQL 函数与表达式','JSON','/get','{\n \"Comment[]\": {\n \"Comment\": {\n \"@column\": \"userId;(toId)%3=0;group_concat(DISTINCT \'+\',id)\",\n \"@group\": \"userId,toId\",\n \"@having\": \"max(id)>100;(userId)%5>=1\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 47\n ]\n },\n \"@having\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 25,\n 23\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2020-12-26 15:16:03',NULL),(1612031683609,88888,0,2,'视图表 ViewTable 查单条记录 /get','JSON','/get','{\n \"ViewTable\": {\"id\": 82001}\n}\n \n',NULL,'','2019-07-29 08:43:18',NULL),(1612031683610,88888,0,2,'视图表 ViewTable 查列表带条件','JSON','/get','{\n \"ViewTable[]\": {\n \"ViewTable\": {\n \"toId\": 0,\n \"content~\": \"a\"\n }\n }\n}\n \n',NULL,'','2019-07-29 08:43:18',NULL),(1612031683611,88888,0,2,'视图表 ViewTable INNER JOIN Moment','JSON','/get','{\n \"[]\": {\n \"join\": \"&/Moment/id@\",\n \"ViewTable\": {\"toId\":0},\n \"Moment\": {\"content~\":\"a\",\n \"id@\": \"/ViewTable/momentId\"\n }\n }\n}\n \n',NULL,'','2019-07-29 08:43:18',NULL),(1612031683612,88888,0,2,'视图表 ViewTable 子查询','JSON','/get','{\n \"ViewTable[]\": {\n \"ViewTable\": {\n \"momentId{}@\": {\n \"from\": \"Moment\",\n \"Moment\": {\n \"@column\": \"id\"\n }\n }\n }\n }\n}\n \n',NULL,'','2019-07-29 08:43:18',NULL),(1612031683613,88888,0,2,'视图表 ViewTable LEFT JOIN Moment','JSON','/get','{\n \"[]\": {\n \"join\": \"</Moment/id@\",\n \"ViewTable\": {},\n \"Moment\": {\n \"id@\": \"/ViewTable/momentId\"\n }\n }\n}\n \n',NULL,'','2019-07-29 08:43:18',NULL),(1612031683614,88888,0,2,'全局关键词','JSON','/get','{\n \"[]\": {\n \"count\": 3,\n \"Moment\": {},\n \n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name,head\"\n },\n \"[]\": {\n \"count\": 6,\n \"Comment\": {\n \"momentId@\": \"[]/Moment/id\"\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id,name\"\n }\n }\n },\n \"format\": false,\n \"tag\": \"Moment[]\",\n \"version\": 0,\n \"@role\": \"CIRCLE\",\n \"@database\": \"MYSQL\",\n \"@schema\": \"sys\",\n \"@explain\": true,\n \"@cache\": 0\n}\n \n',NULL,'','2019-07-29 08:43:18',NULL),(1612031683615,88888,0,2,'功能符:连续范围','JSON','/get','{\"User[]\":{\"count\":3,\"User\":{\"date%\":\"2017-10-01,2018-10-01\"}}}',NULL,'','2019-07-29 08:43:18',NULL),(1627003810321,82003,0,3,'关联查询','JSON','/get','{\n \"[]\": {\n \"Moment\": {\n \"@column\": \"id,date,userId\",\n \"id\": 12\n },\n \"User\": {\n \"id@\": \"/Moment/userId\",\n \"@column\": \"id,name\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Moment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 14\n ]\n },\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 12\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 14\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-07-23 01:30:10',NULL),(1627750805078,88888,0,3,'用远程函数校验参数-非法参数','JSON','/put','{\n \"Moment\": {\n \"id\": 235,\n \"pictureList\": [\n \"a\",\n \"http://abc.cn/1.png\"\n ]\n },\n \"tag\": \"Moment\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Moment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 235\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"pictureList\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19,\n 1\n ]\n }\n ]\n }\n }\n ]\n },\n \"tag\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n }\n }\n ]\n}','','2021-07-31 17:00:05',NULL),(1627755287025,82001,0,3,'多数据源同时使用','JSON','/get','{\n \"@datasource\": \"DRUID\",\n \"User\": {\n \"id\": 82001,\n \"@datasource\": \"HIKARICP\",\n \"@database\": \"POSTGRESQL\"\n },\n \"[]\": {\n \"Comment\": {\n \"userId@\": \"User/id\"\n },\n \"Moment\": {\n \"@datasource\": \"DRUID\",\n \"id@\": \"/Comment/momentId\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@datasource\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"DRUID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"@datasource\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"HIKARICP\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"@database\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"POSTGRESQL\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n }\n }\n ]\n },\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"userId@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n }\n }\n ]\n },\n \"Moment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@datasource\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"DRUID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 17\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2021-07-31 18:14:47',NULL),(1627755325870,88888,0,3,'多数据源同时使用','JSON','/get','{\n \"@datasource\": \"DRUID\",\n \"User\": {\n \"id\": 82001,\n \"@datasource\": \"HIKARICP\",\n \"@database\": \"POSTGRESQL\"\n },\n \"[]\": {\n \"Comment\": {\n \"userId@\": \"User/id\"\n },\n \"Moment\": {\n \"@datasource\": \"DRUID\",\n \"id@\": \"/Comment/momentId\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@datasource\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"DRUID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"@datasource\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"HIKARICP\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"@database\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"POSTGRESQL\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n }\n }\n ]\n },\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"userId@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n }\n }\n ]\n },\n \"Moment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@datasource\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"DRUID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 17\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2021-07-31 18:15:25',NULL),(1631668437509,1631617361403,0,3,'2021-09-15 09:12 ','JSON','/resource/apijson/get','{}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {}\n ]\n}','','2021-09-15 01:13:57',NULL),(1631669045947,1631617361403,0,3,'汇聚资源新增','JSON','/resource/apijson/post','{\n \"ResourceId-()\": \"getResourceId()\",\n \"username-()\": \"encryption(root)\",\n \"password-()\": \"encryption(123456)\",\n \"ResourceInfo\": {\n \"RESOURCE_ID@\": \"ResourceId\",\n \"RESOURCE_NAME\": \"测试资源1\",\n \"RESOURCE_TYPE\": \"1\",\n \"RESOURCE_SERVE\": \"0\",\n \"NET_ID\": \"1\",\n \"UPDATE_FREQUENCY\": \"1\",\n \"UPDATE_FREQUENCY_UNIT\": \"H\",\n \"UNIT_ID\": \"1\",\n \"COMPANY_ID\": \"2\",\n \"CONTACT_PERSON_ID\": \"1\",\n \"DESC\": \"测试\",\n \"SECURITY_LEVEL\": 5,\n \"IS_SPACE_DATA\": 1,\n \"SYSTEM_NAME\": \"六合一平台\",\n \"UNIT_CONTACT_PERSON\": \"郄\",\n \"AREA_SCOPE\": \"1,2\",\n \"RESOURCE_ID\": null\n },\n \"ResourceDb\": {\n \"DB_TYPE\": \"1\",\n \"DB_ADDRESS\": \"58.210.9.133\",\n \"DB_NAME\": \"public\",\n \"DB_URI\": \"jdbc:postgresql://101.133.229.133:5432/postgres\",\n \"TABLE_NAME\": \"t_car_pass_record\",\n \"DB_USERNAME@\": \"username\",\n \"DB_PASSWORD@\": \"password\"\n },\n \"ResourceTag[]\": [\n {\n \"RESOURCE_TAG_ID\": \"1\",\n \"RESOURCE_INFO_ID@\": \"ResourceId\"\n },\n {\n \"RESOURCE_TAG_ID\": \"2\",\n \"RESOURCE_INFO_ID@\": \"ResourceId\"\n }\n ]\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID\": {\n \"notnull\": false,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"RESOURCE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_SERVE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"NET_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UPDATE_FREQUENCY\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UPDATE_FREQUENCY_UNIT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"H\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UNIT_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"COMPANY_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"CONTACT_PERSON_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"SECURITY_LEVEL\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 5\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"IS_SPACE_DATA\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"SYSTEM_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"UNIT_CONTACT_PERSON\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"AREA_SCOPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n },\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n }\n }\n ]\n },\n \"ResourceTag[]\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_TAG_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_INFO_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24,\n 10\n ]\n }\n }\n ]\n }\n ]\n },\n \"ResourceId-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n },\n \"username-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n },\n \"password-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 18\n ]\n },\n \"ResourceDb\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"DB_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DB_ADDRESS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 12\n ]\n },\n \"DB_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"DB_URI\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 47\n ]\n },\n \"TABLE_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 17\n ]\n },\n \"DB_USERNAME@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"DB_PASSWORD@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-09-15 01:24:05',NULL),(1631670171091,1631617361403,0,3,'资源详情','JSON','/resource/apijson/get','{\n \"ResourceInfo\": {\n \"id\": \"1631608580403\"\n },\n \"DataUnit:ParentUnit\": {\n \"id@\": \"ResourceInfo/UNIT_ID\"\n },\n \"DataUnit:CompanyUnit\": {\n \"id@\": \"ResourceInfo/COMPANY_ID\"\n },\n \"ContactPerson\": {\n \"id@\": \"ResourceInfo/CONTACT_PERSON_ID\"\n },\n \"[]\": {\n \"ResourceTag\": {\n \"RESOURCE_INFO_ID@\": \"ResourceInfo/RESOURCE_ID\"\n },\n \"Tag\": {\n \"id@\": \"[]/ResourceTag/RESOURCE_TAG_ID\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n },\n \"DataUnit:ParentUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 20\n ]\n }\n }\n ]\n },\n \"DataUnit:CompanyUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 23\n ]\n }\n }\n ]\n },\n \"ContactPerson\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 30\n ]\n }\n }\n ]\n },\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceTag\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_INFO_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n }\n }\n ]\n },\n \"Tag\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 30\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-09-15 01:42:51',NULL),(1631757289713,1631617361403,0,3,'资源列表查询','JSON','/resource/apijson/get','{\n \"[]\": {\n \"ResourceInfo:GROUP\": {\n \"RESOURCE_NAME$\": \"%1%\",\n \"@column\": \"RESOURCE_ID;max(REVISION):MAX_REVISION\",\n \"@group\": \"RESOURCE_ID\",\n \"@order\": \"RESOURCE_ID\"\n },\n \"ResourceInfo\": {\n \"RESOURCE_ID@\": \"[]/ResourceInfo:GROUP/RESOURCE_ID\",\n \"REVISION@\": \"[]/ResourceInfo:GROUP/MAX_REVISION\"\n },\n \"DataUnit:ParentUnit\": {\n \"id@\": \"[]/ResourceInfo/UNIT_ID\"\n },\n \"DataUnit:CompanyUnit\": {\n \"id@\": \"[]/ResourceInfo/COMPANY_ID\"\n },\n \"ContactPerson\": {\n \"id@\": \"[]/ResourceInfo/CONTACT_PERSON_ID\"\n },\n \"[]\": {\n \"ResourceTag\": {\n \"RESOURCE_INFO_ID@\": \"[]/ResourceInfo/RESOURCE_ID\"\n },\n \"Tag\": {\n \"id@\": \"[]/[]/ResourceTag/RESOURCE_TAG_ID\"\n }\n },\n \"query\": 2,\n \"page\": 0,\n \"count\": 10\n },\n \"total@\": \"/[]/total\",\n \"page@\": \"/[]/page\",\n \"info@\": \"/[]/info\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInfo:GROUP\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 38\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_ID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n },\n \"@order\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_ID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n },\n \"RESOURCE_NAME$\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n }\n }\n ]\n },\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 33\n ]\n },\n \"REVISION@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 34\n ]\n }\n }\n ]\n },\n \"DataUnit:ParentUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 23\n ]\n }\n }\n ]\n },\n \"DataUnit:CompanyUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 26\n ]\n }\n }\n ]\n },\n \"ContactPerson\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 33\n ]\n }\n }\n ]\n },\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceTag\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_INFO_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 27\n ]\n }\n }\n ]\n },\n \"Tag\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 33\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"query\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 2\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"page\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 10\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n },\n \"total@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"page@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"info@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n}','','2021-09-16 01:54:49',NULL),(1631771103135,1631617361403,0,3,'查询同一资源各版本列表','JSON','/resource/apijson/get','{\n \"[]\": {\n \"ResourceInfo\": {\n \"RESOURCE_ID\": \"1\",\n \"@order\": \"REVISION-\"\n },\n \"DataUnit:ParentUnit\": {\n \"id@\": \"[]/ResourceInfo/UNIT_ID\"\n },\n \"DataUnit:CompanyUnit\": {\n \"id@\": \"[]/ResourceInfo/COMPANY_ID\"\n },\n \"ContactPerson\": {\n \"id@\": \"[]/ResourceInfo/CONTACT_PERSON_ID\"\n },\n \"[]\": {\n \"ResourceTag\": {\n \"RESOURCE_INFO_ID@\": \"[]/ResourceInfo/RESOURCE_ID\",\n \"REVISION@\": \"[]/ResourceInfo/REVISION\"\n },\n \"Tag\": {\n \"id@\": \"[]/[]/ResourceTag/RESOURCE_TAG_ID\"\n }\n },\n \"query\": 2,\n \"page\": 0,\n \"count\": 10\n },\n \"total@\": \"/[]/total\",\n \"page@\": \"/[]/page\",\n \"info@\": \"/[]/info\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"@order\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n }\n }\n ]\n },\n \"DataUnit:ParentUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 23\n ]\n }\n }\n ]\n },\n \"DataUnit:CompanyUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 26\n ]\n }\n }\n ]\n },\n \"ContactPerson\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 33\n ]\n }\n }\n ]\n },\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceTag\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_INFO_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 27\n ]\n },\n \"REVISION@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n }\n }\n ]\n },\n \"Tag\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 33\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"query\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 2\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"page\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 10\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n },\n \"total@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"page@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"info@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n}','','2021-09-16 05:45:03',NULL),(1631773493501,1631617361403,0,3,'上传字典表','JSON','/resource/apijson/post','{\n \"SysDict[]\": [\n {\n \"TYPE\": \"RESOURCE_SERVE\",\n \"DICT_ID\": \"RESOURCE_SERVE_0\",\n \"LABEL\": \"汇聚资源\",\n \"VALUE\": \"0\",\n \"SORT\": \"1\",\n \"DESCRIPTION\": \"资源供应类型\"\n },\n {\n \"TYPE\": \"RESOURCE_SERVE\",\n \"DICT_ID\": \"RESOURCE_SERVE_1\",\n \"LABEL\": \"落地资源\",\n \"VALUE\": \"1\",\n \"SORT\": \"2\",\n \"DESCRIPTION\": \"资源供应类型\"\n }\n ]\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SysDict[]\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_SERVE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 14\n ]\n },\n \"DICT_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_SERVE_0\",\n \"RESOURCE_SERVE_1\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n },\n \"LABEL\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"VALUE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"SORT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DESCRIPTION\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n }\n }\n ]\n }\n ]\n }\n }\n ]\n}','','2021-09-16 06:24:53',NULL),(1631775393342,1631617361403,0,3,'字典表查询','JSON','/resource/apijson/get','{\n \"SysDict[]\": {\n \"SysDict\": {\n \"TYPE\": \"RESOURCE_SERVE\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SysDict[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SysDict\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_SERVE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 14\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-09-16 06:56:33',NULL),(1631842712990,1631617361403,0,3,'删除资源','JSON','/resource/apijson/delete','{\n \"ResourceInfo\": {\n \"id\": \"1631787701342\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-09-17 01:38:32',NULL),(1631842798921,1631617361403,0,3,'资源状态变更','JSON','/resource/apijson/put','{\n \"ResourceInfo\": {\n \"id\": \"1631788768897\",\n \"RESOURCE_STATUS\": 1\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"RESOURCE_STATUS\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2021-09-17 01:39:58',NULL),(1632301360926,1631617361403,0,3,'落地资源新增','JSON','/resource/apijson/post','{\n \"ResourceId-()\": \"getResourceId()\",\n \"username-()\": \"encryption(root)\",\n \"password-()\": \"encryption(123456)\",\n \"ResourceInfo\": {\n \"RESOURCE_ID@\": \"ResourceId\",\n \"RESOURCE_NAME\": \"停车场落地数据\",\n \"RESOURCE_TYPE\": \"0\",\n \"RESOURCE_SERVE\": \"1\",\n \"NET_ID\": \"1\",\n \"UPDATE_FREQUENCY\": \"1\",\n \"UPDATE_FREQUENCY_UNIT\": \"H\",\n \"DESC\": \"落地资源\",\n \"SECURITY_LEVEL\": 5,\n \"IS_SPACE_DATA\": 1,\n \"AREA_SCOPE\": \"1,2\"\n },\n \"ResourceDb\": {\n \"DB_TYPE\": \"1\",\n \"DB_ADDRESS\": \"58.210.9.133\",\n \"DB_NAME\": \"public\",\n \"DB_URI\": \"jdbc:postgresql://101.133.229.133:5432/postgres\",\n \"TABLE_NAME\": \"t_car_pass_record\",\n \"DB_USERNAME@\": \"username\",\n \"DB_PASSWORD@\": \"password\"\n },\n \"LinkInfo[]\": [\n {\n \"UP_NODE_ID\": \"1438447993332600833\",\n \"DOWN_NODE_ID@\": \"ResourceId\",\n \"UP_NODE_REVISION\": \"1\",\n \"DOWN_NODE_REVISION\": \"1\"\n }\n ],\n \"ResourceTag[]\": [\n {\n \"RESOURCE_TAG_ID\": \"1\",\n \"RESOURCE_INFO_ID@\": \"ResourceId\"\n },\n {\n \"RESOURCE_TAG_ID\": \"2\",\n \"RESOURCE_INFO_ID@\": \"ResourceId\"\n }\n ]\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceId-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n },\n \"username-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n },\n \"password-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 18\n ]\n },\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"RESOURCE_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n },\n \"RESOURCE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_SERVE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"NET_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UPDATE_FREQUENCY\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UPDATE_FREQUENCY_UNIT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"H\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"SECURITY_LEVEL\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 5\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"IS_SPACE_DATA\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"AREA_SCOPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n }\n }\n ]\n },\n \"ResourceDb\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"DB_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DB_ADDRESS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 12\n ]\n },\n \"DB_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"DB_URI\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 47\n ]\n },\n \"TABLE_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 17\n ]\n },\n \"DB_USERNAME@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"DB_PASSWORD@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n },\n \"LinkInfo[]\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"UP_NODE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"DOWN_NODE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"UP_NODE_REVISION\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DOWN_NODE_REVISION\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n }\n }\n ]\n }\n ]\n },\n \"ResourceTag[]\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_TAG_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_INFO_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n }\n }\n ]\n }\n ]\n }\n }\n ]\n}','','2021-09-22 09:02:40',NULL),(1633674327218,1631617361403,0,3,'资源详情','JSON','/resource/apijson/get','{\n \"ResourceInfo\": {\n \"ID\": \"1632885190990\"\n },\n \"DataUnit:ParentUnit\": {\n \"ID@\": \"ResourceInfo/UNIT_ID\"\n },\n \"DataUnit:CompanyUnit\": {\n \"ID@\": \"ResourceInfo/COMPANY_ID\"\n },\n \"ContactPerson\": {\n \"ID@\": \"ResourceInfo/CONTACT_PERSON_ID\"\n },\n \"ResourceDb:数据库\": {\n \"RESOURCE_ID@\": \"ResourceInfo/RESOURCE_ID\",\n \"REVISION@\": \"ResourceInfo/REVISION\"\n },\n \"FileAttachment[]\": {\n \"ResourceFile\": {\n \"RESOURCE_ID@\": \"ResourceInfo/RESOURCE_ID\",\n \"REVISION@\": \"ResourceInfo/REVISION\"\n },\n \"FileAttachment\": {\n \"ID@\": \"/ResourceFile/FILE_ATTACHMENT_ID\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n },\n \"DataUnit:ParentUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 20\n ]\n }\n }\n ]\n },\n \"DataUnit:CompanyUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 23\n ]\n }\n }\n ]\n },\n \"ContactPerson\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 30\n ]\n }\n }\n ]\n },\n \"ResourceDb:数据库\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"REVISION@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 21\n ]\n }\n }\n ]\n },\n \"FileAttachment[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceFile\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"REVISION@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 21\n ]\n }\n }\n ]\n },\n \"FileAttachment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 32\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-10-08 06:25:27',NULL),(1633681667093,1631617361403,0,3,'资源新增-消息队列','JSON','/resource/apijson/post','{\n \"ResourceId-()\": \"getResourceId()\",\n \"ResourceInfo\": {\n \"RESOURCE_ID@\": \"ResourceId\",\n \"RESOURCE_NAME\": \"警务通gps数据\",\n \"RESOURCE_TYPE\": \"1\",\n \"RESOURCE_SERVE\": \"1\",\n \"NET_ID\": \"1\",\n \"UPDATE_FREQUENCY\": \"1\",\n \"UPDATE_FREQUENCY_UNIT\": \"H\",\n \"DESC\": \"落地资源\",\n \"SECURITY_LEVEL\": 5,\n \"IS_SPACE_DATA\": 1,\n \"AREA_SCOPE\": \"1,2\"\n },\n \"ResourceTopic\": {\n \"RESOURCE_ID@\": \"ResourceId\",\n \"QUEUE_TYPE\": \"0\",\n \"QUEUE_BROKER_LIST\": \"50.73.141.210:39092\",\n \"QUEUE_TOPIC_NAME\": \"HIK_EVENT\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceId-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n },\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"RESOURCE_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"RESOURCE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_SERVE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"NET_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UPDATE_FREQUENCY\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UPDATE_FREQUENCY_UNIT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"H\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"SECURITY_LEVEL\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 5\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"IS_SPACE_DATA\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"AREA_SCOPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n }\n }\n ]\n },\n \"ResourceTopic\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"QUEUE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"QUEUE_BROKER_LIST\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"QUEUE_TOPIC_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"HIK_EVENT\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-10-08 08:27:47',NULL),(1633682138997,1631617361403,0,3,'资源详情-消息队列','JSON','/resource/apijson/get','{\n \"ResourceInfo\": {\n \"ID\": \"1633681660869\"\n },\n \"ResourceTopic\": {\n \"RESOURCE_ID@\": \"ResourceInfo/RESOURCE_ID\",\n \"SysDict\": {\n \"TYPE\": \"QUEUE_TYPE\",\n \"VALUE@\": \"ResourceTopic/QUEUE_TYPE\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n },\n \"ResourceTopic\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"SysDict\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"QUEUE_TYPE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-10-08 08:35:39',NULL),(1633685540122,1631617361403,0,3,'共享方式新增-api','JSON','/resource/apijson/post','{\n \"ResourceShare\": {\n \"NAME\": \"数据库共享\",\n \"DESC\": \"描述\",\n \"SHARE_TYPE\": \"2\",\n \"RESOURCE_INFO_ID\": \"1446390805710295041\"\n },\n \"ResourceApi\": {\n \"SHARE_ID@\": \"ResourceShare/ID\",\n \"API_ADDRESS\": \"http://58.210.9.133:8989/resource/dataUnit/companyList\",\n \"API_PORT\": \"8989\",\n \"API_PATH\": \"/resource/dataUnit/companyList\",\n \"API_REQUEST_METHOD\": \"0\",\n \"API_REQUEST_TYPE\": \"0\",\n \"RESOURCE_ID@\": null\n },\n \"ResourceInterfaceParam[]\": [\n {\n \"SHARE_ID@\": \"ResourceShare/ID\",\n \"API_ID@\": \"ResourceApi/ID\",\n \"PARAM_NAME\": \"id\",\n \"PARAM_DESC\": \"主键id\",\n \"PARAM_TYPE\": \"0\",\n \"RESOURCE_ID@\": null\n }\n ],\n \"ResourceId-()\": null,\n \"ResourceInfo\": null\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceId-()\": {\n \"notnull\": false,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n },\n \"ResourceInfo\": {\n \"notnull\": false,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"RESOURCE_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"RESOURCE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_SERVE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"NET_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UPDATE_FREQUENCY\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UPDATE_FREQUENCY_UNIT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"H\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"SECURITY_LEVEL\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 5\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"IS_SPACE_DATA\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"AREA_SCOPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n }\n }\n ]\n },\n \"ResourceApi\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": false,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"API_ADDRESS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 54\n ]\n },\n \"API_PORT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"API_PATH\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 30\n ]\n },\n \"API_REQUEST_METHOD\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"API_REQUEST_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"SHARE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n }\n }\n ]\n },\n \"ResourceInterfaceParam[]\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": false,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"API_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 14\n ]\n },\n \"PARAM_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"PARAM_DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"PARAM_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"SHARE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n }\n }\n ]\n }\n ]\n },\n \"ResourceShare\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"SHARE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_INFO_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-10-08 09:32:20',NULL),(1633686401010,1631617361403,0,3,'资源详情-api','JSON','/resource/apijson/get','{\n \"ResourceInfo\": {\n \"ID\": \"1633685461722\"\n },\n \"ResourceApi\": {\n \"RESOURCE_ID@\": \"ResourceInfo/RESOURCE_ID\",\n \"REVISION@\": \"ResourceInfo/REVISION\",\n \"SysDict:API_REQUEST_METHOD\": {\n \"TYPE\": \"API_REQUEST_METHOD\",\n \"VALUE@\": \"/API_REQUEST_METHOD\"\n },\n \"SysDict:API_REQUEST_TYPE\": {\n \"TYPE\": \"API_REQUEST_TYPE\",\n \"VALUE@\": \"/API_REQUEST_TYPE\"\n }\n },\n \"ResourceInterfaceParam[]\": {\n \"ResourceInterfaceParam\": {\n \"API_ID@\": \"ResourceApi/ID\",\n \"SysDict:PARAM_TYPE\": {\n \"TYPE\": \"PARAM_TYPE\",\n \"VALUE@\": \"/PARAM_TYPE\"\n }\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n },\n \"ResourceApi\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"REVISION@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 21\n ]\n },\n \"SysDict:API_REQUEST_METHOD\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"API_REQUEST_METHOD\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 18\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n }\n }\n ]\n },\n \"SysDict:API_REQUEST_TYPE\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"API_REQUEST_TYPE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 17\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"ResourceInterfaceParam[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInterfaceParam\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"API_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 14\n ]\n },\n \"SysDict:PARAM_TYPE\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"PARAM_TYPE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-10-08 09:46:41',NULL),(1633770522246,1631617361403,0,3,'资源修改','JSON','/resource/apijson/put','{\n \"updateResource-()\": \"updateResource(1446391835361595393,1)\",\n \"ResourceInfo\": {\n \"ID\": \"1633681660869\",\n \"RESOURCE_ID\": \"1446391835361595393\",\n \"REVISION\": 1,\n \"RESOURCE_NAME\": \"警务通gps数据\",\n \"RESOURCE_TYPE\": \"1\",\n \"RESOURCE_SERVE\": \"1\",\n \"NET_ID\": \"1\",\n \"UPDATE_FREQUENCY\": \"1\",\n \"UPDATE_FREQUENCY_UNIT\": \"H\",\n \"DESC\": \"落地资源1\",\n \"SECURITY_LEVEL\": 5,\n \"IS_SPACE_DATA\": 1,\n \"AREA_SCOPE\": \"1,2\"\n },\n \"ResourceTopic-\": {\n \"RESOURCE_ID\": \"1446391835361595393\",\n \"REVISION\": 1,\n \"QUEUE_TYPE\": \"0\",\n \"QUEUE_BROKER_LIST\": \"50.73.141.210:39081\",\n \"QUEUE_TOPIC_NAME\": \"HIK_EVENT\"\n },\n \"LinkInfo[]-\": [\n {\n \"UP_NODE_ID\": \"来源id\",\n \"DOWN_NODE_ID\": \"1446391835361595393\"\n }\n ],\n \"ResourceFile[]-\": [\n {\n \"FILE_ATTACHMENT_ID\": \"文件id\",\n \"RESOURCE_ID\": \"1446391835361595393\",\n \"REVISION\": 1\n }\n ]\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"updateResource-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 37\n ]\n },\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"REVISION\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"RESOURCE_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"RESOURCE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_SERVE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"NET_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UPDATE_FREQUENCY\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UPDATE_FREQUENCY_UNIT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"H\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"SECURITY_LEVEL\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 5\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"IS_SPACE_DATA\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"AREA_SCOPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n }\n }\n ]\n },\n \"ResourceTopic-\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"REVISION\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"QUEUE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"QUEUE_BROKER_LIST\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"QUEUE_TOPIC_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"HIK_EVENT\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n }\n }\n ]\n },\n \"LinkInfo[]-\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"UP_NODE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"DOWN_NODE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n }\n }\n ]\n }\n ]\n },\n \"ResourceFile[]-\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"FILE_ATTACHMENT_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"REVISION\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n ]\n }\n }\n ]\n}','','2021-10-09 09:08:42',NULL),(1634265668211,1631617361403,0,3,'资源列表查询','JSON','/resource/apijson/get','{\n \"[]\": {\n \"ResourceInfo\": {\n \"ID{}@\": {\n \"from\": \"ResourceInfo:ChildSearch\",\n \"ResourceInfo:ChildSearch\": {\n \"@column\": \"max(ID):ID\",\n \"@group\": \"RESOURCE_ID\"\n }\n },\n \"CREATED_TIME>=\": null,\n \"CREATED_TIME<=\": null,\n \"RESOURCE_STATUS\": \"0\",\n \"RESOURCE_NAME$\": \"%%\",\n \"RESOURCE_SERVE\": \"1\",\n \"@order\": \"RESOURCE_ID\",\n \"RESOURCE_OPEN\": \"0\",\n \"UNIT_ID\": null\n },\n \"SysDict:RESOURCE_TYPE\": {\n \"TYPE\": \"RESOURCE_TYPE\",\n \"VALUE@\": \"[]/ResourceInfo/RESOURCE_TYPE\"\n },\n \"Net\": {\n \"ID@\": \"[]/ResourceInfo/NET_ID\"\n },\n \"SysDict:NET_TYPE\": {\n \"TYPE\": \"NET_TYPE\",\n \"VALUE@\": \"[]/Net/NET_TYPE\"\n },\n \"DataUnit:ParentUnit\": {\n \"ID@\": \"[]/ResourceInfo/UNIT_ID\"\n },\n \"DataUnit:CompanyUnit\": {\n \"ID@\": \"[]/ResourceInfo/COMPANY_ID\"\n },\n \"ContactPerson\": {\n \"ID@\": \"[]/ResourceInfo/CONTACT_PERSON_ID\"\n },\n \"ResourceShare\": {\n \"RESOURCE_INFO_ID@\": \"[]/ResourceInfo/RESOURCE_ID\",\n \"@column\": \"count(1)\"\n },\n \"ResourceApply\": {\n \"RESOURCE_ID@\": \"[]/ResourceInfo/RESOURCE_ID\",\n \"APPLY_STATUS\": \"0\",\n \"@column\": \"count(1)\"\n },\n \"query\": 2,\n \"page\": 0,\n \"count\": 20,\n \"[]\": null\n },\n \"total@\": \"/[]/total\",\n \"page@\": \"/[]/page\",\n \"info@\": \"/[]/info\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID{}@\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"from\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"ResourceInfo:ChildSearch\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_ID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"RESOURCE_STATUS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_NAME$\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"RESOURCE_SERVE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"@order\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_ID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n },\n \"RESOURCE_OPEN\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n }\n }\n ]\n },\n \"SysDict:RESOURCE_TYPE\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_TYPE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 29\n ]\n }\n }\n ]\n },\n \"Net\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 22\n ]\n }\n }\n ]\n },\n \"SysDict:NET_TYPE\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"NET_TYPE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n }\n }\n ]\n },\n \"DataUnit:ParentUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 23\n ]\n }\n }\n ]\n },\n \"DataUnit:CompanyUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 26\n ]\n }\n }\n ]\n },\n \"ContactPerson\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 33\n ]\n }\n }\n ]\n },\n \"query\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 2\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"page\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 20\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"ResourceShare\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_INFO_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 27\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n },\n \"ResourceApply\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 27\n ]\n },\n \"APPLY_STATUS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"total@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"page@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"info@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n}','','2021-10-15 02:41:08',NULL),(1634284944272,1631617361403,0,3,'共享方式新增api','JSON','/resource/apijson/post','{\n \"ResourceShare\": {\n \"NAME\": \"数据库共享\",\n \"DESC\": \"描述\",\n \"SHARE_TYPE\": \"2\",\n \"RESOURCE_INFO_ID\": \"1446390805710295041\"\n },\n \"ResourceApi\": {\n \"SHARE_ID@\": \"ResourceShare/ID\",\n \"API_ADDRESS\": \"http://58.210.9.133:8989/resource/dataUnit/companyList\",\n \"API_PORT\": \"8989\",\n \"API_PATH\": \"/resource/dataUnit/companyList\",\n \"API_REQUEST_METHOD\": \"0\",\n \"API_REQUEST_TYPE\": \"0\"\n },\n \"ResourceInterfaceParam[]\": [\n {\n \"SHARE_ID@\": \"ResourceShare/ID\",\n \"API_ID@\": \"ResourceApi/ID\",\n \"PARAM_NAME\": \"id\",\n \"PARAM_DESC\": \"主键id\",\n \"PARAM_TYPE\": \"0\",\n \"PARAM_FORM\": \"0\"\n }\n ]\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceShare\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"SHARE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_INFO_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n }\n }\n ]\n },\n \"ResourceApi\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n },\n \"API_ADDRESS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 54\n ]\n },\n \"API_PORT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"API_PATH\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 30\n ]\n },\n \"API_REQUEST_METHOD\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"API_REQUEST_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n }\n }\n ]\n },\n \"ResourceInterfaceParam[]\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n },\n \"API_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 14\n ]\n },\n \"PARAM_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"PARAM_DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"PARAM_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"PARAM_FORM\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n }\n }\n ]\n }\n ]\n }\n }\n ]\n}','','2021-10-15 08:02:24',NULL),(1634285131571,1631617361403,0,3,'共享方式新增-数据库','JSON','/resource/apijson/post','{\n \"ResourceShare\": {\n \"NAME\": \"数据库共享\",\n \"DESC\": \"描述\",\n \"SHARE_TYPE\": \"0\",\n \"RESOURCE_INFO_ID\": \"1446390805710295041\"\n },\n \"ResourceDb\": {\n \"SHARE_ID@\": \"ResourceShare/ID\",\n \"DB_TYPE\": \"1\",\n \"DB_ADDRESS\": \"58.210.9.133\",\n \"DB_NAME\": \"public\",\n \"DB_URI\": \"jdbc:postgresql://101.133.229.133:5432/postgres\",\n \"TABLE_NAME\": \"t_car_pass_record\",\n \"DB_USERNAME\": \"username\",\n \"DB_PASSWORD\": \"password\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceShare\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"SHARE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_INFO_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n }\n }\n ]\n },\n \"ResourceDb\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n },\n \"DB_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DB_ADDRESS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 12\n ]\n },\n \"DB_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"DB_URI\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 47\n ]\n },\n \"TABLE_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 17\n ]\n },\n \"DB_USERNAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"DB_PASSWORD\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-10-15 08:05:31',NULL),(1634286148582,1631617361403,0,3,'共享方式列表','JSON','/resource/apijson/get','{\n \"[]\": {\n \"ResourceShare\": {\n \"RESOURCE_INFO_ID\": \"1446390805710295041\"\n },\n \"SysDict:RESOURCE_TYPE\": {\n \"TYPE\": \"RESOURCE_TYPE\",\n \"VALUE@\": \"[]/ResourceShare/SHARE_TYPE\"\n },\n \"ResourceDb\": {\n \"SHARE_ID@\": \"[]/ResourceShare/ID\",\n \"SysDict\": {\n \"TYPE\": \"QUEUE_TYPE\",\n \"VALUE@\": \"ResourceTopic/QUEUE_TYPE\"\n }\n },\n \"ResourceTopic\": {\n \"SHARE_ID@\": \"[]/ResourceShare/ID\",\n \"SysDict\": {\n \"TYPE\": \"QUEUE_TYPE\",\n \"VALUE@\": \"ResourceTopic/QUEUE_TYPE\"\n }\n },\n \"ResourceApi\": {\n \"SHARE_ID@\": \"[]/ResourceShare/ID\",\n \"SysDict:API_REQUEST_METHOD\": {\n \"TYPE\": \"API_REQUEST_METHOD\",\n \"VALUE@\": \"/API_REQUEST_METHOD\"\n },\n \"SysDict:API_REQUEST_TYPE\": {\n \"TYPE\": \"API_REQUEST_TYPE\",\n \"VALUE@\": \"/API_REQUEST_TYPE\"\n }\n },\n \"ResourceInterfaceParam[]\": {\n \"ResourceInterfaceParam\": {\n \"SHARE_ID@\": \"[]/ResourceShare/ID\",\n \"SysDict:PARAM_TYPE\": {\n \"TYPE\": \"PARAM_TYPE\",\n \"VALUE@\": \"/PARAM_TYPE\"\n }\n }\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceShare\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_INFO_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n }\n }\n ]\n },\n \"SysDict:RESOURCE_TYPE\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_TYPE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 27\n ]\n }\n }\n ]\n },\n \"ResourceDb\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"SysDict\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"QUEUE_TYPE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"ResourceTopic\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"SysDict\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"QUEUE_TYPE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"ResourceApi\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"SysDict:API_REQUEST_METHOD\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"API_REQUEST_METHOD\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 18\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n }\n }\n ]\n },\n \"SysDict:API_REQUEST_TYPE\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"API_REQUEST_TYPE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 17\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"ResourceInterfaceParam[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInterfaceParam\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"SysDict:PARAM_TYPE\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"PARAM_TYPE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-10-15 08:22:28',NULL),(1634289945625,1631617361403,0,3,'删除共享方式','JSON','/resource/apijson/delete','{\n \"deleteShare-()\": \"deleteShare(1634285087560)\",\n \"ResourceShare\": {\n \"ID\": \"1634285087560\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"deleteShare-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 26\n ]\n },\n \"ResourceShare\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-10-15 09:25:45',NULL),(1634290488064,1631617361403,0,3,'共享方式修改','JSON','/resource/apijson/put','{\n \"updateShare-()\": \"updateShare(1634285284517)\",\n \"ResourceShare\": {\n \"ID\": \"1634285284517\",\n \"NAME\": \"数据库共享1\",\n \"DESC\": \"描述1\",\n \"SHARE_TYPE\": \"0\"\n },\n \"ResourceDb-\": {\n \"SHARE_ID\": \"1634285284517\",\n \"DB_TYPE\": \"1\",\n \"DB_ADDRESS\": \"58.210.9.131\",\n \"DB_NAME\": \"public\",\n \"DB_URI\": \"jdbc:postgresql://101.133.229.133:5432/postgres1\",\n \"TABLE_NAME\": \"t_car_pass_record1\",\n \"DB_USERNAME\": \"username1\",\n \"DB_PASSWORD\": \"password1\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"updateShare-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 26\n ]\n },\n \"ResourceShare\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n },\n \"SHARE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n }\n }\n ]\n },\n \"ResourceDb-\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"DB_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DB_ADDRESS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 12\n ]\n },\n \"DB_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"DB_URI\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 48\n ]\n },\n \"TABLE_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 18\n ]\n },\n \"DB_USERNAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"DB_PASSWORD\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-10-15 09:34:48',NULL),(1634631929552,1631617361403,0,3,'共享方式修改api','JSON','/resource/apijson/put','{\n \"updateShare-()\": \"updateShare(1634285121819)\",\n \"ResourceShare\": {\n \"ID\": \"1634285121819\",\n \"NAME\": \"数据库共享1\",\n \"DESC\": \"描述1\",\n \"SHARE_TYPE\": \"0\"\n },\n \"ResourceApi-\": {\n \"SHARE_ID\": \"1634285284517\",\n \"API_ADDRESS\": \"http://58.210.9.133:8989/resource/dataUnit/companyList\",\n \"API_PORT\": \"8989\",\n \"API_PATH\": \"/resource/dataUnit/companyList\",\n \"API_REQUEST_METHOD\": \"0\",\n \"API_REQUEST_TYPE\": \"0\"\n },\n \"ResourceInterfaceParam[]-\": [\n {\n \"SHARE_ID\": \"1634285284517\",\n \"API_ID@\": \"ResourceApi/ID\",\n \"PARAM_NAME\": \"id\",\n \"PARAM_DESC\": \"主键id\",\n \"PARAM_TYPE\": \"0\",\n \"PARAM_FORM\": \"0\",\n \"DB_FIELD_NAME\": \"ID\",\n \"OPERATE_CHAR\": \"0\"\n }\n ]\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"updateShare-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 26\n ]\n },\n \"ResourceShare\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n },\n \"SHARE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n }\n }\n ]\n },\n \"ResourceApi-\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"API_ADDRESS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 54\n ]\n },\n \"API_PORT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"API_PATH\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 30\n ]\n },\n \"API_REQUEST_METHOD\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"API_REQUEST_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n }\n }\n ]\n },\n \"ResourceInterfaceParam[]-\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"API_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 14\n ]\n },\n \"PARAM_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"PARAM_DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"PARAM_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"PARAM_FORM\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DB_FIELD_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"ID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"OPERATE_CHAR\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n }\n }\n ]\n }\n ]\n }\n }\n ]\n}','','2021-10-19 08:25:29',NULL),(1634655384665,82001,0,3,'获取用户列表带分页信息-简单接口','JSON','/get/User[]','{\n \"User\": {\n \"id\": 82001\n },\n \"query\": 2\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n },\n \"query\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 2\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"User[]\": {\n \"type\": \"object\",\n \"notnull\": true,\n \"comment\": \"查用户数组,tag 为 User[],会自动包装为 \\\"User[]\\\":{ ... }\"\n }\n }\n ]\n}','','2021-10-19 14:56:24','\n简单接口的最外层参数最能放在 URL parameter,例如 format 和 info@\n/get/User[]?format=false&info@=User[]/info'),(1634695467863,1631617361403,0,3,'共享单位列表','JSON','/resource/apijson/get','{\n \"[]\": {\n \"ResourceApply\": {\n \"RESOURCE_ID\": \"1443059665230364673\",\n \"APPLY_STATUS\": \"1\"\n },\n \"DataUnit:ParentUnit\": {\n \"ID@\": \"[]/ResourceApply/UNIT_ID\"\n },\n \"DataUnit:CompanyUnit\": {\n \"ID@\": \"[]/ResourceApply/COMPANY_ID\"\n },\n \"ResourceShare\": {\n \"ID@\": \"[]/ResourceApply/SHARE_ID\"\n },\n \"SysDict:RESOURCE_TYPE\": {\n \"TYPE\": \"RESOURCE_TYPE\",\n \"VALUE@\": \"[]/ResourceShare/SHARE_TYPE\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceApply\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"APPLY_STATUS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n }\n }\n ]\n },\n \"DataUnit:ParentUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n }\n }\n ]\n },\n \"DataUnit:CompanyUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 27\n ]\n }\n }\n ]\n },\n \"ResourceShare\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 25\n ]\n }\n }\n ]\n },\n \"SysDict:RESOURCE_TYPE\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_TYPE\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"VALUE@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 27\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-10-20 02:04:27',NULL),(1634741164027,82001,0,3,'获取用户-简单接口','JSON','/get/User','{\n \"id\": 82001\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ],\n \"trend\": {\n \"top\": 1\n }\n },\n \"User\": {\n \"type\": \"object\",\n \"notnull\": false,\n \"comment\": \"用户信息\"\n }\n }\n ]\n}','','2021-10-20 14:46:04',NULL),(1634845547577,88888,0,3,'测试 JSON5 以及单引号','JSON','/get','{\n \"User\": {\n \"id\": 82001,\n \"@column\": \"id;concat(name,\'-\',tag)\"\n },\n \"[]\": {\n \"Comment\": {\n \"userId@\": \"User/id\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 23\n ]\n }\n }\n ]\n },\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"userId@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-10-21 19:45:47',NULL),(1635160679739,99999,0,3,'CASE WHEN','JSON','/get','{\n \"User[]\": {\n \"count\": 0,\n \"User\": {\n \"@column\": \"(CASE `sex` WHEN 0 THEN \'男\' WHEN \'1\' THEN 女 ELSE \'其他\' END):gender\",\n \"@raw\": \"@column\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 65\n ]\n },\n \"@raw\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"@database\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"POSTGRESQL\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"momentId\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 15\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"content\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 88\n ]\n },\n \"@raw\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-10-25 11:17:59',NULL),(1635160818367,99999,0,3,'反引号 `key` 和单引号 \'value\'','JSON','/get','{\n \"Comment\": {\n \"momentId\": 15,\n \"content\": \"测试新增评论\",\n \"@column\": \"`id`,toId:pid,content:ctt;date_format(`date`,\'%Y.%m.%d %h:%m\'):date;cast(`date` AS TIME)\",\n \"@raw\": \"@column\"\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"momentId\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 15\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"content\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 88\n ]\n },\n \"@raw\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2021-10-25 11:20:18',NULL),(1635166640858,88888,0,3,'SQL 关键词','JSON','/get','{\n \"[]\": {\n \"User\": {\n \"@column\": \"DISTINCT cast(date AS TIME);date_add(date,INTERVAL 2 DAY)\",\n \"@raw\": \"@column\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 57\n ]\n },\n \"@raw\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2021-10-25 12:57:20',NULL),(1635167288971,88888,0,3,'窗口函数 sum(..)OVER(PARTITION BY.. ODER BY..)','JSON','/get','{\n \"Comment[]\": {\n \"Comment\": {\n \"@column\": \"sum(id)OVER(PARTITION BY toId ORDER BY date DESC)\",\n \"@raw\": \"@column\",\n \"@database\": \"POSTGRESQL\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 49\n ]\n },\n \"@raw\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n },\n \"@database\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"POSTGRESQL\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"@database\": {\n \"notnull\": false,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"POSTGRESQL\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n }\n }\n ]\n}','','2021-10-25 13:08:08',NULL),(1635168238020,88888,0,3,'全文检索/搜索/索引 match(..)AGAINST(..)','JSON','/get','{\n \"User[]\": {\n \"User\": {\n \"@column\": \"match(name,tag)AGAINST(\'tom*\' IN NATURAL LANGUAGE MODE):match\",\n \"@having\": \"(match)>=1\",\n \"@raw\": \"@column\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 61\n ]\n },\n \"@raw\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n },\n \"@having\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2021-10-25 13:23:58',NULL),(1635169568844,1635169494440,0,3,'\"key!<>\": [] 报错不合法,不过 \"key<>\": [] 可以','JSON','/put','{\n \"Moment\": {\n \"id\": 15,\n \"praiseUserIdList!<>\": [\n 82002\n ],\n \"praiseUserIdList+\": [\n 82005\n ]\n },\n \"tag\": \"Moment\",\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Moment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 15\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"praiseUserIdList!<>\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82002\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n ]\n },\n \"praiseUserIdList+\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82005\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n ]\n }\n }\n ]\n },\n \"tag\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2021-10-25 13:46:08',NULL),(1635236151556,1631617361403,0,3,'共享方式新增-消息队列','JSON','/resource/apijson/post','{\n \"ResourceShare\": {\n \"NAME\": \"数据库共享\",\n \"DESC\": \"描述\",\n \"SHARE_TYPE\": \"1\",\n \"RESOURCE_INFO_ID\": \"1446390805710295041\"\n },\n \"ResourceTopic\": {\n \"SHARE_ID@\": \"ResourceShare/ID\",\n \"QUEUE_TYPE\": \"0\",\n \"QUEUE_BROKER_LIST\": \"50.73.141.210:39092\",\n \"QUEUE_TOPIC_NAME\": \"HIK_EVENT\"\n },\n \"ResourceInterfaceParam[]\": [\n {\n \"SHARE_ID@\": \"ResourceShare/ID\",\n \"PARAM_NAME\": \"id\",\n \"PARAM_DESC\": \"主键id\",\n \"PARAM_FORM\": \"1\"\n }\n ]\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceShare\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"SHARE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_INFO_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n }\n }\n ]\n },\n \"ResourceTopic\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n },\n \"QUEUE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"QUEUE_BROKER_LIST\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"QUEUE_TOPIC_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"HIK_EVENT\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n }\n }\n ]\n },\n \"ResourceInterfaceParam[]\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n },\n \"PARAM_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"PARAM_DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"PARAM_FORM\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n }\n }\n ]\n }\n ]\n }\n }\n ]\n}','','2021-10-26 08:15:51',NULL),(1635298359443,1631617361403,0,3,'共享方式修改-消息队列','JSON','/resource/apijson/put','{\n \"updateShare-()\": \"updateShare(1634285121819)\",\n \"ResourceShare\": {\n \"ID\": \"1634285121819\",\n \"NAME\": \"数据库共享1\",\n \"DESC\": \"描述1\",\n \"SHARE_TYPE\": \"1\"\n },\n \"ResourceTopic-\": {\n \"SHARE_ID\": \"1634285121819\",\n \"QUEUE_TYPE\": \"0\",\n \"QUEUE_BROKER_LIST\": \"50.73.141.210:39092\",\n \"QUEUE_TOPIC_NAME\": \"HIK_EVENT\"\n },\n \"ResourceInterfaceParam[]-\": [\n {\n \"SHARE_ID\": \"1634285121819\",\n \"PARAM_NAME\": \"id\",\n \"PARAM_DESC\": \"主键id\",\n \"PARAM_FORM\": \"1\"\n }\n ]\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"updateShare-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 26\n ]\n },\n \"ResourceShare\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n },\n \"SHARE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n }\n }\n ]\n },\n \"ResourceTopic-\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"QUEUE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"QUEUE_BROKER_LIST\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"QUEUE_TOPIC_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"HIK_EVENT\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n }\n }\n ]\n },\n \"ResourceInterfaceParam[]-\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"SHARE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"PARAM_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"PARAM_DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"PARAM_FORM\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n }\n }\n ]\n }\n ]\n }\n }\n ]\n}','','2021-10-27 01:32:39',NULL),(1635319860975,1631617361403,0,3,'审批资源申请。(申请id,状态)','JSON','/resource/apijson/put','{\n \"approveApply()\": \"approveApply(1635315914238,1)\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"approveApply()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 29\n ]\n }\n }\n ]\n}','','2021-10-27 07:31:00',NULL),(1635815339312,1635726344906,0,3,'test_id','JSON','/get','{\n \"test\": {\n \"id\": 2\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"test\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 2\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-02 01:08:59',NULL),(1635817779301,1635726344906,0,3,'T_i_fund','JSON','/get','{\n \"T_i_fund\": {\n \"name\": \"刘英\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Document\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n },\n \"Db_mate\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n },\n \"T_i_fund\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"name\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-02 01:49:39',NULL),(1635821594785,1635755610457,0,3,'Db_version','JSON','/get','{\n \"Db_version\": {\n \"id\": 1\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Db_version\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-02 02:53:14',NULL),(1635833339003,1635726344906,0,3,'post_mate_name','JSON','/post','{\n \"Db_mate\": {\n \"mate_name\": \"test\"\n },\n \"tag\": \"Db_mate\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Db_mate\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"mate_name\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n }\n }\n ]\n },\n \"tag\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n }\n }\n ]\n}','','2021-11-02 06:08:59',NULL),(1635834419362,1631617361403,0,3,'标签新增','JSON','/resource/apijson/post','{\n \"Tag\": {\n \"NAME\": \"交通\",\n \"DESC\": \"描述\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Tag\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-02 06:26:59',NULL),(1635834529131,1631617361403,0,3,'标签列表','JSON','/resource/apijson/get','{\n \"[]\": {\n \"Tag\": {}\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Tag\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {}\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-02 06:28:49',NULL),(1635838222713,1631617361403,0,3,'标签修改','JSON','/resource/apijson/put','{\n \"Tag\": {\n \"ID\": \"1635835429761\",\n \"NAME\": \"交通1\",\n \"DESC\": \"描述\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Tag\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-02 07:30:22',NULL),(1635838252891,1631617361403,0,3,'标签删除','JSON','/resource/apijson/delete','{\n \"Tag\": {\n \"ID\": \"1635835429761\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Tag\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-02 07:30:52',NULL),(1635908934512,1631617361403,0,3,'运维日志新增','JSON','/resource/apijson/post','{\n \"ResourceKnowledge\": {\n \"TITLE\": \"问题标题\",\n \"HANDLE_PERSON\": \"处理人\",\n \"KEY_WORD\": \"关键字1;关键字2\",\n \"HANDLE_CONTENT\": \"问题描述,处理办法\",\n \"HANDLE_TIME\": \"to_timestamp( \'2021-11-03 10:27:00\', \'yyyy-mm-dd hh24:mi:ss\') \",\n \"RESOURCE_ID\": \"1446390805710295041\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceKnowledge\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TITLE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"HANDLE_PERSON\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n },\n \"KEY_WORD\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"HANDLE_CONTENT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"HANDLE_TIME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 62\n ]\n },\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-03 03:08:54',NULL),(1635909163185,1631617361403,0,3,'运维日志修改','JSON','/resource/apijson/put','{\n \"ResourceKnowledge\": {\n \"ID\": \"1635908887897\",\n \"TITLE\": \"问题标题\",\n \"HANDLE_PERSON\": \"处理人\",\n \"KEY_WORD\": \"关键字1;关键字2\",\n \"HANDLE_CONTENT\": \"问题描述,处理办法\",\n \"HANDLE_TIME\": \"to_timestamp( \'2021-11-03 10:27:00\', \'yyyy-mm-dd hh24:mi:ss\') \",\n \"RESOURCE_ID\": \"1446390805710295041\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceKnowledge\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"TITLE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"HANDLE_PERSON\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n },\n \"KEY_WORD\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"HANDLE_CONTENT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"HANDLE_TIME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 62\n ]\n },\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-03 03:12:43',NULL),(1635911619126,1631617361403,0,3,'运维日志详情','JSON','/resource/apijson/get','{\n \"ResourceKnowledge\": {\n \"ID\": \"1635908887897\"\n },\n \"ResourceInfo\": {\n \"ID{}@\": {\n \"from\": \"ResourceInfo:ChildSearch\",\n \"ResourceInfo:ChildSearch\": {\n \"@column\": \"max(ID):ID\",\n \"@group\": \"RESOURCE_ID\"\n }\n },\n \"RESOURCE_ID@\": \"/ResourceKnowledge/RESOURCE_ID\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceKnowledge\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n },\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID{}@\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"from\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"ResourceInfo:ChildSearch\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_ID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 30\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-03 04:25:56',NULL),(1635918575132,1631617361403,0,3,'报警记录列表','JSON','/resource/apijson/get','{\n \"[]\": {\n \"LinkMonitorRecord\": {\n \"STATUS\": \"1\",\n \"RESOURCE_ID\": \"1446764630113288193\",\n \"@order\": \"CREATED_TIME-\"\n },\n \"ResourceInfo\": {\n \"ID{}@\": {\n \"from\": \"ResourceInfo:ChildSearch\",\n \"ResourceInfo:ChildSearch\": {\n \"@column\": \"max(ID):ID\",\n \"@group\": \"RESOURCE_ID\"\n }\n },\n \"RESOURCE_ID@\": \"/LinkMonitorRecord/RESOURCE_ID\"\n },\n \"query\": 2,\n \"page\": 0,\n \"count\": 20\n },\n \"total@\": \"/[]/total\",\n \"page@\": \"/[]/page\",\n \"info@\": \"/[]/info\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"LinkMonitorRecord\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"STATUS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"@order\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [\n \"CREATED_TIME\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13,\n 12\n ]\n }\n }\n ]\n },\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID{}@\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"from\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"ResourceInfo:ChildSearch\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_ID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 30\n ]\n }\n }\n ]\n },\n \"query\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 2\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"page\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 20\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n },\n \"total@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"page@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"info@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n}','','2021-11-03 05:49:35',NULL),(1635919866390,1631617361403,0,3,'数据源分页查询','JSON','/resource/apijson/get','{\n \"[]\": {\n \"DbSource\": {\n \"@order\": \"CREATED_TIME-\"\n },\n \"query\": 2,\n \"page\": 0,\n \"count\": 20\n },\n \"total@\": \"/[]/total\",\n \"page@\": \"/[]/page\",\n \"info@\": \"/[]/info\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceKnowledge\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TITLE$\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 0\n ]\n },\n \"@order\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n },\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID{}@\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"from\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"ResourceInfo:ChildSearch\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_ID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 30\n ]\n }\n }\n ]\n },\n \"query\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 2\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"page\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 20\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"DbSource\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@order\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"total@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"page@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"info@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n}','','2021-11-03 06:11:06',NULL),(1635994692546,82002,0,3,'关联查询 Comment.userId = User.id','JSON','/login','{\n \"type\": 0,\n \"phone\": \"13000082002\",\n \"password\": \"123456\",\n \"version\": 1,\n \"remember\": false,\n \"format\": false,\n \"defaults\": {\n \"@database\": \"MYSQL\",\n \"@schema\": \"sys\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"type\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"phone\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n },\n \"password\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"version\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"remember\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n false\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"format\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n false\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"defaults\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@database\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"MYSQL\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"@schema\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-04 02:58:12',NULL),(1636008854885,1631617361403,0,3,'落地资源新增标签','JSON','/resource/apijson/post','{\n \"ResourceId-()\": \"getResourceId()\",\n \"ResourceInfo\": {\n \"RESOURCE_ID@\": \"ResourceId\",\n \"RESOURCE_NAME\": \"停车场落地数据\",\n \"RESOURCE_TYPE\": \"0\",\n \"RESOURCE_SERVE\": \"1\",\n \"NET_ID\": \"1\",\n \"UPDATE_FREQUENCY\": \"1\",\n \"UPDATE_FREQUENCY_UNIT\": \"H\",\n \"DESC\": \"落地资源\",\n \"SECURITY_LEVEL\": 5,\n \"IS_SPACE_DATA\": 1\n },\n \"ResourceTag[]\": [\n {\n \"RESOURCE_TAG_ID\": \"1635844990052\",\n \"RESOURCE_INFO_ID@\": \"ResourceId\"\n },\n {\n \"RESOURCE_TAG_ID\": \"1635834399214\",\n \"RESOURCE_INFO_ID@\": \"ResourceId\"\n }\n ]\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceId-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n },\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"RESOURCE_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n },\n \"RESOURCE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_SERVE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"NET_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UPDATE_FREQUENCY\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"UPDATE_FREQUENCY_UNIT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"H\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"SECURITY_LEVEL\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 5\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"IS_SPACE_DATA\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n },\n \"ResourceTag[]\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_TAG_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"RESOURCE_INFO_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n }\n }\n ]\n }\n ]\n }\n }\n ]\n}','','2021-11-04 06:54:14',NULL),(1636010517920,1631617361403,0,3,'资源修改标签','JSON','/resource/apijson/put','{\n \"updateResource-()\": \"updateResource(1454003856978485249,1)\",\n \"ResourceInfo\": {\n \"RESOURCE_ID\": \"1454003856978485249\",\n \"RESOURCE_NAME\": \"过车治理资源\",\n \"RESOURCE_SERVE\": \"1\",\n \"NET_ID\": \"1635326931695\",\n \"UNIT_ID\": \"1632829959078\",\n \"COMPANY_ID\": \"1633684071495\",\n \"CONTACT_PERSON_NAME\": \"运维联系人\",\n \"CONTACT_PERSON_TEL\": \"1231241\",\n \"VIRTUAL\": 1,\n \"CATALOG_ID\": \"1635321555584\",\n \"RESOURCE_TYPE\": \"0\",\n \"SECURITY_LEVEL\": 3,\n \"UPDATE_FREQUENCY\": 10,\n \"UPDATE_FREQUENCY_UNIT\": \"1\",\n \"IS_SPACE_DATA\": \"1\",\n \"SPACE_COORDINATE\": \"\",\n \"AREA_SCOPE\": \"suzhou\",\n \"DESC\": \"过车落地数据1\",\n \"ID\": \"1635496508247\",\n \"REVISION\": 1\n },\n \"ResourceFile[]-\": [\n {\n \"FILE_ATTACHMENT_ID\": \"1454003846597582850\",\n \"RESOURCE_ID\": \"1454003856978485249\",\n \"REVISION\": 1\n },\n {\n \"FILE_ATTACHMENT_ID\": \"1456155296736067585\",\n \"RESOURCE_ID\": \"1454003856978485249\",\n \"REVISION\": 1\n }\n ],\n \"LinkInfo[]-\": [\n {\n \"UP_NODE_ID\": \"1454003276532948993\",\n \"DOWN_NODE_ID\": \"1454003856978485249\"\n },\n {\n \"UP_NODE_ID\": \"1453309505004683266\",\n \"DOWN_NODE_ID\": \"1454003856978485249\"\n }\n ],\n \"ResourceTag[]-\": [\n {\n \"RESOURCE_TAG_ID\": \"1635844990052\",\n \"RESOURCE_ID\": \"1454003856978485249\",\n \"REVISION\": 1\n },\n {\n \"RESOURCE_TAG_ID\": \"1635834399214\",\n \"RESOURCE_ID\": \"1454003856978485249\",\n \"REVISION\": 1\n }\n ],\n \"ResourceDb-\": {\n \"RESOURCE_ID\": \"1454003856978485249\",\n \"DB_TYPE\": \"2\",\n \"DB_ADDRESS\": \"58.210.9.133\",\n \"DB_NAME\": \"ccip\",\n \"DB_URI\": \"jdbc:postgresql://58.210.9.133:5432/ccipdb\",\n \"TABLE_NAME\": \"t_car_pass_record\",\n \"DB_USERNAME\": \"ccip\",\n \"DB_PASSWORD\": \"ccip\",\n \"REVISION\": 1\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"updateResource-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 37\n ]\n },\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"RESOURCE_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"RESOURCE_SERVE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"NET_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"UNIT_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"COMPANY_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"CONTACT_PERSON_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"CONTACT_PERSON_TEL\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n },\n \"VIRTUAL\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"CATALOG_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"RESOURCE_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"SECURITY_LEVEL\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 3\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"UPDATE_FREQUENCY\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 10\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"UPDATE_FREQUENCY_UNIT\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"IS_SPACE_DATA\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"SPACE_COORDINATE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 0\n ]\n },\n \"AREA_SCOPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"DESC\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 7\n ]\n },\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"REVISION\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n },\n \"ResourceFile[]-\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"FILE_ATTACHMENT_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"REVISION\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n ]\n },\n \"LinkInfo[]-\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"UP_NODE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"DOWN_NODE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n }\n }\n ]\n }\n ]\n },\n \"ResourceTag[]-\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_TAG_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n },\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"REVISION\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n ]\n },\n \"ResourceDb-\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"DB_TYPE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"DB_ADDRESS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 12\n ]\n },\n \"DB_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"DB_URI\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 42\n ]\n },\n \"TABLE_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 17\n ]\n },\n \"DB_USERNAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"DB_PASSWORD\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"REVISION\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-04 07:21:57',NULL),(1636010556689,1631617361403,0,3,'资源详情标签','JSON','/resource/apijson/get','{\n \"ResourceInfo\": {\n \"ID\": \"1635496508247\"\n },\n \"DataUnit:ParentUnit\": {\n \"ID@\": \"ResourceInfo/UNIT_ID\"\n },\n \"DataUnit:CompanyUnit\": {\n \"ID@\": \"ResourceInfo/COMPANY_ID\"\n },\n \"ResourceCatalog\": {\n \"ID@\": \"ResourceInfo/CATALOG_ID\"\n },\n \"[]\": {\n \"ResourceFile\": {\n \"RESOURCE_ID@\": \"ResourceInfo/RESOURCE_ID\",\n \"REVISION@\": \"ResourceInfo/REVISION\"\n },\n \"FileAttachment\": {\n \"ID@\": \"[]/ResourceFile/FILE_ATTACHMENT_ID\"\n }\n },\n \"ResourceInfo[]\": {\n \"LinkInfo\": {\n \"DOWN_NODE_ID@\": \"ResourceInfo/RESOURCE_ID\"\n },\n \"ResourceInfo\": {\n \"RESOURCE_ID@\": \"/LinkInfo/UP_NODE_ID\"\n }\n },\n \"Tag[]\": {\n \"ResourceTag\": {\n \"RESOURCE_ID@\": \"ResourceInfo/RESOURCE_ID\",\n \"REVISION@\": \"ResourceInfo/REVISION\"\n },\n \"Tag\": {\n \"ID@\": \"/ResourceTag/RESOURCE_TAG_ID\"\n }\n },\n \"ResourceDb\": {\n \"RESOURCE_ID@\": \"ResourceInfo/RESOURCE_ID\",\n \"REVISION@\": \"ResourceInfo/REVISION\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n },\n \"DataUnit:ParentUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 20\n ]\n }\n }\n ]\n },\n \"DataUnit:CompanyUnit\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 23\n ]\n }\n }\n ]\n },\n \"ResourceCatalog\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 23\n ]\n }\n }\n ]\n },\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceFile\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"REVISION@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 21\n ]\n }\n }\n ]\n },\n \"FileAttachment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 34\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"ResourceInfo[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"LinkInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"DOWN_NODE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n }\n }\n ]\n },\n \"ResourceInfo\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 20\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"Tag[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceTag\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"REVISION@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 21\n ]\n }\n }\n ]\n },\n \"Tag\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 28\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"ResourceDb\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"RESOURCE_ID@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"REVISION@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 21\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-04 07:22:36',NULL),(1636603450441,1631617361403,0,3,'数据源新增','JSON','/resource/apijson/post','{\n \"DbSource\": {\n \"DB_ADDRESS\": \"58.210.9.133\",\n \"DB_NAME\": \"public\",\n \"DB_URI\": \"jdbc:postgresql://101.133.229.133:5432/postgres\",\n \"DB_USERNAME\": \"username\",\n \"DB_PASSWORD\": \"password\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"DbSource\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"DB_ADDRESS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 12\n ]\n },\n \"DB_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"DB_URI\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 47\n ]\n },\n \"DB_USERNAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"DB_PASSWORD\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-11 04:04:10',NULL),(1636609140490,1631617361403,0,3,'数据源列表查询','JSON','/resource/apijson/get','{\n \"[]\": {\n \"DbSource\": {\n \"@order\": \"CREATED_TIME-\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"DbSource\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@order\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n },\n \"query\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 2\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"page\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 20\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n },\n \"total@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"page@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"info@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n}','','2021-11-11 05:39:00',NULL),(1636609433442,1631617361403,0,3,'数据源分页查询','JSON','/resource/apijson/get','{\n \"[]\": {\n \"DbSource\": {\n \"@order\": \"CREATED_TIME-\"\n },\n \"query\": 2,\n \"page\": 0,\n \"count\": 20\n },\n \"total@\": \"/[]/total\",\n \"page@\": \"/[]/page\",\n \"info@\": \"/[]/info\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"DbSource\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@order\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n },\n \"query\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 2\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"page\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 20\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n },\n \"total@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"page@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"info@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n}','','2021-11-11 05:43:53',NULL),(1636609528230,1631617361403,0,3,'数据源详情','JSON','/resource/apijson/get','{\n \"DbSource\": {\n \"ID\": \"1636603446526\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"DbSource\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-11 05:45:28',NULL),(1636609579288,1631617361403,0,3,'数据源修改','JSON','/resource/apijson/put','{\n \"DbSource\": {\n \"ID\": 1636603436281,\n \"DB_ADDRESS\": \"58.210.9.133\",\n \"DB_NAME\": \"public\",\n \"DB_URI\": \"jdbc:postgresql://101.133.229.133:5432/postgres\",\n \"DB_USERNAME\": \"username\",\n \"DB_PASSWORD\": \"password\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"DbSource\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 1636603436281\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"DB_ADDRESS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 12\n ]\n },\n \"DB_NAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"DB_URI\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 47\n ]\n },\n \"DB_USERNAME\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"DB_PASSWORD\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-11 05:46:19',NULL),(1637822526120,1631617361403,0,3,'首页统计','JSON','/daas-gateway/resource/apijson/get','{\n \"ResourceInfo:from\": {\n \"ID{}@\": {\n \"from\": \"ResourceInfo:ChildSearch\",\n \"ResourceInfo:ChildSearch\": {\n \"@column\": \"max(ID):ID\",\n \"@group\": \"RESOURCE_ID\"\n }\n },\n \"RESOURCE_STATUS\": \"0\",\n \"RESOURCE_SERVE\": \"0\",\n \"@column\": \"count(0)\"\n },\n \"DataUnit:from\": {\n \"TYPE\": 1,\n \"@column\": \"count(0)\"\n },\n \"ResourceInfo:save\": {\n \"ID{}@\": {\n \"from\": \"ResourceInfo:ChildSearch\",\n \"ResourceInfo:ChildSearch\": {\n \"@column\": \"max(ID):ID\",\n \"@group\": \"RESOURCE_ID\"\n }\n },\n \"RESOURCE_STATUS\": \"0\",\n \"RESOURCE_SERVE\": \"1\",\n \"@column\": \"count(0)\"\n },\n \"ResourceEverydayCount:All\": {\n \"ID{}@\": {\n \"from\": \"ResourceEverydayCount:ChildSearch\",\n \"ResourceEverydayCount:ChildSearch\": {\n \"@column\": \"max(ID):ID\",\n \"@group\": \"RESOURCE_ID\"\n }\n },\n \"@column\": \"sum(COUNT_NUM)\"\n },\n \"ResourceApply\": {\n \"@column\": \"count(0)\"\n },\n \"ShareRecord\": {\n \"@column\": \"sum(DATA_NUM)\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ResourceInfo:from\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID{}@\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"from\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"ResourceInfo:ChildSearch\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_ID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"RESOURCE_STATUS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_SERVE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n },\n \"DataUnit:from\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"TYPE\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n },\n \"ResourceInfo:save\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID{}@\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"from\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"ResourceInfo:ChildSearch\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_ID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"RESOURCE_STATUS\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"RESOURCE_SERVE\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n },\n \"ResourceEverydayCount:All\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"ID{}@\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"from\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 33\n ]\n },\n \"ResourceEverydayCount:ChildSearch\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 10\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"RESOURCE_ID\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 14\n ]\n }\n }\n ]\n },\n \"ResourceApply\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n },\n \"ShareRecord\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2021-11-25 06:42:06',NULL),(1638254136616,1638253820088,0,3,'用户列表','PARAM','/user/list','{\n \"pageSize\": 10, // 每页数量\n \"pageNum\": 1, // \n \"searchKey\": \"a\" // 搜索关键词\n}',NULL,NULL,'2021-11-30 06:35:36',NULL),(1638254136620,1638253820088,0,3,'用户详情','PARAM','/user','{\n \"id\": 82001 // 主键\n}',NULL,NULL,'2021-11-30 06:35:36',NULL),(1638254136621,1638253820088,0,3,'新增评论','JSON','/comment/post','{\n \"userId\": 82001, // 用户id\n \"momentId\": 15, // 动态id\n \"content\": \"测试评论\" // 内容\n}',NULL,NULL,'2021-11-30 06:35:36',NULL),(1638254145943,1638253820088,0,3,'新增评论','JSON','/comment/post','{\n \"userId\": 82001, // 用户id\n \"momentId\": 15, // 动态id\n \"content\": \"测试评论\" // 内容\n}',NULL,NULL,'2021-11-30 06:35:45',NULL),(1638254145947,1638253820088,0,3,'用户详情','PARAM','/user','{\n \"id\": 82001 // 主键\n}',NULL,NULL,'2021-11-30 06:35:45',NULL),(1638254145952,1638253820088,0,3,'用户列表','PARAM','/user/list','{\n \"pageSize\": 10, // 每页数量\n \"pageNum\": 1, // \n \"searchKey\": \"a\" // 搜索关键词\n}',NULL,NULL,'2021-11-30 06:35:45',NULL),(1643180646762,1642574030663,0,3,'查询','JSON','/get','{\n \"[]\": {\n \"Moment\": {\n \"id{}\": [\n 11,\n 15,\n 32\n ],\n \"@column\": \"id,date,content\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Moment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id{}\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 12,\n 15,\n 32,\n 11\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2022-01-26 07:04:06',NULL),(1644392836336,1490109742863,0,3,'callbackAuditBGData','JSON','/audit/oa/callbackAuditBGData','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836340,1490109742863,0,3,'getToken','JSON','/cas/casuser/resetPassword','{\n \"req\": null // 必填。 req\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836358,1490109742863,0,3,'callbackAuditData','JSON','/audit/oa/callbackAuditData','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836364,1490109742863,0,3,'callbackAuditZGTZSData','JSON','/audit/oa/callbackAuditZGTZSData','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836399,1490109742863,0,3,'callbackComprehensiveData','JSON','/comprehensive/oa/callbackComprehensiveData','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836406,1490109742863,0,3,'storePerformanceMTD','JSON','/dc/StorePerformanceMTD','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836427,1490109742863,0,3,'getCategory','JSON','/dc/category/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836438,1490109742863,0,3,'getEarnestMoney','JSON','/dc/costplan/detail/earnestMoney','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836476,1490109742863,0,3,'getCostPlanDetail','JSON','/dc/costplan/detail/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836503,1490109742863,0,3,'getDetailSalePlan','JSON','/dc/costplan/detail/salePlan','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836532,1490109742863,0,3,'getCostPlanSearch','JSON','/dc/costplan/search/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836539,1490109742863,0,3,'getVerification','JSON','/dc/costplan/verification/detail/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836543,1490109742863,0,3,'getCostPlanQuery','JSON','/dc/costplan/list/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836547,1490109742863,0,3,'callBackFileOperationSuccess','JSON','/dc/file/operation/success/callback','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836619,1490109742863,0,3,'getMaterial','JSON','/dc/material/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836674,1490109742863,0,3,'getSupplier','JSON','/dc/supplier/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836680,1490109742863,0,3,'getUnit','JSON','/dc/unit/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836741,1490109742863,0,3,'XmDownloadLink','JSON','/dc/xmbarcode/download/link','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836744,1490109742863,0,3,'getProductInfo','JSON','/dc/xmbarcode/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836806,1490109742863,0,3,'getHtfy','JSON','/dc/htfy/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836809,1490109742863,0,3,'judge','JSON','/dc/xmbarcode/sfa/exceptioncode','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836870,1490109742863,0,3,'getProductInfoStatus','JSON','/dc/xmbarcode/status/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836872,1490109742863,0,3,'saveSfaCostCustomer','JSON','/dms/costcustomer/sfa/save','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836890,1490109742863,0,3,'getCateringCancel','JSON','/dc/xmbarcode/statistical/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836900,1490109742863,0,3,'getSfaCostCustomerPage','JSON','/dms/costcustomerpage/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836921,1490109742863,0,3,'getMiniprogramDealers','JSON','/dms/dealer/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836965,1490109742863,0,3,'getDealer','JSON','/dms/dealer/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836971,1490109742863,0,3,'dealerAmbQuery','JSON','/dms/dealerAmb/sfa/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:16',NULL),(1644392836996,1490109742863,0,3,'getDealerByMobile','JSON','/dms/dealer/queryByMobile','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837034,1490109742863,0,3,'dealerTask','JSON','/dms/dealer/todoTask','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837037,1490109742863,0,3,'getDealerAndSub','JSON','/dms/dealer/v2/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837054,1490109742863,0,3,'getSfaDealerStoreList','JSON','/dms/dealer_store_list/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837113,1490109742863,0,3,'addDealerStockOrder','JSON','/dms/dealerstockorder/insert','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837177,1490109742863,0,3,'getSfaDealerProduct','JSON','/dms/dealerproduct/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837181,1490109742863,0,3,'getSfaDealerStoreSupply','JSON','/dms/dealer_store_supply/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837252,1490109742863,0,3,'saveDealerstockorderStatu','JSON','/dms/dealerstockorder/sfa/update','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837330,1490109742863,0,3,'callBackMiniProgramdistibutionOrder','JSON','/dms/distibutionOrder/miniprogram/callback','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837383,1490109742863,0,3,'getSfaDistList','JSON','/dms/disList/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837435,1490109742863,0,3,'saveSfaDistStatus','JSON','/dms/diststatus/sfa/save','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837502,1490109742863,0,3,'saveFeeBudget','JSON','/dms/fee/saveFeeBudget','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837571,1490109742863,0,3,'findStoreSCRM','JSON','/dms/find/findStoreSCRM','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837621,1490109742863,0,3,'fnRptConfirm','JSON','/dms/fn/rpt/confirm','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837653,1490109742863,0,3,'fnRptConfirmForXYR','JSON','/dms/fn/rpt/confirmForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837665,1490109742863,0,3,'fnRptDealerQuery','JSON','/dms/fn/rpt/dealerQuery','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837671,1490109742863,0,3,'fnRptDownload','JSON','/dms/fn/rpt/download','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837721,1490109742863,0,3,'fnRptDealerQueryForXYR','JSON','/dms/fn/rpt/dealerQueryForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837781,1490109742863,0,3,'fnRptGetVcPdfUrl','JSON','/dms/fn/rpt/getVcPdfUrl','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837837,1490109742863,0,3,'fnRptQuery','JSON','/dms/fn/rpt/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837866,1490109742863,0,3,'fnRptQueryForXYR','JSON','/dms/fn/rpt/queryForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837889,1490109742863,0,3,'fnRptYearQuery','JSON','/dms/fn/rpt/yearQuery','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837918,1490109742863,0,3,'fnRptYearQueryForXYR','JSON','/dms/fn/rpt/yearQueryForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837937,1490109742863,0,3,'saveSfaFreePoApp','JSON','/dms/freePoApp/sfa/save','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392837986,1490109742863,0,3,'deleteSfaPoAppList103','JSON','/dms/freePoAppList103/sfa/delete','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:17',NULL),(1644392838039,1490109742863,0,3,'getSfaPoAppPage103','JSON','/dms/freePoAppPage103/sfa/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838093,1490109742863,0,3,'saveSfaFxPoApp','JSON','/dms/fxpoapp/sfa/save','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838141,1490109742863,0,3,'getProductSeries','JSON','/dms/dict/product_series','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838150,1490109742863,0,3,'getSfaDist','JSON','/dms/dis/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838183,1490109742863,0,3,'getInvoiceType','JSON','/dms/invoicetype/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838203,1490109742863,0,3,'getKuaidi100','JSON','/dms/kuadi100/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838229,1490109742863,0,3,'callbackLogRecord','JSON','/dms/log/callback','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838282,1490109742863,0,3,'login','JSON','/dms/login','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838338,1490109742863,0,3,'loginCode','JSON','/dms/loginCode','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838391,1490109742863,0,3,'miniprogramLogin','JSON','/dms/miniprogram-login','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838405,1490109742863,0,3,'queryNotifyList','JSON','/dms/notify/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838447,1490109742863,0,3,'queryMPDealerStoreSupply','JSON','/dms/miniprogram/dealer_store_supply/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838456,1490109742863,0,3,'getPoAppList','JSON','/dms/po/poAppList/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838496,1490109742863,0,3,'savePoDistStatus','JSON','/dms/poDistStatus/eas/save','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838508,1490109742863,0,3,'deleteSfaPoAppList','JSON','/dms/poapplist/sfa/delete','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838510,1490109742863,0,3,'startSfaPoApp','JSON','/dms/poapp/sfa/start','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838702,1490109742863,0,3,'queueSavePurchaseOrder','JSON','/dms/poapplist/sfa/queueSavePurchaseOrder','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838753,1490109742863,0,3,'saveSfaPoAppList','JSON','/dms/poapplist/sfa/save','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838774,1490109742863,0,3,'getPoAppDetail','JSON','/dms/po/poAppDetail/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838804,1490109742863,0,3,'fnRptPoAppList','JSON','/dms/po/poAppList/poAppListForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838806,1490109742863,0,3,'getDistributionOrder','JSON','/dms/distibutionOrder/miniprogram/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392838988,1490109742863,0,3,'getSfaPoAppPage','JSON','/dms/poapppage/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:18',NULL),(1644392839021,1490109742863,0,3,'getPoSfaPoAppPage','JSON','/dms/poapppage/posfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839084,1490109742863,0,3,'getMiniProgramPoAppPage106','JSON','/dms/poapppage106/miniprogram/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839087,1490109742863,0,3,'deletePoSfaPoAppList105','JSON','/dms/poapplist105/sfa/delete','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839098,1490109742863,0,3,'getPoSfaPoAppPage106','JSON','/dms/poapppage106/posfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839221,1490109742863,0,3,'poPreList','JSON','/dms/pre/poPreList','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839261,1490109742863,0,3,'saveSfaPoPre','JSON','/dms/pre/saveSfaPoPre','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839308,1490109742863,0,3,'startSfaPoPre','JSON','/dms/pre/startSfaPoPre','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839336,1490109742863,0,3,'suspendSfaPoPre','JSON','/dms/pre/suspendSfaPoPre','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839363,1490109742863,0,3,'getSfaProduct','JSON','/dms/product/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839386,1490109742863,0,3,'saveSfaDistributeBill','JSON','/dms/po/saveSfaDistributeBill','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839450,1490109742863,0,3,'wbPoAppMasterForEas','JSON','/dms/po/wbPoAppMasterForEas','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839460,1490109742863,0,3,'aInvQueryDetail','JSON','/dms/rpt/aInvQueryDetail','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839523,1490109742863,0,3,'getDfundBalanceList','JSON','/dms/rpt/dfundBalance/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839583,1490109742863,0,3,'fnRptDfundDetail','JSON','/dms/rpt/dfundDetail/dfundDetailForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839625,1490109742863,0,3,'getDfundDetailList','JSON','/dms/rpt/dfundDetail/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839641,1490109742863,0,3,'fnRptDfundSum','JSON','/dms/rpt/dfundSum/dfundSumForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839660,1490109742863,0,3,'getTaskDetailQueryList','JSON','/dms/rpt/taskDetailQuery','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839690,1490109742863,0,3,'getTaskQueryList','JSON','/dms/rpt/taskQuery','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839720,1490109742863,0,3,'queryWjListForBizPerson','JSON','/dms/servey/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839743,1490109742863,0,3,'saveStorePickupLocation','JSON','/dms/save/storePickupLocation','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839745,1490109742863,0,3,'queryMiniprogramServeyList','JSON','/dms/serveyList/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839785,1490109742863,0,3,'cancelSfaPromotePoApp','JSON','/dms/sfa/cancelSfaPromotePoApp','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839809,1490109742863,0,3,'deleteSfaPoAppList108','JSON','/dms/sfa/deleteSfaPoAppList108','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839838,1490109742863,0,3,'getSfaPoAppPage108','JSON','/dms/sfa/getSfaPoAppPage108','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839865,1490109742863,0,3,'getProduct','JSON','/dms/product/query','{\n \"dmsMessageDTO\": {} // 必填。 dmsMessageDTO\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839925,1490109742863,0,3,'initializeAllSCRMTerminal','JSON','/dms/sfa/initializeAllSCRMTerminal','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392839930,1490109742863,0,3,'orderApprovalRecord','JSON','/dms/sfa/orderApprovalRecord','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:19',NULL),(1644392840005,1490109742863,0,3,'saveOrUpdateSfaStore','JSON','/dms/sfa/saveOrUpdateSfaStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840010,1490109742863,0,3,'saveOrUpdateSfaDistributorSupplier','JSON','/dms/sfa/saveOrUpdateSfaDistributorSupplier','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840070,1490109742863,0,3,'deletePoSfaPoAppList106','JSON','/dms/poapplist106/sfa/delete','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840144,1490109742863,0,3,'deleteMQPoSfaPoAppList106','JSON','/dms/poapplist106/sfa/deleteMQ','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840198,1490109742863,0,3,'saveSfaPromotePoApp','JSON','/dms/sfa/saveSfaPromotePoApp','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840249,1490109742863,0,3,'sfaLogin','JSON','/dms/sfaLogin','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840309,1490109742863,0,3,'getSfaStore','JSON','/dms/store/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840374,1490109742863,0,3,'saveSfaStore','JSON','/dms/store/sfa/save','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840426,1490109742863,0,3,'getsfaStoreDateKpiList','JSON','/dms/storeDateKpi/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840431,1490109742863,0,3,'storeTask','JSON','/dms/store/todoTask','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840492,1490109742863,0,3,'getSfaExpandStore','JSON','/dms/storeExpand/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840493,1490109742863,0,3,'getSfaExpandStoreList','JSON','/dms/storeExpandList/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840506,1490109742863,0,3,'getMiniprogramsSfaStoreList','JSON','/dms/storeList/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840531,1490109742863,0,3,'getDmsStoreList','JSON','/dms/storelist/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840561,1490109742863,0,3,'saveSfaSzPoApp','JSON','/dms/szpoapp/sfa/save','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840563,1490109742863,0,3,'getSfaStoreList','JSON','/dms/storelist/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840578,1490109742863,0,3,'saveSfaDealers','JSON','/dms/szdealer/sfa/save','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840584,1490109742863,0,3,'getSfaStoreUpdateList','JSON','/dms/storeupdatelist/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840643,1490109742863,0,3,'getToken','JSON','/dms/token/query','{\n \"dmsMessageDTO\": {} // 必填。 dmsMessageDTO\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840649,1490109742863,0,3,'queryCooperationStoreDelivery','JSON','/dms/weimob/cooperation_store_delivery/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840702,1490109742863,0,3,'queryDealerStoreSupply','JSON','/dms/weimob/dealer_store_supply/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840707,1490109742863,0,3,'employeeLogin','JSON','/dms/wine/employeeLogin','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840796,1490109742863,0,3,'getDealerPage','JSON','/dms/wine/getDealerPage','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840854,1490109742863,0,3,'getPoAppPage','JSON','/dms/wine/getPoAppPage','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840857,1490109742863,0,3,'getKuaidi100','JSON','/dms/wine/getKuaidi100','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840884,1490109742863,0,3,'getWineCustom','JSON','/dms/wine/getWineCustom','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840909,1490109742863,0,3,'getWineLocation','JSON','/dms/wine/getWineLocation','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840914,1490109742863,0,3,'saveOrUpdateSfaStoreSupplier','JSON','/dms/sfa/saveOrUpdateSfaStoreSupplier','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840937,1490109742863,0,3,'saveDealer','JSON','/dms/wine/saveDealer','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840961,1490109742863,0,3,'savePayVoucherPhotos','JSON','/dms/wine/savePayVoucherPhotos','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840967,1490109742863,0,3,'savePoApp','JSON','/dms/wine/savePoApp','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392840971,1490109742863,0,3,'saveWineStore','JSON','/dms/wine/saveWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:20',NULL),(1644392841015,1490109742863,0,3,'saveWineSubPack','JSON','/dms/wine/saveWineSubPack','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841030,1490109742863,0,3,'submitWineStore','JSON','/dms/wine/submitWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841032,1490109742863,0,3,'callRechargeBill','JSON','/eas/recharge','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841070,1490109742863,0,3,'getDealerFees','JSON','/fineReport/marketingBoard/dealerFees','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841098,1490109742863,0,3,'getFa1Result','JSON','/fineReport/marketingBoard/fa1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841120,1490109742863,0,3,'getFa2AreaNameResult','JSON','/fineReport/marketingBoard/fa1AreaName','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841152,1490109742863,0,3,'getFa2Result','JSON','/fineReport/marketingBoard/fa2','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841184,1490109742863,0,3,'getFa3Result','JSON','/fineReport/marketingBoard/fa3','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841208,1490109742863,0,3,'getFa4Result','JSON','/fineReport/marketingBoard/fa4','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841238,1490109742863,0,3,'getFa5Result','JSON','/fineReport/marketingBoard/fa5','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841263,1490109742863,0,3,'getFa6Result','JSON','/fineReport/marketingBoard/fa6','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841277,1490109742863,0,3,'getFa6ShortResult','JSON','/fineReport/marketingBoard/fa6Short','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841294,1490109742863,0,3,'getFb3Market1Result','JSON','/fineReport/marketingBoard/fb3Market1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841355,1490109742863,0,3,'getFd1SubSaleResult','JSON','/fineReport/marketingBoard/fd1SubSale','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841403,1490109742863,0,3,'getFd1SaleResult','JSON','/fineReport/marketingBoard/fd1Sale','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841452,1490109742863,0,3,'getFe1MarketResult','JSON','/fineReport/marketingBoard/fe1Market','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841507,1490109742863,0,3,'getFd2SaleResult','JSON','/fineReport/marketingBoard/fd2Sale','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841566,1490109742863,0,3,'getFe1StoreResult','JSON','/fineReport/marketingBoard/fe1Store','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841568,1490109742863,0,3,'saveWineCustom','JSON','/dms/wine/saveWineCustom','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841794,1490109742863,0,3,'clearCacheForMarketing','JSON','/fineReport/marketingBoard/clearCache','{\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841808,1490109742863,0,3,'getFc1OrderResult','JSON','/fineReport/marketingBoard/fc1Order','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841847,1490109742863,0,3,'getFf1RedpackResult','JSON','/fineReport/marketingBoard/ff1Redpack','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841862,1490109742863,0,3,'getFf1RedpackLastyearResult','JSON','/fineReport/marketingBoard/ff1RedpackLastyear','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841910,1490109742863,0,3,'getFf2ScanResult','JSON','/fineReport/marketingBoard/ff2Scan','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841917,1490109742863,0,3,'getFlevelResult','JSON','/fineReport/marketingBoard/flevel','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841927,1490109742863,0,3,'getCategoryResult','JSON','/fineReport/marketingBoard/getCategory','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841982,1490109742863,0,3,'getProductResult','JSON','/fineReport/marketingBoard/getProduct','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392841984,1490109742863,0,3,'getDealerResult','JSON','/fineReport/marketingBoard/getDealer','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392841986,1490109742863,0,3,'getDealerScanCodeDetailResult','JSON','/fineReport/marketingBoard/getDealerScanCodeDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:21',NULL),(1644392842045,1490109742863,0,3,'getJxsResult','JSON','/fineReport/marketingBoard/jxs','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842047,1490109742863,0,3,'getSeriesResult','JSON','/fineReport/marketingBoard/getSeries','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842123,1490109742863,0,3,'getJxsReturnByMonth','JSON','/fineReport/marketingBoard/jxsReturnByMonth','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842195,1490109742863,0,3,'getOfficesResult','JSON','/fineReport/marketingBoard/offices','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842249,1490109742863,0,3,'getRegionalMarketCostTrackingResult','JSON','/fineReport/marketingBoard/regionalMarketCostTracking','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842310,1490109742863,0,3,'getMOBA1B1Result','JSON','/fineReport/moveOffBoard/a1b1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842364,1490109742863,0,3,'getMOBBuysSellsAndStoresForPersonalResult','JSON','/fineReport/moveOffBoard/buysSellsAndStoresForPersonal','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842372,1490109742863,0,3,'getByMainstream','JSON','/fineReport/moveOffBoard/byMainstream','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842429,1490109742863,0,3,'getMOBCategoryResult','PARAM','/fineReport/moveOffBoard/category','{\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842434,1490109742863,0,3,'clearCacheForMove','JSON','/fineReport/moveOffBoard/clearCache','{\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842491,1490109742863,0,3,'getMOBCoreTerminalResult','JSON','/fineReport/moveOffBoard/coreTerminal','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842493,1490109742863,0,3,'getCompletionAmount','JSON','/fineReport/moveOffBoard/completionAmount','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842755,1490109742863,0,3,'getMOBCoreTerminalForPersonalResult','JSON','/fineReport/moveOffBoard/coreTerminalForPersonal','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842760,1490109742863,0,3,'getMOBCoreTerminalReplenishmentResult','JSON','/fineReport/moveOffBoard/coreTerminalReplenishment','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842817,1490109742863,0,3,'getMOBFNameForStringResult','JSON','/fineReport/moveOffBoard/fNameForString','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842819,1490109742863,0,3,'getMOBFNameResult','JSON','/fineReport/moveOffBoard/fName','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842848,1490109742863,0,3,'getCompletionRate','JSON','/fineReport/moveOffBoard/completionRate','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842875,1490109742863,0,3,'getFa1Result','JSON','/fineReport/moveOffBoard/fa1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842894,1490109742863,0,3,'getMOBFc3Result','JSON','/fineReport/moveOffBoard/fc3','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842935,1490109742863,0,3,'getMOBFc1TargetResult','JSON','/fineReport/moveOffBoard/fc1Target','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842945,1490109742863,0,3,'getMOBFc1Target1Result','JSON','/fineReport/moveOffBoard/fc1Target1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392842957,1490109742863,0,3,'getMOBFd1Result','JSON','/fineReport/moveOffBoard/fd1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:22',NULL),(1644392843007,1490109742863,0,3,'getMOBFe1Result','JSON','/fineReport/moveOffBoard/fe1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843013,1490109742863,0,3,'getMOBFe3Result','JSON','/fineReport/moveOffBoard/fe3','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843078,1490109742863,0,3,'getMOBFe2Result','JSON','/fineReport/moveOffBoard/fe2','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843082,1490109742863,0,3,'getMOBFe4Result','JSON','/fineReport/moveOffBoard/fe4','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843168,1490109742863,0,3,'getIndexDefinitionResult','JSON','/fineReport/moveOffBoard/indexDefinition','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843269,1490109742863,0,3,'getMOBLevelResult','PARAM','/fineReport/moveOffBoard/level','{\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843319,1490109742863,0,3,'getMediumAndHighEnd','JSON','/fineReport/moveOffBoard/mediumAndHighEnd','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843366,1490109742863,0,3,'getMOBSalesmanBuysSellsAndStoresResult','JSON','/fineReport/moveOffBoard/salesmanBuysSellsAndStores','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843387,1490109742863,0,3,'getMOBOrgResult','JSON','/fineReport/moveOffBoard/org','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843414,1490109742863,0,3,'getMOBShipmentForPersonalResult','JSON','/fineReport/moveOffBoard/shipmentForPersonal','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843467,1490109742863,0,3,'getUserInfoPermissionResult','JSON','/fineReport/moveOffBoard/userInfoPermission','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843521,1490109742863,0,3,'getJxFlevel','JSON','/fineReport/sauceAroma/flevelForJx','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843569,1490109742863,0,3,'getJxDealerScanStock','JSON','/fineReport/sauceAroma/jxDealerScanStock','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843600,1490109742863,0,3,'getJxDistributor','JSON','/fineReport/sauceAroma/jxDistributor','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843618,1490109742863,0,3,'getJxFA1','JSON','/fineReport/sauceAroma/jxFa1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843655,1490109742863,0,3,'getJxFA3','JSON','/fineReport/sauceAroma/jxFa3','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843664,1490109742863,0,3,'getJxFA5','JSON','/fineReport/sauceAroma/jxFa5','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843679,1490109742863,0,3,'getJXFB3Market1','JSON','/fineReport/sauceAroma/jxFb3Market1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843709,1490109742863,0,3,'getJxFD1Sale','JSON','/fineReport/sauceAroma/jxFd1Sale','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843713,1490109742863,0,3,'getJxFD1Subsale','JSON','/fineReport/sauceAroma/jxFd1subsale','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843730,1490109742863,0,3,'getJXFE1Market','JSON','/fineReport/sauceAroma/jxFe1Market','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843775,1490109742863,0,3,'getJxIndex','JSON','/fineReport/sauceAroma/jxIndex','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843784,1490109742863,0,3,'getJxProduct','JSON','/fineReport/sauceAroma/jxProduct','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843840,1490109742863,0,3,'getJxRegion','JSON','/fineReport/sauceAroma/jxRegion','{\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843856,1490109742863,0,3,'getAccumulatedBusiness','JSON','/fineReport/supplyChain/accumulatedBusiness','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843899,1490109742863,0,3,'getBaseSineInventory','JSON','/fineReport/supplyChain/baseSineInventory','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843908,1490109742863,0,3,'getBaseWine','JSON','/fineReport/supplyChain/baseWine','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843959,1490109742863,0,3,'getBOMVersionManagement','JSON','/fineReport/supplyChain/bomVersionManagement','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392843965,1490109742863,0,3,'getCapacity','JSON','/fineReport/supplyChain/capacity','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:23',NULL),(1644392844027,1490109742863,0,3,'getClosingThisYear','JSON','/fineReport/supplyChain/closingThisYear','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844078,1490109742863,0,3,'getFinishedProductWarehouse','JSON','/fineReport/supplyChain/finishedProductWarehouse','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844129,1490109742863,0,3,'getFinishedProductWarehouses','JSON','/fineReport/supplyChain/finishedProductWarehouses','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844161,1490109742863,0,3,'getFinishedProductInventory','JSON','/fineReport/supplyChain/finishedProductInventorie','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844180,1490109742863,0,3,'getJxs','JSON','/fineReport/supplyChain/jxs','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844213,1490109742863,0,3,'getLastMonthMaterials','JSON','/fineReport/supplyChain/lastMonthMaterials','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844232,1490109742863,0,3,'getLuzhouFlavor','JSON','/fineReport/supplyChain/luzhouFlavor','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844251,1490109742863,0,3,'getMaotaiFlavor','JSON','/fineReport/supplyChain/maotaiFlavor','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844264,1490109742863,0,3,'getMonthResults','JSON','/fineReport/supplyChain/month','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844267,1490109742863,0,3,'getMonthlyPackaging','JSON','/fineReport/supplyChain/monthlyPackaging','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844295,1490109742863,0,3,'getJXJxs','JSON','/fineReport/sauceAroma/jxJxs','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844302,1490109742863,0,3,'getPackageInventory','JSON','/fineReport/supplyChain/packageInventory','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844325,1490109742863,0,3,'getJxOffice','JSON','/fineReport/sauceAroma/jxOffice','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844358,1490109742863,0,3,'getPackagingMaterialInventory','JSON','/fineReport/supplyChain/packagingMaterialInventory','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844379,1490109742863,0,3,'getPackagingMaterialLoss','JSON','/fineReport/supplyChain/packagingMaterialLoss','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844385,1490109742863,0,3,'getProductionQuantity','JSON','/fineReport/supplyChain/ProductionQuantity','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844406,1490109742863,0,3,'getPackingMaterialDetails','JSON','/fineReport/supplyChain/packingMaterialDetails','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844445,1490109742863,0,3,'getPlanForThisMonth','JSON','/fineReport/supplyChain/planForThisMonth','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844448,1490109742863,0,3,'getPackagingMaterialProcurement','JSON','/fineReport/supplyChain/packagingMaterialProcurement','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844453,1490109742863,0,3,'getProductPlan','JSON','/fineReport/supplyChain/productPlan','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844507,1490109742863,0,3,'getProductionOrder','JSON','/fineReport/supplyChain/productionOrder','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844513,1490109742863,0,3,'getProductProduction','JSON','/fineReport/supplyChain/productProduction','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844514,1490109742863,0,3,'getPurchaseOrder','JSON','/fineReport/supplyChain/purchaseOrder','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844574,1490109742863,0,3,'getRateProductPackaging','JSON','/fineReport/supplyChain/rateProductPackaging','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844575,1490109742863,0,3,'getSalesDelivery','JSON','/fineReport/supplyChain/salesDelivery','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844580,1490109742863,0,3,'getQualityInspectionDetails','JSON','/fineReport/supplyChain/qualityInspectionDetails','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844599,1490109742863,0,3,'getSupplierInspection','JSON','/fineReport/supplyChain/supplierInspection','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844601,1490109742863,0,3,'getSuppliercg','JSON','/fineReport/supplyChain/suppliercg','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844635,1490109742863,0,3,'getWineBeLoaded','JSON','/fineReport/supplyChain/wineBeLoaded','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844638,1490109742863,0,3,'getAOGTimeliness','JSON','/fineReport/supplyChainBoardXS/getAOGTimeliness','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844647,1490109742863,0,3,'getCapacityUtilization','JSON','/fineReport/supplyChainBoardXS/getCapacityUtilization','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844676,1490109742863,0,3,'getTimelyProcurement','JSON','/fineReport/supplyChain/timelyProcurement','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844711,1490109742863,0,3,'getDaQuPercentage','JSON','/fineReport/supplyChainBoardXS/getDaQuPercentage','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844717,1490109742863,0,3,'getFinishedProductTop10','JSON','/fineReport/supplyChainBoardXS/getFinishedProductTop10','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844788,1490109742863,0,3,'getInspectQualifiedRate','JSON','/fineReport/supplyChainBoardXS/getInspectQualifiedRate','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844818,1490109742863,0,3,'getLiquorPercentage','JSON','/fineReport/supplyChainBoardXS/getLiquorPercentage','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844839,1490109742863,0,3,'getLiquorStandardPracticalDetail','JSON','/fineReport/supplyChainBoardXS/getLiquorStandardPracticalDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844877,1490109742863,0,3,'getPackAmount','JSON','/fineReport/supplyChainBoardXS/getPackAmount','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844890,1490109742863,0,3,'getLiquorStandardPractical','JSON','/fineReport/supplyChainBoardXS/getLiquorStandardPractical','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844941,1490109742863,0,3,'getPackAttritionRate','JSON','/fineReport/supplyChainBoardXS/getPackAttritionRate','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844944,1490109742863,0,3,'getPackDetail','JSON','/fineReport/supplyChainBoardXS/getPackDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392844970,1490109742863,0,3,'getPackInventorySituation','JSON','/fineReport/supplyChainBoardXS/getPackInventorySituation','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:24',NULL),(1644392845001,1490109742863,0,3,'getPackPercentage','JSON','/fineReport/supplyChainBoardXS/getPackPercentage','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845010,1490109742863,0,3,'getPackStandardPractical','JSON','/fineReport/supplyChainBoardXS/getPackStandardPractical','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845026,1490109742863,0,3,'getPackProductAndWastage','JSON','/fineReport/supplyChainBoardXS/getPackProductAndWastage','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845066,1490109742863,0,3,'getParaphrase','JSON','/fineReport/supplyChainBoardXS/getParaphrase','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845071,1490109742863,0,3,'getPlanAndRealityPack','JSON','/fineReport/supplyChainBoardXS/getPlanAndRealityPack','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845084,1490109742863,0,3,'getProductDaysDetail','JSON','/fineReport/supplyChainBoardXS/getProductDaysDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845136,1490109742863,0,3,'getProductFinishedSituation','JSON','/fineReport/supplyChainBoardXS/getProductFinishedSituation','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845140,1490109742863,0,3,'getProductOrderDetail','JSON','/fineReport/supplyChainBoardXS/getProductOrderDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845141,1490109742863,0,3,'getPlanProductionDetail','JSON','/fineReport/supplyChainBoardXS/getPlanProductionDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845207,1490109742863,0,3,'getPurchaseAmount','JSON','/fineReport/supplyChainBoardXS/getPurchaseAmount','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845210,1490109742863,0,3,'getSupplyPurchaseAmount','JSON','/fineReport/supplyChainBoardXS/getSupplyPurchaseAmount','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845269,1490109742863,0,3,'getUnqualifiedDetail','JSON','/fineReport/supplyChainBoardXS/getUnqualifiedDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845297,1490109742863,0,3,'getSfaProduct','JSON','/ft/product/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845299,1490109742863,0,3,'getYDGoodsYield','JSON','/fineReport/supplyChainBoardXS/getYDGoodsYield','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845320,1490109742863,0,3,'employeeLogin','JSON','/ft/wine/employeeLogin','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845354,1490109742863,0,3,'getFinishedProductStorage','JSON','/fineReport/supplyChainBoardXS/getFinishedProductStorage','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845374,1490109742863,0,3,'getDealerPage','JSON','/ft/wine/getDealerPage','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845431,1490109742863,0,3,'getPdfData','JSON','/ft/wine/getPdfData','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845447,1490109742863,0,3,'getKuaidi100','JSON','/ft/wine/getKuaidi100','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845662,1490109742863,0,3,'getWineCustom','JSON','/ft/wine/getWineCustom','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845716,1490109742863,0,3,'getPoAppPage','JSON','/ft/wine/getPoAppPage','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845773,1490109742863,0,3,'getWineLocation','JSON','/ft/wine/getWineLocation','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845776,1490109742863,0,3,'getWineStorePage','JSON','/ft/wine/getWineStorePage','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845852,1490109742863,0,3,'queryContractus','JSON','/ft/wine/queryContractus','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845853,1490109742863,0,3,'saveContractPhotos','JSON','/ft/wine/saveContractPhotos','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845911,1490109742863,0,3,'saveContractus','JSON','/ft/wine/saveContractus','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392845962,1490109742863,0,3,'getProductionInStock','JSON','/fineReport/supplyChainBoardXS/getProductionInStock','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:47:25',NULL),(1644392846017,1490109742863,0,3,'savePayVoucherPhotos','JSON','/ft/wine/savePayVoucherPhotos','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846080,1490109742863,0,3,'saveDealer','JSON','/ft/wine/saveDealer','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846143,1490109742863,0,3,'savePdfImgs','JSON','/ft/wine/savePdfImgs','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846153,1490109742863,0,3,'savePoApp','JSON','/ft/wine/savePoApp','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846199,1490109742863,0,3,'saveWineCustom','JSON','/ft/wine/saveWineCustom','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846211,1490109742863,0,3,'addNewWineStore','JSON','/ft/wine/addNewWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846256,1490109742863,0,3,'saveWineStore','JSON','/ft/wine/saveWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846276,1490109742863,0,3,'saveWineQueue','JSON','/ft/wine/saveWineQueue','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846297,1490109742863,0,3,'submitWineStore','JSON','/ft/wine/submitWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846314,1490109742863,0,3,'suspendSealWine','JSON','/ft/wine/suspendSealWine','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846347,1490109742863,0,3,'getActivityPeopleSize','JSON','/h2/activityPeopleSize/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846397,1490109742863,0,3,'getUserRelationshipLevel','JSON','/h2/userRelationship/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846400,1490109742863,0,3,'getMiniprogramsSfaStoreList','JSON','/h2/storeList/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846431,1490109742863,0,3,'getUserRelationshipRecord','JSON','/h2/userRelationshipRecord/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846459,1490109742863,0,3,'callbackProcessData','JSON','/hr/oa/callbackProcessData','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846462,1490109742863,0,3,'checkJobs','JSON','/hr/oa/checkJobs','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846494,1490109742863,0,3,'checkMobile','JSON','/hr/oa/checkMobile','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846547,1490109742863,0,3,'queryDeparture','JSON','/hr/oa/departure','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846559,1490109742863,0,3,'queryPosition','JSON','/hr/oa/position','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846596,1490109742863,0,3,'saveWineSubPack','JSON','/ft/wine/saveWineSubPack','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846620,1490109742863,0,3,'queryMobileByUserId','JSON','/hr/oa/queryMobileByUserId','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846622,1490109742863,0,3,'queryPositiveTx1','JSON','/hr/oa/queryPositiveTx1','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846636,1490109742863,0,3,'queryPositiveTx2','JSON','/hr/oa/queryPositiveTx2','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846648,1490109742863,0,3,'getInviteUserFunctionLevel','JSON','/h2/InviteUserFunction/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846685,1490109742863,0,3,'getActivityPeopleList','JSON','/h2/activityPeopleList/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846687,1490109742863,0,3,'queryTx1','JSON','/hr/oa/queryTx1','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846709,1490109742863,0,3,'checkCode','JSON','/message/check/code','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846766,1490109742863,0,3,'发送短信','JSON','/message/send3','{\n \"smsMessageDTO\": {} // 必填。 smsMessageDTO\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846770,1490109742863,0,3,'queryTx2','JSON','/hr/oa/queryTx2','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846771,1490109742863,0,3,'发送短信','JSON','/message/send','{\n \"smsMessageDTO\": {} // 必填。 smsMessageDTO\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846835,1490109742863,0,3,'smsSend','JSON','/message/sms/send','{\n \"smsMessageDTO\": {} // 必填。 smsMessageDTO\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846837,1490109742863,0,3,'发送短信','JSON','/message/send2','{\n \"smsMessageDTO\": {} // 必填。 smsMessageDTO\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846900,1490109742863,0,3,'getToken','JSON','/oauth/token/query','{\n \"dmsMessageDTO\": {} // 必填。 dmsMessageDTO\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846911,1490109742863,0,3,'storeStockItemMTD','JSON','/sfa/storeStockItemMTD','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846969,1490109742863,0,3,'xmbarcodeQuery','JSON','/sfa/xmbarcode/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392846971,1490109742863,0,3,'test1','PARAM','/test/test1','{\n}',NULL,NULL,'2022-02-09 07:47:26',NULL),(1644392847048,1490109742863,0,3,'test3','JSON','/test/test3/{time}','{\n \"time\": 1 // 必填。 time\n}',NULL,NULL,'2022-02-09 07:47:27',NULL),(1644392847049,1490109742863,0,3,'test2','PARAM','/test/test2','{\n}',NULL,NULL,'2022-02-09 07:47:27',NULL),(1644392847206,1490109742863,0,3,'code','PARAM','/weimob/oauth/code','{\n \"code\": \"\" // code\n}',NULL,NULL,'2022-02-09 07:47:27',NULL),(1644392847209,1490109742863,0,3,'suspendWineStore','JSON','/ft/wine/suspendWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:47:27',NULL),(1644392847349,1490109742863,0,3,'callbackProcessData','JSON','/wms/xinmaStackData/qryCodeData','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:27',NULL),(1644392847352,1490109742863,0,3,'cancelToDoListById','JSON','/oa/workflow/cancelToDoListById','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:47:27',NULL),(1644392847449,1490109742863,0,3,'getStoreListByMobile','JSON','/sfa/getStoreListByMobile','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:47:27',NULL),(1644392880998,1490109742863,0,3,'get','JSON','/apijson/get','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881034,1490109742863,0,3,'get','JSON','/apijsonForDc/get','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881043,1490109742863,0,3,'callbackAuditZGTZSData','JSON','/audit/oa/callbackAuditZGTZSData','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881057,1490109742863,0,3,'callbackAuditData','JSON','/audit/oa/callbackAuditData','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881072,1490109742863,0,3,'callbackComprehensiveData','JSON','/comprehensive/oa/callbackComprehensiveData','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881084,1490109742863,0,3,'callbackAuditBGData','JSON','/audit/oa/callbackAuditBGData','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881126,1490109742863,0,3,'storePerformanceMTD','JSON','/dc/StorePerformanceMTD','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881185,1490109742863,0,3,'queryMiniprogramAddressDetail','JSON','/dc/addressDetail/miniprogram/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881236,1490109742863,0,3,'getCategory','JSON','/dc/category/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881292,1490109742863,0,3,'getEarnestMoney','JSON','/dc/costplan/detail/earnestMoney','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881325,1490109742863,0,3,'getCostPlanDetail','JSON','/dc/costplan/detail/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881351,1490109742863,0,3,'getVerification','JSON','/dc/costplan/verification/detail/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881356,1490109742863,0,3,'getDetailSalePlan','JSON','/dc/costplan/detail/salePlan','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881376,1490109742863,0,3,'getCostPlanSearch','JSON','/dc/costplan/search/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881402,1490109742863,0,3,'callBackFileOperationSuccess','JSON','/dc/file/operation/success/callback','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881412,1490109742863,0,3,'getHtfy','JSON','/dc/htfy/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881467,1490109742863,0,3,'XmDownloadLink','JSON','/dc/xmbarcode/download/link','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881519,1490109742863,0,3,'getProductInfo','JSON','/dc/xmbarcode/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881524,1490109742863,0,3,'judge','JSON','/dc/xmbarcode/sfa/exceptioncode','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881557,1490109742863,0,3,'getCostPlanQuery','JSON','/dc/costplan/list/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881578,1490109742863,0,3,'getCateringCancel','JSON','/dc/xmbarcode/statistical/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881584,1490109742863,0,3,'getProductInfoStatus','JSON','/dc/xmbarcode/status/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881621,1490109742863,0,3,'saveSfaCostCustomer','JSON','/dms/costcustomer/sfa/save','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881651,1490109742863,0,3,'getSfaCostCustomerPage','JSON','/dms/costcustomerpage/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881652,1490109742863,0,3,'getDealer','JSON','/dms/dealer/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881657,1490109742863,0,3,'getMiniprogramDealers','JSON','/dms/dealer/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881672,1490109742863,0,3,'getDealerByMobile','JSON','/dms/dealer/queryByMobile','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881722,1490109742863,0,3,'getSfaDealer','JSON','/dms/dealer/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881730,1490109742863,0,3,'dealerTask','JSON','/dms/dealer/todoTask','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881794,1490109742863,0,3,'dealerAmbQuery','JSON','/dms/dealerAmb/sfa/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881796,1490109742863,0,3,'getDealerAndSub','JSON','/dms/dealer/v2/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881847,1490109742863,0,3,'getSfaDealerStoreList','JSON','/dms/dealer_store_list/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881865,1490109742863,0,3,'getSfaDealerStoreSupply','JSON','/dms/dealer_store_supply/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881914,1490109742863,0,3,'getDealerProduct','JSON','/dms/dealerproduct/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392881969,1490109742863,0,3,'addDealerStockOrder','JSON','/dms/dealerstockorder/insert','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:01',NULL),(1644392882031,1490109742863,0,3,'getSfaDealerProduct','JSON','/dms/dealerproduct/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882085,1490109742863,0,3,'getDealerstockorder','JSON','/dms/dealerstockorder/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882127,1490109742863,0,3,'getMaterial','JSON','/dc/material/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882157,1490109742863,0,3,'saveDealerstockorderStatu','JSON','/dms/dealerstockorder/sfa/update','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882166,1490109742863,0,3,'callBackMiniProgramdistibutionOrder','JSON','/dms/distibutionOrder/miniprogram/callback','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882184,1490109742863,0,3,'getSfaDist','JSON','/dms/dis/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882194,1490109742863,0,3,'getProductSeries','JSON','/dms/dict/product_series','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882225,1490109742863,0,3,'saveSfaDistStatus','JSON','/dms/diststatus/sfa/save','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882239,1490109742863,0,3,'saveFeeBudget','JSON','/dms/fee/saveFeeBudget','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882314,1490109742863,0,3,'findStoreSCRM','JSON','/dms/find/findStoreSCRM','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882317,1490109742863,0,3,'fnRptConfirm','JSON','/dms/fn/rpt/confirm','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882372,1490109742863,0,3,'fnRptConfirmForXYR','JSON','/dms/fn/rpt/confirmForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882377,1490109742863,0,3,'fnRptDealerQueryForXYR','JSON','/dms/fn/rpt/dealerQueryForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882433,1490109742863,0,3,'fnRptDownload','JSON','/dms/fn/rpt/download','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882483,1490109742863,0,3,'getUnit','JSON','/dc/unit/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882489,1490109742863,0,3,'fnRptGetVcPdfUrl','JSON','/dms/fn/rpt/getVcPdfUrl','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882737,1490109742863,0,3,'getSfaDistList','JSON','/dms/disList/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882744,1490109742863,0,3,'fnRptQuery','JSON','/dms/fn/rpt/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392882753,1490109742863,0,3,'fnRptQueryForXYR','JSON','/dms/fn/rpt/queryForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:02',NULL),(1644392883020,1490109742863,0,3,'fnRptYearQueryForXYR','JSON','/dms/fn/rpt/yearQueryForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883044,1490109742863,0,3,'saveSfaFreePoApp','JSON','/dms/freePoApp/sfa/save','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883151,1490109742863,0,3,'deleteSfaPoAppList103','JSON','/dms/freePoAppList103/sfa/delete','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883201,1490109742863,0,3,'getSfaPoAppPage103','JSON','/dms/freePoAppPage103/sfa/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883230,1490109742863,0,3,'saveSfaFxPoApp','JSON','/dms/fxpoapp/sfa/save','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883248,1490109742863,0,3,'getInvoiceType','JSON','/dms/invoicetype/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883287,1490109742863,0,3,'fnRptDealerQuery','JSON','/dms/fn/rpt/dealerQuery','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883309,1490109742863,0,3,'login','JSON','/dms/login','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883336,1490109742863,0,3,'callbackLogRecord','JSON','/dms/log/callback','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883357,1490109742863,0,3,'loginCode','JSON','/dms/loginCode','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883385,1490109742863,0,3,'queryMPDealerStoreSupply','JSON','/dms/miniprogram/dealer_store_supply/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883405,1490109742863,0,3,'queryNotifyList','JSON','/dms/notify/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883436,1490109742863,0,3,'miniprogramLogin','JSON','/dms/miniprogram-login','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883488,1490109742863,0,3,'getPoAppDetail','JSON','/dms/po/poAppDetail/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883517,1490109742863,0,3,'fnRptPoAppList','JSON','/dms/po/poAppList/poAppListForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883537,1490109742863,0,3,'getPoAppList','JSON','/dms/po/poAppList/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883571,1490109742863,0,3,'getKuaidi100','JSON','/dms/kuadi100/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883589,1490109742863,0,3,'saveSfaDistributeBill','JSON','/dms/po/saveSfaDistributeBill','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883627,1490109742863,0,3,'wbPoAppMasterForEas','JSON','/dms/po/wbPoAppMasterForEas','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883691,1490109742863,0,3,'savePoDistStatus','JSON','/dms/poDistStatus/eas/save','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883701,1490109742863,0,3,'startSfaPoApp','JSON','/dms/poapp/sfa/start','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883746,1490109742863,0,3,'fnRptYearQuery','JSON','/dms/fn/rpt/yearQuery','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883757,1490109742863,0,3,'deleteSfaPoAppList','JSON','/dms/poapplist/sfa/delete','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883760,1490109742863,0,3,'queueSavePurchaseOrder','JSON','/dms/poapplist/sfa/queueSavePurchaseOrder','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883805,1490109742863,0,3,'getDistributionOrder','JSON','/dms/distibutionOrder/miniprogram/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883865,1490109742863,0,3,'saveSfaPoAppList','JSON','/dms/poapplist/sfa/save','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883887,1490109742863,0,3,'deletePoSfaPoAppList105','JSON','/dms/poapplist105/sfa/delete','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883924,1490109742863,0,3,'getPoSfaPoAppPage','JSON','/dms/poapppage/posfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883937,1490109742863,0,3,'getSfaPoAppPage','JSON','/dms/poapppage/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392883980,1490109742863,0,3,'saveMiniProgramPoAppPage106','JSON','/dms/poapppage106/miniprogram/callback','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:03',NULL),(1644392884027,1490109742863,0,3,'getPoSfaPoAppPage106','JSON','/dms/poapppage106/posfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884028,1490109742863,0,3,'poPreList','JSON','/dms/pre/poPreList','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884052,1490109742863,0,3,'startSfaPoPre','JSON','/dms/pre/startSfaPoPre','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884083,1490109742863,0,3,'suspendSfaPoPre','JSON','/dms/pre/suspendSfaPoPre','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884116,1490109742863,0,3,'getProduct','JSON','/dms/product/query','{\n \"dmsMessageDTO\": {} // 必填。 dmsMessageDTO\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884140,1490109742863,0,3,'getSfaProduct','JSON','/dms/product/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884162,1490109742863,0,3,'aInvQueryDetail','JSON','/dms/rpt/aInvQueryDetail','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884190,1490109742863,0,3,'getDfundBalanceList','JSON','/dms/rpt/dfundBalance/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884212,1490109742863,0,3,'fnRptDfundDetail','JSON','/dms/rpt/dfundDetail/dfundDetailForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884233,1490109742863,0,3,'getDfundDetailList','JSON','/dms/rpt/dfundDetail/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884241,1490109742863,0,3,'fnRptDfundSum','JSON','/dms/rpt/dfundSum/dfundSumForXYR','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884266,1490109742863,0,3,'getTaskQueryList','JSON','/dms/rpt/taskQuery','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884335,1490109742863,0,3,'getTaskDetailQueryList','JSON','/dms/rpt/taskDetailQuery','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884390,1490109742863,0,3,'saveStorePickupLocation','JSON','/dms/save/storePickupLocation','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884448,1490109742863,0,3,'deleteMQPoSfaPoAppList106','JSON','/dms/poapplist106/sfa/deleteMQ','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884514,1490109742863,0,3,'queryWjListForBizPerson','JSON','/dms/servey/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884743,1490109742863,0,3,'queryMiniprogramServeyList','JSON','/dms/serveyList/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392884803,1490109742863,0,3,'getMiniProgramPoAppPage106','JSON','/dms/poapppage106/miniprogram/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:04',NULL),(1644392885007,1490109742863,0,3,'deleteSfaPoAppList108','JSON','/dms/sfa/deleteSfaPoAppList108','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885027,1490109742863,0,3,'getSfaPoAppPage108','JSON','/dms/sfa/getSfaPoAppPage108','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885066,1490109742863,0,3,'cancelSfaPromotePoApp','JSON','/dms/sfa/cancelSfaPromotePoApp','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885107,1490109742863,0,3,'queueSaveSfaPromotePoApp','JSON','/dms/sfa/queueSaveSfaPromotePoApp','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885110,1490109742863,0,3,'orderApprovalRecord','JSON','/dms/sfa/orderApprovalRecord','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885189,1490109742863,0,3,'saveOrUpdateSfaStore','JSON','/dms/sfa/saveOrUpdateSfaStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885337,1490109742863,0,3,'saveOrUpdateSfaStoreSupplier','JSON','/dms/sfa/saveOrUpdateSfaStoreSupplier','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885473,1490109742863,0,3,'sfaLogin','JSON','/dms/sfaLogin','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885476,1490109742863,0,3,'saveSfaPromotePoApp','JSON','/dms/sfa/saveSfaPromotePoApp','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885597,1490109742863,0,3,'getMiniprogramSfaStroeSupplierList','JSON','/dms/sfastoresupplierList/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885599,1490109742863,0,3,'getSfaStore','JSON','/dms/store/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885716,1490109742863,0,3,'saveSfaStore','JSON','/dms/store/sfa/save','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885766,1490109742863,0,3,'storeTask','JSON','/dms/store/todoTask','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885816,1490109742863,0,3,'getSfaExpandStore','JSON','/dms/storeExpand/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885867,1490109742863,0,3,'getsfaStoreDateKpiList','JSON','/dms/storeDateKpi/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885880,1490109742863,0,3,'getSfaExpandStoreList','JSON','/dms/storeExpandList/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885899,1490109742863,0,3,'getMiniprogramsSfaStoreList','JSON','/dms/storeList/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885947,1490109742863,0,3,'getDmsStoreList','JSON','/dms/storelist/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392885994,1490109742863,0,3,'getSfaStoreUpdateList','JSON','/dms/storeupdatelist/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:05',NULL),(1644392886045,1490109742863,0,3,'getSfaStoreList','JSON','/dms/storelist/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886073,1490109742863,0,3,'saveSfaDealers','JSON','/dms/szdealer/sfa/save','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886096,1490109742863,0,3,'saveSfaSzPoApp','JSON','/dms/szpoapp/sfa/save','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886124,1490109742863,0,3,'getToken','JSON','/dms/token/query','{\n \"dmsMessageDTO\": {} // 必填。 dmsMessageDTO\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886152,1490109742863,0,3,'queryCooperationStoreDelivery','JSON','/dms/weimob/cooperation_store_delivery/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886158,1490109742863,0,3,'queryDealerStoreSupply','JSON','/dms/weimob/dealer_store_supply/query','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886174,1490109742863,0,3,'getDealerPage','JSON','/dms/wine/getDealerPage','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886208,1490109742863,0,3,'employeeLogin','JSON','/dms/wine/employeeLogin','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886211,1490109742863,0,3,'saveOrUpdateSfaDistributorSupplier','JSON','/dms/sfa/saveOrUpdateSfaDistributorSupplier','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886226,1490109742863,0,3,'getKuaidi100','JSON','/dms/wine/getKuaidi100','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886262,1490109742863,0,3,'getPoAppPage','JSON','/dms/wine/getPoAppPage','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886271,1490109742863,0,3,'getWineCustom','JSON','/dms/wine/getWineCustom','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886278,1490109742863,0,3,'saveDealer','JSON','/dms/wine/saveDealer','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886325,1490109742863,0,3,'getWineLocation','JSON','/dms/wine/getWineLocation','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886332,1490109742863,0,3,'savePayVoucherPhotos','JSON','/dms/wine/savePayVoucherPhotos','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886334,1490109742863,0,3,'savePoApp','JSON','/dms/wine/savePoApp','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886393,1490109742863,0,3,'saveWineSubPack','JSON','/dms/wine/saveWineSubPack','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886395,1490109742863,0,3,'saveWineCustom','JSON','/dms/wine/saveWineCustom','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886397,1490109742863,0,3,'saveWineStore','JSON','/dms/wine/saveWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886421,1490109742863,0,3,'callRechargeBill','JSON','/eas/recharge','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886453,1490109742863,0,3,'submitWineStore','JSON','/dms/wine/submitWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886464,1490109742863,0,3,'getbigAreaResult','JSON','/fineReport/marketingBoard/bigArea','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886467,1490109742863,0,3,'clearCacheForMarketing','JSON','/fineReport/marketingBoard/clearCache','{\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886484,1490109742863,0,3,'getDealerFees','JSON','/fineReport/marketingBoard/dealerFees','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886529,1490109742863,0,3,'getFa1Result','JSON','/fineReport/marketingBoard/fa1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886533,1490109742863,0,3,'getFa2AreaNameResult','JSON','/fineReport/marketingBoard/fa1AreaName','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886537,1490109742863,0,3,'getFa2Result','JSON','/fineReport/marketingBoard/fa2','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886550,1490109742863,0,3,'getFa3Result','JSON','/fineReport/marketingBoard/fa3','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886622,1490109742863,0,3,'deletePoSfaPoAppList106','JSON','/dms/poapplist106/sfa/delete','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886623,1490109742863,0,3,'getFa6Result','JSON','/fineReport/marketingBoard/fa6','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886628,1490109742863,0,3,'getFa4Result','JSON','/fineReport/marketingBoard/fa4','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886637,1490109742863,0,3,'getFa7Result','JSON','/fineReport/marketingBoard/fa7','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886685,1490109742863,0,3,'getFa5Result','JSON','/fineReport/marketingBoard/fa5','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886738,1490109742863,0,3,'getFa6ShortResult','JSON','/fineReport/marketingBoard/fa6Short','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886791,1490109742863,0,3,'getFb3Market1Result','JSON','/fineReport/marketingBoard/fb3Market1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886819,1490109742863,0,3,'getFb3Market3Result','JSON','/fineReport/marketingBoard/fb3Market3','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886845,1490109742863,0,3,'getFc1OrderResult','JSON','/fineReport/marketingBoard/fc1Order','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886875,1490109742863,0,3,'getFd1SaleResult','JSON','/fineReport/marketingBoard/fd1Sale','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886917,1490109742863,0,3,'getFd1SubSaleResult','JSON','/fineReport/marketingBoard/fd1SubSale','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886920,1490109742863,0,3,'getFe1MarketResult','JSON','/fineReport/marketingBoard/fe1Market','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886932,1490109742863,0,3,'getFf1RedpackResult','JSON','/fineReport/marketingBoard/ff1Redpack','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392886942,1490109742863,0,3,'getFf2ScanResult','JSON','/fineReport/marketingBoard/ff2Scan','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:06',NULL),(1644392887004,1490109742863,0,3,'getFlevelResult','JSON','/fineReport/marketingBoard/flevel','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887010,1490109742863,0,3,'getCategoryResult','JSON','/fineReport/marketingBoard/getCategory','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887021,1490109742863,0,3,'getDealerResult','JSON','/fineReport/marketingBoard/getDealer','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887070,1490109742863,0,3,'getSeriesResult','JSON','/fineReport/marketingBoard/getSeries','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887125,1490109742863,0,3,'getProductResult','JSON','/fineReport/marketingBoard/getProduct','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887202,1490109742863,0,3,'getJxsResult','JSON','/fineReport/marketingBoard/jxs','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887251,1490109742863,0,3,'getJxsByTypeResult','JSON','/fineReport/marketingBoard/jxsByType','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887282,1490109742863,0,3,'getJxsReturnByMonth','JSON','/fineReport/marketingBoard/jxsReturnByMonth','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887311,1490109742863,0,3,'getMonthResult','PARAM','/fineReport/marketingBoard/month','{\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887368,1490109742863,0,3,'getOfficesResult','JSON','/fineReport/marketingBoard/offices','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887418,1490109742863,0,3,'getRegionalMarketCostTrackingResult','JSON','/fineReport/marketingBoard/regionalMarketCostTracking','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887467,1490109742863,0,3,'getMOBBuysSellsAndStoresForPersonalResult','JSON','/fineReport/moveOffBoard/buysSellsAndStoresForPersonal','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887570,1490109742863,0,3,'getMOBA1B1Result','JSON','/fineReport/moveOffBoard/a1b1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887621,1490109742863,0,3,'getByMainstream','JSON','/fineReport/moveOffBoard/byMainstream','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887672,1490109742863,0,3,'clearCacheForMove','JSON','/fineReport/moveOffBoard/clearCache','{\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887701,1490109742863,0,3,'getMOBCategoryResult','PARAM','/fineReport/moveOffBoard/category','{\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887722,1490109742863,0,3,'getCompletionAmount','JSON','/fineReport/moveOffBoard/completionAmount','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887749,1490109742863,0,3,'getMOBCoreTerminalResult','JSON','/fineReport/moveOffBoard/coreTerminal','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887769,1490109742863,0,3,'getMOBCoreTerminalReplenishmentResult','JSON','/fineReport/moveOffBoard/coreTerminalReplenishment','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887799,1490109742863,0,3,'getFd2SaleResult','JSON','/fineReport/marketingBoard/fd2Sale','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887825,1490109742863,0,3,'getMOBFNameResult','JSON','/fineReport/moveOffBoard/fName','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887849,1490109742863,0,3,'getFa1Result','JSON','/fineReport/moveOffBoard/fa1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887874,1490109742863,0,3,'getMOBFa1XzchResult','JSON','/fineReport/moveOffBoard/fa1Xzch','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887903,1490109742863,0,3,'getMOBFc1TargetResult','JSON','/fineReport/moveOffBoard/fc1Target','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887925,1490109742863,0,3,'getMOBFc1Target1Result','JSON','/fineReport/moveOffBoard/fc1Target1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887962,1490109742863,0,3,'getMOBFc3Result','JSON','/fineReport/moveOffBoard/fc3','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392887970,1490109742863,0,3,'getMOBFe1Result','JSON','/fineReport/moveOffBoard/fe1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:07',NULL),(1644392888011,1490109742863,0,3,'getDealerScanCodeDetailResult','JSON','/fineReport/marketingBoard/getDealerScanCodeDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888037,1490109742863,0,3,'getMOBFe4Result','JSON','/fineReport/moveOffBoard/fe4','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888040,1490109742863,0,3,'getMOBFe2Result','JSON','/fineReport/moveOffBoard/fe2','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888065,1490109742863,0,3,'getMOBFe3Result','JSON','/fineReport/moveOffBoard/fe3','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888096,1490109742863,0,3,'getIndexDefinitionResult','JSON','/fineReport/moveOffBoard/indexDefinition','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888119,1490109742863,0,3,'getCompletionRate','JSON','/fineReport/moveOffBoard/completionRate','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888147,1490109742863,0,3,'getMediumAndHighEnd','JSON','/fineReport/moveOffBoard/mediumAndHighEnd','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888178,1490109742863,0,3,'getMOBLevelResult','PARAM','/fineReport/moveOffBoard/level','{\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888209,1490109742863,0,3,'getMOBOrgResult','JSON','/fineReport/moveOffBoard/org','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888235,1490109742863,0,3,'getMOBShipmentForPersonalResult','JSON','/fineReport/moveOffBoard/shipmentForPersonal','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888261,1490109742863,0,3,'getMOBSalesmanBuysSellsAndStoresResult','JSON','/fineReport/moveOffBoard/salesmanBuysSellsAndStores','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888288,1490109742863,0,3,'getMOBFNameForStringResult','JSON','/fineReport/moveOffBoard/fNameForString','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888315,1490109742863,0,3,'getJxFlevel','JSON','/fineReport/sauceAroma/flevelForJx','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888344,1490109742863,0,3,'getJxDistributor','JSON','/fineReport/sauceAroma/jxDistributor','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888363,1490109742863,0,3,'getJxDealerScanStock','JSON','/fineReport/sauceAroma/jxDealerScanStock','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888423,1490109742863,0,3,'getJxFA1','JSON','/fineReport/sauceAroma/jxFa1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888425,1490109742863,0,3,'getJxFA3','JSON','/fineReport/sauceAroma/jxFa3','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888498,1490109742863,0,3,'getJxFD1Sale','JSON','/fineReport/sauceAroma/jxFd1Sale','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888600,1490109742863,0,3,'getJxFD1Saletarget','JSON','/fineReport/sauceAroma/jxFd1Saletarget','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888650,1490109742863,0,3,'getMOBFd1Result','JSON','/fineReport/moveOffBoard/fd1','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888706,1490109742863,0,3,'getJXFE1Market','JSON','/fineReport/sauceAroma/jxFe1Market','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888761,1490109742863,0,3,'getJxIndex','JSON','/fineReport/sauceAroma/jxIndex','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888776,1490109742863,0,3,'getJxFD1Subsale','JSON','/fineReport/sauceAroma/jxFd1subsale','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888804,1490109742863,0,3,'getJXJxs','JSON','/fineReport/sauceAroma/jxJxs','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888811,1490109742863,0,3,'getJxOffice','JSON','/fineReport/sauceAroma/jxOffice','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888829,1490109742863,0,3,'getJxProduct','JSON','/fineReport/sauceAroma/jxProduct','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:08',NULL),(1644392888863,1490109742863,0,3,'getJxRegion','JSON','/fineReport/sauceAroma/jxRegion','{\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889015,1490109742863,0,3,'getAccumulatedBusiness','JSON','/fineReport/supplyChain/accumulatedBusiness','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889066,1490109742863,0,3,'getBaseSineInventory','JSON','/fineReport/supplyChain/baseSineInventory','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889072,1490109742863,0,3,'getBaseWine','JSON','/fineReport/supplyChain/baseWine','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889127,1490109742863,0,3,'getCapacity','JSON','/fineReport/supplyChain/capacity','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889130,1490109742863,0,3,'getBOMVersionManagement','JSON','/fineReport/supplyChain/bomVersionManagement','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889185,1490109742863,0,3,'getUserInfoPermissionResult','JSON','/fineReport/moveOffBoard/userInfoPermission','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889189,1490109742863,0,3,'getClosingThisYear','JSON','/fineReport/supplyChain/closingThisYear','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889243,1490109742863,0,3,'getFinishedProductInventory','JSON','/fineReport/supplyChain/finishedProductInventorie','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889245,1490109742863,0,3,'getFinishedProductWarehouse','JSON','/fineReport/supplyChain/finishedProductWarehouse','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889306,1490109742863,0,3,'getLastMonthMaterials','JSON','/fineReport/supplyChain/lastMonthMaterials','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889308,1490109742863,0,3,'getJxs','JSON','/fineReport/supplyChain/jxs','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889367,1490109742863,0,3,'getFinishedProductWarehouses','JSON','/fineReport/supplyChain/finishedProductWarehouses','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889373,1490109742863,0,3,'getMaotaiFlavor','JSON','/fineReport/supplyChain/maotaiFlavor','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889426,1490109742863,0,3,'getLuzhouFlavor','JSON','/fineReport/supplyChain/luzhouFlavor','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889446,1490109742863,0,3,'getMonthlyPackaging','JSON','/fineReport/supplyChain/monthlyPackaging','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889479,1490109742863,0,3,'getMonthResults','JSON','/fineReport/supplyChain/month','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889482,1490109742863,0,3,'getJxFA5','JSON','/fineReport/sauceAroma/jxFa5','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889510,1490109742863,0,3,'getPackagingMaterialInventory','JSON','/fineReport/supplyChain/packagingMaterialInventory','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889536,1490109742863,0,3,'getPackagingMaterialProcurement','JSON','/fineReport/supplyChain/packagingMaterialProcurement','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889562,1490109742863,0,3,'getPackingMaterialDetails','JSON','/fineReport/supplyChain/packingMaterialDetails','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889587,1490109742863,0,3,'getPackagingMaterialLoss','JSON','/fineReport/supplyChain/packagingMaterialLoss','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889620,1490109742863,0,3,'getPlanForThisMonth','JSON','/fineReport/supplyChain/planForThisMonth','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889641,1490109742863,0,3,'getProductPlan','JSON','/fineReport/supplyChain/productPlan','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889686,1490109742863,0,3,'getProductProduction','JSON','/fineReport/supplyChain/productProduction','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889699,1490109742863,0,3,'getProductionOrder','JSON','/fineReport/supplyChain/productionOrder','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:09',NULL),(1644392889993,1490109742863,0,3,'getPurchaseOrder','JSON','/fineReport/supplyChain/purchaseOrder','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890012,1490109742863,0,3,'getRateProductPackaging','JSON','/fineReport/supplyChain/rateProductPackaging','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890066,1490109742863,0,3,'getQualityInspectionDetails','JSON','/fineReport/supplyChain/qualityInspectionDetails','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890115,1490109742863,0,3,'getSalesDelivery','JSON','/fineReport/supplyChain/salesDelivery','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890204,1490109742863,0,3,'getSupplierInspection','JSON','/fineReport/supplyChain/supplierInspection','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890359,1490109742863,0,3,'getTimelyProcurement','JSON','/fineReport/supplyChain/timelyProcurement','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890413,1490109742863,0,3,'getSuppliercg','JSON','/fineReport/supplyChain/suppliercg','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890429,1490109742863,0,3,'getWineBeLoaded','JSON','/fineReport/supplyChain/wineBeLoaded','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890468,1490109742863,0,3,'getAOGTimeliness','JSON','/fineReport/supplyChainBoardXS/getAOGTimeliness','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890478,1490109742863,0,3,'getFinishedGoodsDetail','JSON','/fineReport/supplyChainBoardXS/getFinishedGoodsDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890520,1490109742863,0,3,'getFinishedProductStorage','JSON','/fineReport/supplyChainBoardXS/getFinishedProductStorage','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890529,1490109742863,0,3,'getLiquorPercentage','JSON','/fineReport/supplyChainBoardXS/getLiquorPercentage','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890537,1490109742863,0,3,'getFinishedProductTop10','JSON','/fineReport/supplyChainBoardXS/getFinishedProductTop10','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890551,1490109742863,0,3,'getPackageInventory','JSON','/fineReport/supplyChain/packageInventory','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890603,1490109742863,0,3,'getLiquorStandardPractical','JSON','/fineReport/supplyChainBoardXS/getLiquorStandardPractical','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890607,1490109742863,0,3,'getPackAmount','JSON','/fineReport/supplyChainBoardXS/getPackAmount','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890611,1490109742863,0,3,'getPackAttritionRate','JSON','/fineReport/supplyChainBoardXS/getPackAttritionRate','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890666,1490109742863,0,3,'getPackInventorySituation','JSON','/fineReport/supplyChainBoardXS/getPackInventorySituation','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890669,1490109742863,0,3,'getPackDetail','JSON','/fineReport/supplyChainBoardXS/getPackDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890721,1490109742863,0,3,'getPackPercentage','JSON','/fineReport/supplyChainBoardXS/getPackPercentage','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890724,1490109742863,0,3,'getPackProductAndWastage','JSON','/fineReport/supplyChainBoardXS/getPackProductAndWastage','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890775,1490109742863,0,3,'getCurrentPeriodAOG','JSON','/fineReport/supplyChainBoardXS/getCurrentPeriodAOG','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890780,1490109742863,0,3,'getCapacityUtilization','JSON','/fineReport/supplyChainBoardXS/getCapacityUtilization','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890833,1490109742863,0,3,'getParaphrase','JSON','/fineReport/supplyChainBoardXS/getParaphrase','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890836,1490109742863,0,3,'getPackStandardPractical','JSON','/fineReport/supplyChainBoardXS/getPackStandardPractical','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890918,1490109742863,0,3,'getProductDaysDetail','JSON','/fineReport/supplyChainBoardXS/getProductDaysDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890929,1490109742863,0,3,'getInspectQualifiedRate','JSON','/fineReport/supplyChainBoardXS/getInspectQualifiedRate','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:10',NULL),(1644392890994,1490109742863,0,3,'getProductOrderDetail','JSON','/fineReport/supplyChainBoardXS/getProductOrderDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891000,1490109742863,0,3,'getProductPercentage','JSON','/fineReport/supplyChainBoardXS/getProductPercentage','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891059,1490109742863,0,3,'getProductionInStock','JSON','/fineReport/supplyChainBoardXS/getProductionInStock','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891117,1490109742863,0,3,'getPurchaseAmount','JSON','/fineReport/supplyChainBoardXS/getPurchaseAmount','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891173,1490109742863,0,3,'getSupplyPurchaseAmount','JSON','/fineReport/supplyChainBoardXS/getSupplyPurchaseAmount','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891226,1490109742863,0,3,'getLiquorStandardPracticalDetail','JSON','/fineReport/supplyChainBoardXS/getLiquorStandardPracticalDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891272,1490109742863,0,3,'getUnqualifiedDetail','JSON','/fineReport/supplyChainBoardXS/getUnqualifiedDetail','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891318,1490109742863,0,3,'addNewWineStore','JSON','/ft/wine/addNewWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891369,1490109742863,0,3,'getYDGoodsYield','JSON','/fineReport/supplyChainBoardXS/getYDGoodsYield','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891433,1490109742863,0,3,'getSfaProduct','JSON','/ft/product/sfa/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891498,1490109742863,0,3,'assignWineStore','JSON','/ft/wine/assignWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891540,1490109742863,0,3,'employeeLogin','JSON','/ft/wine/employeeLogin','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891601,1490109742863,0,3,'getDealerPage','JSON','/ft/wine/getDealerPage','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891660,1490109742863,0,3,'getKuaidi100','JSON','/ft/wine/getKuaidi100','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891711,1490109742863,0,3,'getPdfData','JSON','/ft/wine/getPdfData','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891760,1490109742863,0,3,'getPoAppPage','JSON','/ft/wine/getPoAppPage','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891819,1490109742863,0,3,'getWineCustom','JSON','/ft/wine/getWineCustom','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891849,1490109742863,0,3,'getWineLocation','JSON','/ft/wine/getWineLocation','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891867,1490109742863,0,3,'getWineStorePage','JSON','/ft/wine/getWineStorePage','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891900,1490109742863,0,3,'queryContractus','JSON','/ft/wine/queryContractus','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891917,1490109742863,0,3,'getWineSubPackPage','JSON','/ft/wine/getWineSubPackPage','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891952,1490109742863,0,3,'saveContractPhotos','JSON','/ft/wine/saveContractPhotos','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392891969,1490109742863,0,3,'saveContractus','JSON','/ft/wine/saveContractus','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:11',NULL),(1644392892038,1490109742863,0,3,'savePayVoucherPhotos','JSON','/ft/wine/savePayVoucherPhotos','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892113,1490109742863,0,3,'saveWineCustom','JSON','/ft/wine/saveWineCustom','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892115,1490109742863,0,3,'savePdfImgs','JSON','/ft/wine/savePdfImgs','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892117,1490109742863,0,3,'savePoApp','JSON','/ft/wine/savePoApp','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892132,1490109742863,0,3,'getProductFinishedSituation','JSON','/fineReport/supplyChainBoardXS/getProductFinishedSituation','{\n \"request\": null // 必填。 request\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892193,1490109742863,0,3,'saveWineQueue','JSON','/ft/wine/saveWineQueue','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892207,1490109742863,0,3,'saveWineStore','JSON','/ft/wine/saveWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892249,1490109742863,0,3,'saveWineSubPack','JSON','/ft/wine/saveWineSubPack','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892251,1490109742863,0,3,'suspendSealWine','JSON','/ft/wine/suspendSealWine','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892305,1490109742863,0,3,'suspendWineStore','JSON','/ft/wine/suspendWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892307,1490109742863,0,3,'getActivityPeopleList','JSON','/h2/activityPeopleList/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892430,1490109742863,0,3,'getMiniprogramsSfaStoreList','JSON','/h2/storeList/miniprogram/query','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892460,1490109742863,0,3,'getUserRelationshipLevel','JSON','/h2/userRelationship/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892479,1490109742863,0,3,'getUserRelationshipRecord','JSON','/h2/userRelationshipRecord/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892504,1490109742863,0,3,'callbackProcessData','JSON','/hr/oa/callbackProcessData','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892550,1490109742863,0,3,'checkJobs','JSON','/hr/oa/checkJobs','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892558,1490109742863,0,3,'queryDeparture','JSON','/hr/oa/departure','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892606,1490109742863,0,3,'queryPosition','JSON','/hr/oa/position','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892613,1490109742863,0,3,'queryMobileByUserId','JSON','/hr/oa/queryMobileByUserId','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892677,1490109742863,0,3,'queryPositiveTx2','JSON','/hr/oa/queryPositiveTx2','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892727,1490109742863,0,3,'queryTx1','JSON','/hr/oa/queryTx1','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892792,1490109742863,0,3,'submitWineStore','JSON','/ft/wine/submitWineStore','{\n \"json\": null // 必填。 json\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892844,1490109742863,0,3,'queryTx2','JSON','/hr/oa/queryTx2','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392892893,1490109742863,0,3,'checkCode','JSON','/message/check/code','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:12',NULL),(1644392893042,1490109742863,0,3,'getInviteUserFunctionLevel','JSON','/h2/InviteUserFunction/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893110,1490109742863,0,3,'发送短信','JSON','/message/send','{\n \"smsMessageDTO\": {} // 必填。 smsMessageDTO\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893159,1490109742863,0,3,'发送短信','JSON','/message/send2','{\n \"smsMessageDTO\": {} // 必填。 smsMessageDTO\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893183,1490109742863,0,3,'smsSend','JSON','/message/sms/send','{\n \"smsMessageDTO\": {} // 必填。 smsMessageDTO\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893233,1490109742863,0,3,'getActivityPeopleSize','JSON','/h2/activityPeopleSize/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893282,1490109742863,0,3,'发送短信','JSON','/message/send3','{\n \"smsMessageDTO\": {} // 必填。 smsMessageDTO\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893332,1490109742863,0,3,'getMaterial','JSON','/oa/workflow/cancelToDoList','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893382,1490109742863,0,3,'cancelToDoListById','JSON','/oa/workflow/cancelToDoListById','{\n \"dto\": {} // 必填。 dto\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893413,1490109742863,0,3,'getStoreListByMobile','JSON','/sfa/getStoreListByMobile','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893431,1490109742863,0,3,'getToken','JSON','/oauth/token/query','{\n \"dmsMessageDTO\": {} // 必填。 dmsMessageDTO\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893446,1490109742863,0,3,'xmbarcodeQuery','JSON','/sfa/xmbarcode/query','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893470,1490109742863,0,3,'test1','PARAM','/test/test1','{\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893481,1490109742863,0,3,'test3','JSON','/test/test3/{time}','{\n \"time\": 1 // 必填。 time\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893498,1490109742863,0,3,'test2','PARAM','/test/test2','{\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893529,1490109742863,0,3,'code','PARAM','/weimob/oauth/code','{\n \"code\": \"\" // code\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893544,1490109742863,0,3,'callbackProcessData','JSON','/wms/xinmaStackData/qryCodeData','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1644392893579,1490109742863,0,3,'storeStockItemMTD','JSON','/sfa/storeStockItemMTD','{\n \"jsonStr\": null // 必填。 jsonStr\n}',NULL,NULL,'2022-02-09 07:48:13',NULL),(1645292852440,88888,0,3,'获取当前登录用户相关信息','JSON','/get','{\n \"curUser-()\": \"getCurrentUser()\",\n \"curId-()\": \"getCurrentUserId()\",\n \"curIdList-()\": \"getCurrentUserIdAsList()\",\n \"curContactIdList-()\": \"getCurrentContactIdList()\",\n \"User\": {\n \"id@\": \"curId\"\n },\n \"User[]\": {\n \"User\": {\n \"id{}@\": \"curContactIdList\"\n }\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"curUser-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n },\n \"curId-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 18\n ]\n },\n \"curIdList-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n },\n \"curContactIdList-()\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 25\n ]\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n }\n }\n ]\n },\n \"User[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id{}@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 16\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2022-02-19 17:47:32',NULL),(1645900574383,88888,0,3,'JOIN 副表多个引用赋值','JSON','/get','{\n \"[]\": {\n \"join\": \"</User\",\n \"Comment\": {\n \"toId\": 0\n },\n \"User\": {\n \"name*~\": \"T\",\n \"sex@\": \"[]/Comment/toId\",\n \"id@\": \"/Comment/userId\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"sex\": {\n \"notnull\": false,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"join\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"toId\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ],\n \"trend\": {\n \"top\": 1\n }\n }\n }\n ]\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"name*~\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"T\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"sex@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15,\n 3\n ]\n },\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2022-02-26 18:36:14',NULL),(1645900638636,88888,0,3,'JOIN ON 副表多个关联字段','JSON','/get','{\n \"[]\": {\n \"join\": \"</User\",\n \"Comment\": {},\n \"User\": {\n \"name*~\": \"T\",\n \"id@\": \"/Comment/userId\",\n \"sex@\": \"/Comment/toId\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"join\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {}\n ]\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"name*~\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"T\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n },\n \"sex@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 13\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2022-02-26 18:37:18',NULL),(1645907170667,88888,0,3,'JOIN ON 字段、条件、分组、聚合、排序等','JSON','/get','{\n \"[]\": {\n \"count\": 3,\n \"join\": {\n \"&/User\": {\n \"name$\": \"%a%\",\n \"tag*~\": \"a\",\n \"@combine\": \"name$,tag*~\",\n \"@column\": null,\n \"@group\": \"id\",\n \"@having\": \"(id)%7!=0\",\n \"@order\": \"id+\"\n }\n },\n \"Comment\": {\n \"@column\": \"userId\"\n },\n \"User\": {\n \"id@\": \"/Comment/userId\",\n \"@column\": \"id;count(1)\",\n \"@group\": \"id\",\n \"@having\": \"(id)%5>1\",\n \"@order\": \"id-\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"count\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 3\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"join\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"&/User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"name$\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n },\n \"tag*~\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"@combine\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"@having\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 9\n ]\n },\n \"@order\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n }\n }\n ]\n },\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id@\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n },\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"@having\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"@order\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2022-02-26 20:26:10',NULL),(1646043347836,1644567479886,0,3,'作业','JSON','/ruqi/bi/job/query','{\n \"pageIndex\": 1,\n \"pageSize\": 20,\n \"jobType\": 3,\n \"status\": 0,\n \"createUser\": \"liyifeng\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"pageIndex\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"pageSize\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 20\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n },\n \"jobType\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 3\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"status\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"createUser\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n }\n }\n ]\n}','Cookie: sensorsdata2015jssdkcross={\"distinct_id\":\"17b9513723a32d-002f03b266925b-c343365-1500000-17b9513723b7d\",\"$device_id\":\"17b9513723a32d-002f03b266925b-c343365-1500000-17b9513723b7d\",\"props\":{}}; Hm_lvt_061a2566f518f442f5f4b65db404da9e=1636688008; SESSION=ZjFlOGI5MzQtZjcwZS00YzgyLTllNWMtYmZmMmZlMjkxNjg2; TGC=TGT-2557-FF4WKrfGQmSpDLXBKgHShut88W86Fu2aJ6WqC5Pki6vmisJ5V4p7ClskxDiUJhzy6uM-RQGZGBJOB002; sidebarStatus=0; JSESSIONID=58A4D3EA80D014ADEEE16C4E1BAB1836','2022-02-28 10:15:47',NULL),(1646486052030,82001,0,3,'功能符:NULL 值','JSON','/put/User','{\n \"id\": 82001,\n \"@null\": \"tag\"\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"@null\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n }\n }\n ]\n}','','2022-03-05 13:14:12',NULL),(1646486198292,82001,0,3,'功能符:类型转换','JSON','/get/User[]','{\n \"User\": {\n \"date>\": \"2017-02-01 11:21:50\",\n \"@cast\": \"date>:DATETIME\",\n \"@explain\": true\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"date>\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"@cast\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 14\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2022-03-05 13:16:38',NULL),(1646508679123,82001,0,3,'功能符:复杂条件组合','JSON','/get/User[]','{\n \"User\": {\n \"date>\": \"2017-02-01 11:21:50\",\n \"name*~\": \"a\",\n \"contactIdList<>\": 82001,\n \"tag&$\": [\n \"%p%\",\n \"%i\"\n ],\n \"@combine\": \"(date> & !tag&$) | !(name*~ & contactIdList<>)\",\n \"@explain\": true\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"date>\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"name*~\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"contactIdList<>\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ],\n \"trend\": {\n \"top\": 2\n }\n },\n \"tag&$\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3,\n 2\n ]\n }\n ]\n },\n \"@combine\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 54,\n 46\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2022-03-05 19:31:19',NULL),(1646568413932,88888,0,3,'功能符:@combine:\"(date> | !name!) & (contactIdList<> & name!)\"','JSON','/get/User[]','{\n \"User\": {\n \"date>\": \"2017-02-01 11:21:50\",\n \"name!\": \"a\",\n \"id{}\": \">38710\",\n \"contactIdList<>\": 82001,\n \"tag|$\": [\n \"%p%\",\n \"%i\"\n ],\n \"@combine\": \"(date> | !name!) & (contactIdList<> & name!)\",\n \"@explain\": true\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"date>\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"name!\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"id{}\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"contactIdList<>\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"tag|$\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3,\n 2\n ]\n }\n ]\n },\n \"@combine\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 44\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2022-03-06 12:06:53',NULL),(1646568597233,88888,0,3,'功能符:@combine:\"(date> | name*~) & (contactIdList<> & name*~)\"','JSON','/get/User[]','{\n \"User\": {\n \"date>\": \"2017-02-01 11:21:50\",\n \"name*~\": \"a\",\n \"id{}\": \">38710\",\n \"contactIdList<>\": 82001,\n \"tag|$\": [\n \"%p%\",\n \"%i\"\n ],\n \"@combine\": \"(date> | name*~) & (contactIdList<> & name*~)\",\n \"@explain\": true\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"date>\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"name*~\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"id{}\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"contactIdList<>\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"tag|$\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3,\n 2\n ]\n }\n ]\n },\n \"@combine\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 45\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2022-03-06 12:09:57',NULL),(1646568992809,88888,0,3,'功能符:@combine:\"(date> | !name*~) & (contactIdList<> | name*~)\"','JSON','/get/User[]','{\n \"User\": {\n \"date>\": \"2017-02-01 11:21:50\",\n \"name*~\": \"a\",\n \"id{}\": \">38710\",\n \"contactIdList<>\": 82001,\n \"tag|$\": [\n \"%p%\",\n \"%i\"\n ],\n \"@combine\": \"(date> | !name*~) & (contactIdList<> | name*~)\",\n \"@explain\": true\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"date>\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"name*~\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"id{}\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"contactIdList<>\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"tag|$\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3,\n 2\n ]\n }\n ]\n },\n \"@combine\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 46\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2022-03-06 12:16:32',NULL),(1646569088993,88888,0,3,'功能符:@combine:\"date> | ((!name*~) & !(contactIdList<> | name*~))\"','JSON','/get/User[]','{\n \"User\": {\n \"date>\": \"2017-02-01 11:21:50\",\n \"name*~\": \"a\",\n \"id{}\": \">38710\",\n \"contactIdList<>\": 82001,\n \"tag|$\": [\n \"%p%\",\n \"%i\"\n ],\n \"@combine\": \"date> | ((!name*~) & !(contactIdList<> | name*~))\",\n \"@explain\": true\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"date>\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"name*~\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"id{}\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"contactIdList<>\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"tag|$\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3,\n 2\n ]\n }\n ]\n },\n \"@combine\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 49\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2022-03-06 12:18:09',NULL),(1646569248888,88888,0,3,'功能符:@combine:\"date> | ((name*~ | date>) & !contactIdList<>)\"','JSON','/get/User[]','{\n \"User\": {\n \"date>\": \"2017-02-01 11:21:50\",\n \"name*~\": \"a\",\n \"id{}\": \">38710\",\n \"contactIdList<>\": 82001,\n \"tag|$\": [\n \"%p%\",\n \"%i\"\n ],\n \"@combine\": \"date> | ((name*~ | date>) & !contactIdList<>)\",\n \"@explain\": true\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"date>\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 19\n ]\n },\n \"name*~\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"id{}\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"contactIdList<>\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 82001\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"tag|$\": {\n \"notnull\": true,\n \"type\": \"array\",\n \"valueLevel\": 0,\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ],\n \"values\": [\n {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3,\n 2\n ]\n }\n ]\n },\n \"@combine\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 45\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2022-03-06 12:20:48',NULL),(1647792882217,88888,0,3,'@having 内 @combine 复杂条件组合','JSON','/get','{\n \"Comment[]\": {\n \"Comment\": {\n \"@column\": \"toId;avg(id):avgId\",\n \"@group\": \"toId\",\n \"@having\": {\n \"toId\": \"(toId)>0\",\n \"avgId\": \"(avgId)<=100000\",\n \"@combine\": \"toId | (!avgId)\"\n }\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 18\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"@having\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"toId\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 8\n ]\n },\n \"avgId\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n },\n \"@combine\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 15\n ]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2022-03-20 16:14:42',NULL),(1647793025306,88888,0,3,'@having& 内条件 AND 逻辑连接','JSON','/get','{\n \"Comment[]\": {\n \"Comment\": {\n \"@column\": \"toId;avg(id):avgId\",\n \"@group\": \"toId\",\n \"@having&\": \"(toId)>0;(avgId)<=100000\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 18\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"@having&\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2022-03-20 16:17:05',NULL),(1647793054436,88888,0,3,'@having 内条件默认 OR 逻辑连接','JSON','/get','{\n \"Comment[]\": {\n \"Comment\": {\n \"@column\": \"toId;avg(id):avgId\",\n \"@group\": \"toId\",\n \"@having\": \"(toId)>0;(avgId)<=100000\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Comment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 18\n ]\n },\n \"@group\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 4\n ]\n },\n \"@having\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 24\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2022-03-20 16:17:34',NULL),(1648331517835,88888,0,3,'key{}:\"复杂 SQL 表达式\"','JSON','/get/User[]','{\n \"User\": {\n \"id{}\": \">38710,%5+1>2;length(name)%3<=1\",\n \"@explain\": true\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id{}\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 31\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n }\n }\n ]\n}','','2022-03-26 21:51:57',NULL),(1648334213865,88888,0,3,'复杂 全文检索/搜索/索引 match(..)AGAINST(..)','JSON','/get','{\n \"User[]\": {\n \"User\": {\n \"@column\": \"name,tag;match(name,tag)AGAINST(\'tom*\' IN NATURAL LANGUAGE MODE):match\",\n \"name_tag{}\": \"match(name,tag)AGAINST(\'tom*\' IN NATURAL LANGUAGE MODE)>=1\",\n \"@having\": \"match(name,tag)AGAINST(\'tom*\' IN NATURAL LANGUAGE MODE)<5\",\n \"@raw\": \"@column,name_tag{},@having\"\n }\n },\n \"@explain\": true\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User[]\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@column\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 70\n ]\n },\n \"name_tag{}\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 58\n ]\n },\n \"@having\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 57\n ]\n },\n \"@raw\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 26\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"@explain\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n true\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n }\n }\n ]\n}','','2022-03-26 22:36:53',NULL),(1648974063944,1648973644623,0,3,'2022-04-03 16:20 关联查询 Comment.userId = User.id','JSON','/login','{\n \"type\": 0,\n \"phone\": \"13000082003\",\n \"password\": \"123456\",\n \"version\": 1,\n \"remember\": false,\n \"format\": false,\n \"defaults\": {\n \"@database\": \"MYSQL\",\n \"@schema\": \"sys\"\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"type\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 0\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"phone\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 11\n ]\n },\n \"password\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 6\n ]\n },\n \"version\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 1\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 1\n ]\n },\n \"remember\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n false\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"format\": {\n \"notnull\": true,\n \"type\": \"boolean\",\n \"valueLevel\": 0,\n \"values\": [\n false\n ],\n \"lengthLevel\": 1,\n \"lengths\": []\n },\n \"defaults\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"@database\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 0,\n \"values\": [\n \"MYSQL\"\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n },\n \"@schema\": {\n \"notnull\": true,\n \"type\": \"string\",\n \"valueLevel\": 3,\n \"values\": [],\n \"lengthLevel\": 1,\n \"lengths\": [\n 3\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2022-04-03 08:21:03',NULL),(1648976281083,1648973644623,0,3,'test','JSON','/get','{\n \"User\": {\n \"id\": 38710\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"User\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 1,\n \"values\": [\n 38710\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 5\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2022-04-03 08:58:01',NULL),(1649087867383,82001,0,3,'oi','JSON','/get','{\n \"Moment\": {\n \"id\": 12\n }\n}','{\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"Moment\": {\n \"notnull\": true,\n \"type\": \"object\",\n \"valueLevel\": 0,\n \"values\": [\n {\n \"id\": {\n \"notnull\": true,\n \"type\": \"integer\",\n \"valueLevel\": 0,\n \"values\": [\n 12\n ],\n \"lengthLevel\": 1,\n \"lengths\": [\n 2\n ]\n }\n }\n ]\n }\n }\n ]\n}','','2022-04-04 15:57:47',NULL);
/*!40000 ALTER TABLE `Document` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2022-04-11 1:22:17