This commit is contained in:
mazhichao
2021-03-19 13:22:04 +08:00
+47 -684
View File
@@ -431,713 +431,76 @@ CREATE TABLE `onl_cgform_enhance_sql` (
-- ----------------------------
DROP TABLE IF EXISTS `onl_cgform_field`;
CREATE TABLE `onl_cgform_field` (
`id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '主键ID',
`cgform_head_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '表ID',
`db_field_name` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '字段名字',
`db_field_txt` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '字段备注',
`db_field_name_old` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '原字段名',
`db_is_key` tinyint(1) DEFAULT NULL COMMENT '是否主键 0否 1是',
`db_is_null` tinyint(1) DEFAULT NULL COMMENT '是否允许为空0否 1是',
`db_type` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '数据库字段类型',
`db_length` int(11) NOT NULL COMMENT '数据库字段长度',
`db_point_length` int(11) DEFAULT NULL COMMENT '小数点',
`db_default_val` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '表字段默认值',
`dict_field` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '字典code',
`dict_table` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '字典表',
`dict_text` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '字典Text',
`field_show_type` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '表单控件类型',
`field_href` varchar(200) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '跳转URL',
`field_length` int(11) DEFAULT NULL COMMENT '表单控件长度',
`field_valid_type` varchar(300) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '表单字段校验规则',
`field_must_input` varchar(2) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '字段是否必填',
`field_extend_json` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '扩展参数JSON',
`field_default_value` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '控件默认值,不同的表达式展示不同的结果。\r\n1. 纯字符串直接赋给默认值;\r\n2. #{普通变量}\r\n3. {{ 动态JS表达式 }}\r\n4. ${填值规则编码};\r\n填值规则表达式只允许存在一个,且不能和其他规则混用。',
`is_query` tinyint(1) DEFAULT NULL COMMENT '是否查询条件0否 1是',
`is_show_form` tinyint(1) DEFAULT NULL COMMENT '表单是否显示0否 1是',
`is_show_list` tinyint(1) DEFAULT NULL COMMENT '列表是否显示0否 1是',
`is_read_only` tinyint(1) DEFAULT '0' COMMENT '是否是只读(1是 0否)',
`query_mode` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '查询模式',
`main_table` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '外键主表名',
`main_field` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '外键主键字段',
`order_num` int(11) DEFAULT NULL COMMENT '排序',
`update_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '修改人',
`update_time` datetime DEFAULT NULL COMMENT '修改时间',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`create_by` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '创建人',
`converter` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '自定义值转换器',
`query_def_val` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '查询默认值',
`query_dict_text` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '查询配置字典text',
`query_dict_field` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '查询配置字典code',
`query_dict_table` varchar(500) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '查询配置字典table',
`query_show_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '查询显示控件',
`query_config_flag` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '是否启用查询配置1是0否',
`query_valid_type` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '查询字段校验类型',
`query_must_input` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '查询字段是否必填1是0否',
`sort_flag` varchar(3) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '是否支持排序1是0否',
PRIMARY KEY (`id`) USING BTREE,
KEY `inex_table_id` (`cgform_head_id`) USING BTREE,
KEY `idx_ocf_cgform_head_id` (`cgform_head_id`) USING BTREE
`id` varchar(32) NOT NULL COMMENT '主键ID',
`cgform_head_id` varchar(32) NOT NULL COMMENT '表ID',
`db_field_name` varchar(32) NOT NULL COMMENT '字段名字',
`db_field_txt` varchar(200) DEFAULT NULL COMMENT '字段备注',
`db_field_name_old` varchar(32) DEFAULT NULL COMMENT '原字段名',
`db_is_key` tinyint(1) DEFAULT NULL COMMENT '是否主键 0否 1是',
`db_is_null` tinyint(1) DEFAULT NULL COMMENT '是否允许为空0否 1是',
`db_type` varchar(32) NOT NULL COMMENT '数据库字段类型',
`db_length` int(11) NOT NULL COMMENT '数据库字段长度',
`db_point_length` int(11) DEFAULT NULL COMMENT '小数点',
`db_default_val` varchar(20) DEFAULT NULL COMMENT '表字段默认值',
`dict_field` varchar(100) DEFAULT NULL COMMENT '字典code',
`dict_table` varchar(255) DEFAULT NULL COMMENT '字典表',
`dict_text` varchar(100) DEFAULT NULL COMMENT '字典Text',
`field_show_type` varchar(10) DEFAULT NULL COMMENT '表单控件类型',
`field_href` varchar(200) DEFAULT NULL COMMENT '跳转URL',
`field_length` int(11) DEFAULT NULL COMMENT '表单控件长度',
`field_valid_type` varchar(300) DEFAULT NULL COMMENT '表单字段校验规则',
`field_must_input` varchar(2) DEFAULT NULL COMMENT '字段是否必填',
`field_extend_json` varchar(500) DEFAULT NULL COMMENT '扩展参数JSON',
`field_default_value` varchar(100) DEFAULT NULL COMMENT '控件默认值,不同的表达式展示不同的结果。\r\n1. 纯字符串直接赋给默认值;\r\n2. #{普通变量}\r\n3. {{ 动态JS表达式 }}\r\n4. ${填值规则编码};\r\n填值规则表达式只允许存在一个,且不能和其他规则混用。',
`is_query` tinyint(1) DEFAULT NULL COMMENT '是否查询条件0否 1是',
`is_show_form` tinyint(1) DEFAULT NULL COMMENT '表单是否显示0否 1是',
`is_show_list` tinyint(1) DEFAULT NULL COMMENT '列表是否显示0否 1是',
`is_read_only` tinyint(1) DEFAULT '0' COMMENT '是否是只读(1是 0否)',
`query_mode` varchar(10) DEFAULT NULL COMMENT '查询模式',
`main_table` varchar(100) DEFAULT NULL COMMENT '外键主表名',
`main_field` varchar(100) DEFAULT NULL COMMENT '外键主键字段',
`order_num` int(11) DEFAULT NULL COMMENT '排序',
`update_by` varchar(32) DEFAULT NULL COMMENT '修改人',
`update_time` datetime DEFAULT NULL COMMENT '修改时间',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`create_by` varchar(255) DEFAULT NULL COMMENT '创建人',
`converter` varchar(255) DEFAULT NULL COMMENT '自定义值转换器',
`query_def_val` varchar(50) DEFAULT NULL COMMENT '查询默认值',
`query_dict_text` varchar(100) DEFAULT NULL COMMENT '查询配置字典text',
`query_dict_field` varchar(100) DEFAULT NULL COMMENT '查询配置字典code',
`query_dict_table` varchar(500) DEFAULT NULL COMMENT '查询配置字典table',
`query_show_type` varchar(50) DEFAULT NULL COMMENT '查询显示控件',
`query_config_flag` varchar(3) DEFAULT NULL COMMENT '是否启用查询配置1是0否',
`query_valid_type` varchar(50) DEFAULT NULL COMMENT '查询字段校验类型',
`query_must_input` varchar(3) DEFAULT NULL COMMENT '查询字段是否必填1是0否',
`sort_flag` varchar(3) DEFAULT NULL COMMENT '是否支持排序1是0否',
PRIMARY KEY (`id`) USING BTREE,
KEY `inex_table_id` (`cgform_head_id`) USING BTREE,
KEY `idx_ocf_cgform_head_id` (`cgform_head_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
-- ----------------------------
-- Records of onl_cgform_field
-- ----------------------------
INSERT INTO `onl_cgform_field` VALUES ('0021c969dc23a9150d6f70a13b52e73e', '402860816aa5921f016aa5921f480000', 'begin_date', '开始时间', 'begin_date', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '4', 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('020c1622c3df0aef30185f57874f6959', '79091e8277c744158530321513119c68', 'bpm_status', '流程状态', null, '0', '1', 'String', '32', '0', '1', 'bpm_status', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '1', '0', 'single', '', '', '8', 'admin', '2019-05-11 15:29:47', '2019-05-11 15:29:26', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('02b20e692456403e2fed1a89a06833b4', '402860816bff91c0016bff91d2810005', 'phone', '联系方式', 'phone', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '8', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('02b4ee2612d569cd187877eea6559e87', '402881e6760269a20176026a22e70001', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '5', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('03668009f0ad92b20abb1a377197ee47', 'deea5a8ec619460c9245ba85dbc59e80', 'order_fk_id', '订单外键ID', null, '0', '0', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', 'test_order_main', 'id', '10', 'admin', '2020-05-03 01:01:18', '2019-04-20 11:42:53', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('03709092184fdf4a66b0cdb4dd10a159', '402860816bff91c0016bffa220a9000b', 'bpm_status', '流程状态', null, '0', '1', 'String', '32', '0', '1', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '46', 'admin', '2019-07-22 16:15:32', '2019-07-19 15:34:44', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('03988419d751a330c2b0f0519a531880', '997ee931515a4620bc30a9c1246429a9', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2020-05-03 00:57:44', '2020-05-03 00:56:56', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('03c105d2706c8286416833684de67406', '79091e8277c744158530321513119c68', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2019-05-11 15:29:47', '2019-05-11 15:27:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('03fd5ab69f331ff760c3f7d86b4a93f8', '4028318169e81b970169e81b97650000', 'log_content', '日志内容', 'log_content', '0', '1', 'string', '1000', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '3', null, null, '2019-04-04 19:28:36', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('045eb432c418b2b103b1e1b8e8a8a75d', 'fb7125a344a649b990c12949945cb6c1', 'age', '年龄', null, '0', '1', 'int', '32', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', null, null, null, '2019-03-26 19:24:11', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('04e4185a503e6aaaa31c243829ff4ac7', 'd35109c3632c4952a19ecc094943dd71', 'birthday', '生日', null, '0', '1', 'Date', '32', '0', '', '', '', '', 'date', '', '120', '', '0', '', '', '1', '1', '1', '0', 'single', '', '', '10', 'admin', '2021-03-16 17:09:22', '2019-03-15 14:24:35', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('04ff134cb4aae845059e10b3b85f1451', '7ea60a25fa27470e9080d6a921aabbd1', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', null, null, '2019-04-17 00:22:21', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('051dd70c504c97a028daab2af261ea35', '1acb6f81a1d9439da6cc4e868617b565', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('052dcc6f34976b66754fd99415bd22ce', '79091e8277c744158530321513119c68', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2019-05-11 15:29:47', '2019-05-11 15:27:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('054db05394e83b318f097a60bc044134', '402860816bff91c0016bffa220a9000b', 'residence_address', '户籍地址', 'residence_address', '0', '1', 'string', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '28', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('05dbdd8d9f0f84c8504faa6f24c7d4ac', '402880eb71d61d3d0171d61d3de30000', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '9', 'admin', '2020-05-03 00:54:16', '2020-05-02 23:59:33', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('05ed6a78a2e9d0c82bfa2c55898570b8', '997ee931515a4620bc30a9c1246429a9', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2020-05-03 00:57:44', '2020-05-03 00:56:56', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0604945c206e867644e9a44b4c9b20c6', 'fb19fb067cd841f9ae93d4eb3b883dc0', '2', '4', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '5', null, null, '2019-03-23 11:39:48', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('0617de6d735b37a3f80f2f35ad5d1511', '4028839a6de2ebd3016de2ebd3870000', 'size_type', '尺码类型', 'size_type', '0', '1', 'string', '2', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '13', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('0619dfc3fbf9e193534bb3460a1a9d92', 'cb2d8534a2f544bc9c618dd49da66336', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2020-02-24 17:22:42', '2020-02-24 15:15:13', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('06a1badae6119abf4ec48858a3e94e1c', '402860816bff91c0016bffa220a9000b', 'sys_org_code', '组织机构编码', 'sys_org_code', '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '43', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('06f1cfff58395ff62526b894f6182641', 'e67d26b610dd414c884c4dbb24e71ce3', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2019-04-24 11:03:32', '2019-04-24 11:02:57', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('07a307972076a392ffc61b11437f89dd', '402860816bff91c0016bff91c0cb0000', 'create_time', '创建时间', 'create_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '13', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('07f4776fd641389a8c98a85713990dce', '402860816bff91c0016bff91c0cb0000', 'update_by', '更新人', 'update_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '14', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('08a3353c11efd5f062c3076d0554b5c5', '402881e6760269a20176026d25650002', 'salary_money', '工资', 'salary_money', '0', '1', 'BigDecimal', '10', '3', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '5', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('08f002095da7c1886c86648fcec38ca9', '56efb74326e74064b60933f6f8af30ea', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('09450359eb90b40d224ec43588a62f9e', '402860816bff91c0016bff91c0cb0000', 'user_id', '用户ID', 'user_id', '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '3', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('0a1208184216d9f5defa41d08040a8fd', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'sex', 'sex', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0a453a63e33654aa1b9ee2affa854a6d', '4fb8e12a697f4d5bbe9b9fb1e9009486', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2020-11-26 17:28:14', '2020-04-10 19:47:01', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0a4cdcb7e54f614ab952024f6c72bb6d', 'beee191324fd40c1afec4fda18bd9d47', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2019-04-13 13:41:13', '2019-04-13 13:40:56', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('0acfc27e493c204f72d42b6dc00a2ded', '53a3e82b54b946c2b904f605875a275c', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2020-05-08 23:42:51', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0adc06d9b497684bcbb5a781e044517c', '1acb6f81a1d9439da6cc4e868617b565', 'supplier', '供应商', null, '0', '1', 'String', '32', '0', '', 'air_china_ supplier', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '15', 'admin', '2019-06-10 14:47:14', '2019-04-24 16:52:00', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('0ae4bc5d4921aa240d814e018ddb7779', '56efb74326e74064b60933f6f8af30ea', 'money', '订单总额', null, '0', '1', 'double', '10', '3', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0b3e833ac4aae3a13ec2f8ae460708f8', '4028839a6de2ebd3016de2ebd3870000', 'no', '预算表序号', 'no', '0', '1', 'string', '50', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '8', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('0b63bd30b8646901310d8d0374df5587', '18f064d1ef424c93ba7a16148851664f', 'fuwenb', '富文本', null, '0', '1', 'Text', '0', '0', '', '', '', '', 'umeditor', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '17', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0ba1bf74e2a6a94a7a63010ec7230706', '402860816bff91c0016bffa220a9000b', 'update_time', '更新时间', 'update_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '42', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('0bd10d416252bdc6b169056d2a1a4a68', '402880e5721355dd01721355dd390000', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '3', null, null, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0bf9c178173bd86eec4144b819cfac0b', '18f064d1ef424c93ba7a16148851664f', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0c34ebfe2e2a619d42db13f93d2a2d40', 'b81de38db24047b497d476516f8a0865', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', null, null, '2020-02-24 14:56:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('0cba94f0497d4d3d829fc573f58eff9f', '402860816bff91c0016bffa220a9000b', 'graduation_time', '毕业时间', 'graduation_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '16', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('0cbc49f419e3545613d0b2eb9c025eae', '402881e6760269a20176026a22e70001', 'fuwenb', '富文本', null, '0', '1', 'Text', '0', '0', '', '', '', '', 'umeditor', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '17', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0d00c51a4ddad2598a587fadc968a8b2', '402860816bff91c0016bff91cfea0004', 'sys_org_code', '组织机构编码', 'sys_org_code', '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '13', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('0ddd0c0afc967a9ab6050401ca62a4be', 'e67d26b610dd414c884c4dbb24e71ce3', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2019-04-24 11:03:32', '2019-04-24 11:02:57', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('0e157503e648653836a602f5bbad4e83', '402881e6760269a201760269a2af0000', 'files', '文件', null, '0', '1', 'string', '1000', '0', '', '', '', '', 'file', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '15', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0e5fb96c3f5a37c758eb7f5d1322694f', '402880e5721355dd01721355dd390000', 'good_name', '商品名字', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '7', null, null, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0e6952db23d5a578ab74344a299c2322', '18f064d1ef424c93ba7a16148851664f', 'birthday', '时间', null, '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '13', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0f4c07621dcd465f7954b4297962db9b', '18f064d1ef424c93ba7a16148851664f', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('0fb6fa76c5c78a1e957dbb411e110738', '402860816bff91c0016bff91d8830007', 'politically_status', '政治面貌', 'politically_status', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '7', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('101a73df0aa5199ac05c4ce92a4f0e3e', '4adec929a6594108bef5b35ee9966e9f', 'name', '姓名', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '#{sysUserCode}', '0', '1', '1', '0', 'single', '', '', '3', 'admin', '2020-04-10 19:43:38', '2020-04-10 19:35:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('105be0f7d827a0324216cf8af268fb9e', '09fd28e4b7184c1a9668496a5c496450', 'birthday', '客户生日', null, '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2020-05-14 21:19:21', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('105c8e44ad13026b641f0363601f30f3', 'e5464aa8fa7b47c580e91593cf9b46dc', 'num', '循环数量', null, '0', '1', 'int', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2019-04-24 17:09:49', '2019-04-24 11:05:10', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('105e112bddec9cc23e853b9c68af1b05', '18f064d1ef424c93ba7a16148851664f', 'radio', 'radio', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'radio', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('10b78ee7954f230117689a226c44c0db', '402880e570a5d7000170a5d700f50000', 'descc', '描述', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '11', null, null, '2020-03-04 21:58:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('1130f1e252533529bb1167b896dffe32', 'deea5a8ec619460c9245ba85dbc59e80', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-05-03 01:01:18', '2019-04-20 11:41:19', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('117fc4ba649d6690a3ac482ad5e4ad38', '56870166aba54ebfacb20ba6c770bd73', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2020-12-07 18:30:12', '2019-04-20 11:38:39', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('12aa08f8e948e2b60b40a7b6429c866b', '56efb74326e74064b60933f6f8af30ea', 'order_code', '订单编码', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '${shop_order_num}', '0', '1', '1', '1', 'single', '', '', '7', 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('13246645b7650491b70205d99703ca06', '402860816aa5921f016aa5dedcb90009', 'bpm_status', '流程状态', 'bpm_status', '0', '1', 'string', '32', '0', '1', 'bpm_status', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '1', '0', 'group', '', '', '8', 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('135dd0ee50712722db65b8762bd487ea', '8994f2817b5a45d9890aa04497a317c5', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '4', null, null, '2019-03-23 11:39:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('13d9c22ba0a4f09111d115022a148d23', '09fd28e4b7184c1a9668496a5c496450', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2020-05-14 21:19:21', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('14b7e6161d1f908e13026439af302a66', '3b5e18da618247539481816995b6bf9f', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('14ec4c83c29966ab42b6b718c5a3e774', '7ea60a25fa27470e9080d6a921aabbd1', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', null, null, '2019-04-17 00:22:21', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('154ba4ca5328866010e042086ffc2b81', '56efb74326e74064b60933f6f8af30ea', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('16363d0bc125125e395772278d0cf22e', '4b556f0168f64976a3d20bfb932bc798', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', null, null, '2019-04-12 23:38:28', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('168426cf1016cf0b99705ae1c4c8591e', '402880e5721355dd01721355dd390000', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', null, null, '1', null, null, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('16918ac159cb6313fec1dea7ac4bd0a0', '402880eb71d52dc30171d52dc3a10000', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '10', null, null, '2020-05-02 19:37:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('169318fa19cf5acf77c58a98c2d5a6bf', '18f064d1ef424c93ba7a16148851664f', 'remakr', 'markdown', null, '0', '1', 'Text', '0', '0', '', '', '', '', 'markdown', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '16', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('179c290e383009810fb738f07bd5af8d', '402860816bff91c0016bff91d2810005', 'id', 'id', 'id', '1', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '1', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('17cbda69da9dd3632625a0647c259070', '73162c3b8161413e8ecdca7eb288d0c9', 'wl_name', '物料名字', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '1', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('182d038554a6ee7ddfd07763aaa10686', '53a3e82b54b946c2b904f605875a275c', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-05-08 23:42:51', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('18fefb2257901f05508f8ec13ada78a3', 'e5464aa8fa7b47c580e91593cf9b46dc', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2019-04-24 17:09:48', '2019-04-24 11:05:10', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('191705159cea35e8cbacb326f172be94', 'd35109c3632c4952a19ecc094943dd71', 'search_sel', '搜索下拉', null, '0', '1', 'string', '100', '0', '', 'role_code', 'sys_role', 'role_name', 'sel_search', '', '120', null, '0', '', '', '1', '1', '1', '0', 'single', '', '', '18', 'admin', '2021-03-16 17:09:22', '2020-11-26 18:02:20', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('1973ef1d3728fbff2db6a352e001f5f7', 'fb7125a344a649b990c12949945cb6c1', 'name', '用户名', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '5', 'admin', '2019-03-26 19:24:11', '2019-03-26 19:01:52', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('19a9bf071cf3aa3b2ef94344d2300616', '402881e6760269a20176026d25650002', 'create_by', '创建人', 'create_by', '0', '1', 'string', '32', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '12', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('1ab5be1f937f393b3e5cc214ef1b855c', '7ea60a25fa27470e9080d6a921aabbd1', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', null, null, '2019-04-17 00:22:21', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('1b071c02de2830f9fe82a542b31cce7f', '3b5e18da618247539481816995b6bf9f', 'age', '年龄', null, '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('1b6c7b95028bed9ff656d65557dd2bdf', '402860816bff91c0016bffa220a9000b', 'user_id', '用户id', 'user_id', '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '3', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('1c2f307e315bac77a6d3f02e88387a43', 'deea5a8ec619460c9245ba85dbc59e80', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2020-05-03 01:01:18', '2019-04-20 11:41:19', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('1c3b2ad0a52ecb47fa7fd53f25875beb', 'deea5a8ec619460c9245ba85dbc59e80', 'price', '价格', null, '0', '1', 'double', '32', '0', '', '', '', '', 'text', '', '120', 'n', '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2020-05-03 01:01:18', '2019-04-20 11:41:19', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('1c4d25a12388c80d397bb4f4664fe4e6', '4b556f0168f64976a3d20bfb932bc798', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', null, null, '2019-04-12 23:38:28', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('1cfe967bb457cbaa6e041e45d019b583', '402860816bff91c0016bff91c7010001', 'update_time', '更新时间', 'update_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '10', 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('1d0037eba10efd76be45150479399a7e', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', null, null, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('1d712db19506ee40b2c1ef5a611baf88', '53a3e82b54b946c2b904f605875a275c', 'name', '商品名字', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2020-05-08 23:42:51', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('1d95bdf1120c5a1776df022d0a571f21', '4fb8e12a697f4d5bbe9b9fb1e9009486', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '7', 'admin', '2020-11-26 17:28:14', '2020-04-10 19:47:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('1e37ae77c0d406d4ff3c5442ec63cd1f', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', null, null, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('1e3d8cfbf12155559666a23ee2c6c5ca', 'e5464aa8fa7b47c580e91593cf9b46dc', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2019-04-24 17:09:49', '2019-04-24 11:05:10', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('1ed46fdeb289bd7805c9b83332ccd3b4', '402860816bff91c0016bff91d2810005', 'relation', '关系', 'relation', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '4', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('1eda61dece35abd76b8d8d49e1b139b8', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'content', '描述', null, '0', '1', 'string', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', null, null, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('1f0c6d33b79713fe79fb30373c81f6f7', '758334cb1e7445e2822b60e807aec4a3', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', null, null, '2019-10-18 18:02:09', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('1fa5f07b3e70d4925b69b2bf51309421', '56870166aba54ebfacb20ba6c770bd73', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-12-07 18:30:12', '2019-04-20 11:38:39', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('209ddb923d8dab9f454d56d82c0cc725', '3d447fa919b64f6883a834036c14aa67', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2020-02-21 17:58:46', '2020-02-20 16:19:00', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('20ff34fb0466089cb633d73d5a6f08d6', 'd35109c3632c4952a19ecc094943dd71', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2021-03-16 17:09:22', '2019-03-15 14:24:35', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('2113a4ec7b88b4820dcbbdf96e46bbb7', 'fbc35f067da94a70adb622ddba259352', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', null, null, '2019-07-03 19:44:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('2150e48b2cb6072d2d8ecd79a7daf7cc', '402860816bff91c0016bff91ca7e0002', 'create_time', '创建时间', 'create_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '10', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('2323239efb5a40b73034411868dfc41d', 'fb19fb067cd841f9ae93d4eb3b883dc0', 'update_by', '更新人登录名称', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '3', null, null, '2019-03-23 11:39:48', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('239448a05801af1b07232d30d8e610b1', '402881e6760269a20176026a22e70001', 'dep_sel', '选择部门', null, '0', '1', 'string', '200', '0', '', '', '', '', 'sel_depart', '', '120', null, '0', '', '#{sysOrgCode}', '0', '1', '1', '0', 'single', null, null, '19', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('23f42061ed218bdbc1262913c071e1cd', 'e5464aa8fa7b47c580e91593cf9b46dc', 'iz_valid', '启动状态', null, '0', '1', 'int', '2', '0', '', 'air_china_valid', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '12', 'admin', '2019-04-24 17:09:49', '2019-04-24 14:09:06', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('242cc59b23965a92161eca69ffdbf018', 'd35109c3632c4952a19ecc094943dd71', 'age', '年龄', null, '0', '1', 'int', '32', '0', '', '', '', '', 'text', 'http://www.baidu.com', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2021-03-16 17:09:22', '2019-03-15 14:24:35', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('24588340313096179b9ec0b49f40bed3', '18f064d1ef424c93ba7a16148851664f', 'sel_mut', '下拉多选', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'list_multi', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '11', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('2640235b9638547f1776b930bd8c12b4', '997ee931515a4620bc30a9c1246429a9', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-05-03 00:57:44', '2020-05-03 00:56:56', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('265702edb8872e322fe72d3640e34ac5', '402860816bff91c0016bff91cfea0004', 'from_time', '开始日期', 'from_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '3', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('26645f6f6eb2646033bad11e0402d7e4', '18f064d1ef424c93ba7a16148851664f', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('2739ab1ece4d6053ba931bb6572f4ed8', '4028839a6de2ebd3016de2ebd3870000', 'iz_valid', '启用状态', 'iz_valid', '0', '1', 'string', '2', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '9', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('273b0fd37640a9ef1614e987e2bc44a0', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'pics', '图片', null, '0', '1', 'string', '500', '0', '', '', '', '', 'image', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', null, null, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('281ce0b5343cd42b28825d7df16422f1', 'b81de38db24047b497d476516f8a0865', 'vv', 'vv', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', null, null, '2020-02-24 14:56:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('283f42283b9d0bf3b95ba3384ab2d255', '758334cb1e7445e2822b60e807aec4a3', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', null, null, '2019-10-18 18:02:09', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('284864d99fddfdcb00e188e3a512cb28', '1acb6f81a1d9439da6cc4e868617b565', 'no', '预算表序号', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '10', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('2889d3cef706f91e092d76a56b8055be', '402860816bff91c0016bff91cda80003', 'order_no', '序号', 'order_no', '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '8', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('28900c8e76dd0e77193cbd85b5bc6af8', '402881e6760269a201760269a2af0000', 'remakr', 'markdown', null, '0', '1', 'Text', '0', '0', '', '', '', '', 'markdown', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '16', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('29e4abea55d9fa7dbbd0c8dbbb2b3756', '402860816bff91c0016bff91cda80003', 'update_time', '更新时间', 'update_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '12', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('2aef31179964d0a5a945df7bddff00ae', '53a3e82b54b946c2b904f605875a275c', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2020-05-08 23:42:51', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('2c70edc7d5a9861239c6537ae0eb39c7', '18f064d1ef424c93ba7a16148851664f', 'dep_sel', '选择部门', null, '0', '1', 'string', '200', '0', '', '', '', '', 'sel_depart', '', '120', null, '0', '', '#{sysOrgCode}', '0', '1', '1', '0', 'single', '', '', '19', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('2c9be627e7cab7f5a2ae9c7ca7ce94a2', 'cb2d8534a2f544bc9c618dd49da66336', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2020-02-24 17:22:42', '2020-02-24 15:15:14', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('2d53a66f0b72d820b86ff445e2181d76', 'beee191324fd40c1afec4fda18bd9d47', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2019-04-13 13:41:13', '2019-04-13 13:40:56', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('2d8366d934e3c3a060496c115c7a438e', '402881e6760269a20176026a22e70001', 'sex', '下拉框', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '8', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '1');
INSERT INTO `onl_cgform_field` VALUES ('2dfc4c81926f678c5f8d5ffd27858201', 'e2faf977fdaf4b25a524f58c2441a51c', 'account', '用户编码', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('2e0374878fb3d5be3b0b3f868a97fb59', '09fd28e4b7184c1a9668496a5c496450', 'sex', '客户性别', null, '0', '1', 'string', '1', '0', '', 'sex', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2020-05-14 21:19:21', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('2e5275b6407e1b4265af8519077fa4a5', 'd3ae1c692b9640e0a091f8c46e17bb01', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', null, null, '2019-07-24 14:47:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('2e66b9db37648389e0846e2204111732', '73162c3b8161413e8ecdca7eb288d0c9', 'has_child', '是否有子节点', null, '0', '1', 'string', '3', '0', '', 'valid_status', '', '', 'list', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '10', 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('2e6740e79d51ac935d673b7d207611d2', '18f064d1ef424c93ba7a16148851664f', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('2e6f741fa96a49a0adccc7b4682c1cef', '4fb8e12a697f4d5bbe9b9fb1e9009486', 'name', '名称', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '#{sysUserName}', '0', '1', '1', '0', 'single', '', '', '3', 'admin', '2020-11-26 17:28:14', '2020-04-10 19:47:01', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('2ee58d8e4844dfe1fa6b1b841ae0b312', '402860816bff91c0016bff91d2810005', 'politically_status', '政治面貌', 'politically_status', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '7', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('2f111722eb3a994450e67e3211fd69a8', '402860816bff91c0016bff91ca7e0002', 'id', 'id', 'id', '1', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '1', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('30143cc3de69c413828f9fba20662026', '402860816bff91c0016bffa220a9000b', 'healthy', '健康状况', 'healthy', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '12', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('306e3fb9c87ca6442cefbd61f498f1f7', '402881e6760269a201760269a2af0000', 'dep_sel', '选择部门', null, '0', '1', 'string', '200', '0', '', '', '', '', 'sel_depart', '', '120', null, '0', '', '#{sysOrgCode}', '0', '1', '1', '0', 'single', null, null, '19', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('3087aa8f38c787e066a886d950a9edfa', '05a3a30dada7411c9109306aa4117068', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2020-05-12 22:39:41', '2020-05-06 11:34:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('310c86bfd1e67500774c208d601acdc3', '56870166aba54ebfacb20ba6c770bd73', 'xiala', '下拉多选', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'list_multi', '', '120', null, '0', '', '', '1', '1', '1', '0', 'single', '', '', '9', 'admin', '2020-12-07 18:30:12', '2020-11-30 21:08:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('31193dc8ceacf979e4042e784ea8278a', '402880e570a5d7000170a5d700f50000', 'order_fk_id', '订单外键ID', null, '0', '0', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '10', null, null, '2020-03-04 21:58:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('315eab14c7d9de37434b3cb7fa7b054d', '18f064d1ef424c93ba7a16148851664f', 'files', '文件', null, '0', '1', 'string', '1000', '0', '', '', '', '', 'file', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '15', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('31fd90306c3942f09cb79deabbf2f541', '402860816bff91c0016bff91d2810005', 'employee_id', '员工ID', 'employee_id', '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', 'oa_employee_info', 'id', '2', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('336495117e3a31351fed6963b950dddb', '402860816bff91c0016bffa220a9000b', 'inside_transfer', '内部工作调动情况', 'inside_transfer', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '37', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('34138092d743d4232341a920efd2699e', '402880eb71d52dc30171d52dc3a10000', 'name', '名称', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '#{sysUserName}', '0', '1', '1', '0', 'single', null, null, '3', null, null, '2020-05-02 19:37:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('345c8b48e1e128e77c4c6e2b36512804', '402860816aa5921f016aa5dedcb90009', 'create_by', '创建人', 'create_by', '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '2', 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('34625a911b39e0596690c1a15f784448', '402880e570a5d7000170a5d700f50000', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '5', null, null, '2020-03-04 21:58:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('3489a6451bbbcabc0f39ca04b0dd62f2', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', null, null, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('34ecf29484ffd4b287bd34b52cf89775', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'name', 'name', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('351faaeb2dd8105e9c66f678211c9d4f', 'dbf4675875e14676a3f9a8b2b8941140', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', null, null, '2019-05-27 18:02:07', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('35417ba3993afe3405e1e0b9abbd7e1b', '402880e5721355dd01721355dd390000', 'num', '数量', null, '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '9', null, null, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('354b2ce39c5e8ec3f0bbb01bf8ff0fb7', '32f75e4043ef4070919dbd4337186a3d', 'content', '描述', null, '0', '1', 'String', '300', '0', '', '', '', '', 'textarea', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2019-04-11 10:15:31', '2019-03-28 15:24:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('35ca1c8aa1501bc8a79c880928841f18', '402860816aa5921f016aa5921f480000', 'update_by', '修改人id', 'update_by', '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '11', 'admin', '2019-05-11 15:31:55', '2019-05-11 14:26:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('3635793767371c6db9f76b4b79f9d321', '402860816bff91c0016bff91d8830007', 'create_time', '创建时间', 'create_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '11', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('370a6eebc2d732eaf121fe0830d853a6', 'e5464aa8fa7b47c580e91593cf9b46dc', 'wl_code', '物料编码', null, '0', '1', 'String', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '7', 'admin', '2019-04-24 17:09:49', '2019-04-24 11:05:10', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('37462a4d78968d0e432d746423603b81', '3d447fa919b64f6883a834036c14aa67', 'province', '省份', null, '0', '1', 'String', '100', '0', '', '', '{table:\'sys_category\',txt:\'name\',key:\'id\',linkField:\'city,area\',idField:\'id\',pidField:\'pid\', condition:\" pid = \'1230769196661510146\' \" }', '', 'link_down', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '2', 'admin', '2020-02-21 17:58:46', '2020-02-20 16:19:00', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('37e2548874f09ef7d08642a30bc918fa', 'fbc35f067da94a70adb622ddba259352', 'group_name', '小组名', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', null, null, '2019-07-03 19:44:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('391e7cbd9f29743b11bb555c50547b1f', '32f75e4043ef4070919dbd4337186a3d', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('396c36fa5320975851d06772d10ea7b1', 'cb2d8534a2f544bc9c618dd49da66336', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2020-02-24 17:22:42', '2020-02-24 15:15:14', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('3acd1b022fd8cb6b99534161fa3d6a24', 'd35109c3632c4952a19ecc094943dd71', 'ceck', 'checkbox', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'checkbox', '', '120', null, '0', '', '', '1', '1', '1', '0', 'single', '', '', '16', 'admin', '2021-03-16 17:09:22', '2020-11-26 18:02:20', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('3b439859f98e30e34d25e983eb22e408', '402860816bff91c0016bff91c7010001', 'award_time', '获奖时间', 'award_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '3', 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('3b67be0187044a0d023fc2c4c7eceabc', '402881e6760269a20176026d25650002', 'bonus_money', '奖金', 'bonus_money', '0', '1', 'double', '10', '2', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '6', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('3bf44e68de518f3ddf72b87671d0ff90', '8994f2817b5a45d9890aa04497a317c5', 'update_by', '更新人登录名称', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '3', null, null, '2019-03-23 11:39:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('3cd2061ea15ce9eeb4b7cf2e544ccb6b', 'd35109c3632c4952a19ecc094943dd71', 'file_kk', '附件', null, '0', '1', 'String', '500', '0', '', '', '', '', 'file', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '13', 'admin', '2021-03-16 17:09:22', '2019-06-10 20:06:57', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('3cfd4d60c7d8409ae716a579bcb0910d', '402860816bff91c0016bff91c0cb0000', 'sys_org_code', '组织机构编码', 'sys_org_code', '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '16', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('3e32f6c30c9028872388f70743c5d6a5', '402860816bff91c0016bff91c0cb0000', 'reason', '申请理由', 'reason', '0', '1', 'string', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '9', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('3e70d1c516c3533c6698300665c669e1', '402860816bff91c0016bff91c0cb0000', 'id', 'id', 'id', '1', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '1', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:31', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('3ef0a9ed04605267f7fa304a8c353576', '05a3a30dada7411c9109306aa4117068', 'name', '用户名', null, '0', '1', 'string', '32', '0', '', 'username', 'tj_user_report', 'name', 'popup', '', '120', null, '0', '', '', '1', '1', '1', '0', 'single', '', '', '7', 'admin', '2020-05-12 22:39:41', '2020-05-06 11:34:31', 'admin', '', '', '', '', '', 'text', '0', null, null, '1');
INSERT INTO `onl_cgform_field` VALUES ('3eff1d21b946e23d7f83de977962d9cf', '402880eb71d61d3d0171d61d3de30000', 'main_id', '主表ID', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-11-26 17:28:14', '2020-05-02 23:59:33', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('3f2ace8f968a0e5b91d1340ee2957cda', '402860816bff91c0016bff91d8830007', 'real_name', '姓名', 'real_name', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '3', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('3f7f7720ee65648cb2850fccedf7be9d', '53a3e82b54b946c2b904f605875a275c', 'contents', '商品简介', null, '0', '1', 'Text', '0', '0', '', '', '', '', 'umeditor', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '10', 'admin', '2020-05-08 23:42:51', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('3f9deca6c193f0b2609113713956ad19', '86bf17839a904636b7ed96201b2fa6ea', 'order_main_id', '订单ID', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', 'ces_order_main', 'id', '11', 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('40471eb4560bf0bbd2ffef17d48a269d', 'dbf4675875e14676a3f9a8b2b8941140', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', null, null, '2019-05-27 18:02:07', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('404b516d4f2229f292783db595b02ba1', '402860816bff91c0016bff91d8830007', 'update_time', '更新时间', 'update_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '13', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('405de5ea82e54138a0613dd41b006dfb', '56870166aba54ebfacb20ba6c770bd73', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2020-12-07 18:30:12', '2019-04-20 11:38:39', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('40675bb9f053aabf8823ddf4b5389141', 'b81de38db24047b497d476516f8a0865', 'aa', 'aa', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', null, null, '2020-02-24 14:56:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('4164314d6a51d100169a29872b7504d8', '402860816bff91c0016bff91ca7e0002', 'cert_time', '发证时间', 'cert_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '3', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('41d4215c01b0d26871f2cb83d3e532ae', '402860816bff91c0016bff91c0cb0000', 'bpm_status', '流程状态', null, '0', '1', 'String', '32', '0', '1', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '17', 'admin', '2019-07-19 18:09:01', '2019-07-19 15:35:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('422a44a15fa39fd57c3c23eb601f7c03', '56870166aba54ebfacb20ba6c770bd73', 'descc', '描述', null, '0', '1', 'String', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2020-12-07 18:30:12', '2019-04-20 11:38:39', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('42cccfa014c9e131a0a1b23f563d3688', '402860816bff91c0016bffa220a9000b', 'sex', '性别', 'sex', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '6', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('4312f618c83e07db82e468b81a1eaa45', '402860816bff91c0016bffa220a9000b', 'photo', '照片', 'photo', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '20', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('4355aaad8679a1adf8578b20310e93c1', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('435b57180fc995e3c4ec42516963bca3', '4028839a6de2ebd3016de2ebd3870000', 'wl_code', '物料编码', 'wl_code', '0', '1', 'string', '60', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '6', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('44bdc595f1e565fc053e01134b92bb47', 'd3ae1c692b9640e0a091f8c46e17bb01', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', null, null, '2019-07-24 14:47:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('44e81e24d2384b0f187e8f69eda55390', '402860816bff91c0016bff91cda80003', 'create_time', '创建时间', 'create_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '10', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('45c0a1a89a1e2a72533b9af894be1011', '27fc5f91274344afa7673a732b279939', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2019-07-01 16:28:20', '2019-07-01 16:26:42', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('45d59eb647257fcbcb9d143ff1ba2080', 'deea5a8ec619460c9245ba85dbc59e80', 'pro_type', '产品类型', null, '0', '1', 'String', '32', '0', '', 'sex', '', '', 'radio', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2020-05-03 01:01:18', '2019-04-23 20:54:08', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('469b250595f15dfebe69991d72e4bfb2', 'e9faf717024b4aae95cff224ae9b6d97', 'name', '员工姓名', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('46be01bef342519e268902d0d36a7473', 'deea5a8ec619460c9245ba85dbc59e80', 'descc', '描述', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '11', 'admin', '2020-05-03 01:01:18', '2019-04-20 11:41:19', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('46f1a875f86a4f48d0540ad0d5e667d7', '56870166aba54ebfacb20ba6c770bd73', 'order_date', '下单时间', null, '0', '1', 'Date', '32', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '1', '1', '1', '0', 'single', '', '', '7', 'admin', '2020-12-07 18:30:12', '2019-04-20 11:38:39', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('47c21a6b45e59a6b70bb9c0cc4510a68', '1acb6f81a1d9439da6cc4e868617b565', 'integral_val', '积分值', null, '0', '1', 'int', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '13', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('47fa05530f3537a1be8f9e7a9e98be82', 'd35109c3632c4952a19ecc094943dd71', 'sex', '性别', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'list', '', '120', '', '0', '', '', '1', '1', '1', '0', 'single', '', '', '7', 'admin', '2021-03-16 17:09:22', '2019-03-15 14:24:35', 'admin', '', '', '', '', '', null, '0', null, null, '1');
INSERT INTO `onl_cgform_field` VALUES ('4851697fdf63709d2bc7451b7415f4af', '32f75e4043ef4070919dbd4337186a3d', 'sex', '性别', null, '0', '1', 'String', '32', '0', '1', 'sex', '', '', 'list', '', '120', null, '0', '', '', '1', '1', '1', '0', 'single', '', '', '6', 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('485a8ddce2c033f88af674ec98b68e32', '402860816bff91c0016bffa220a9000b', 'create_time', '创建时间', 'create_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '40', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('48fad8b8ac3f9226294c1078807646ae', '402881e6760269a20176026a22e70001', 'birthday', '时间', null, '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '13', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('492a462b212fc34b0ee70e872684ed7e', '7ea60a25fa27470e9080d6a921aabbd1', 'name', '用户名', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', null, null, '2019-04-17 00:22:21', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('499a5dac033a01ce58009e4c5b786697', 'e9faf717024b4aae95cff224ae9b6d97', 'age', '员工年龄', null, '0', '1', 'int', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('49cd3dbd4f7f7cf0d19b1ee1045cfa69', 'e67d26b610dd414c884c4dbb24e71ce3', 'post_code', '岗位编码', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', 'admin', '2019-04-24 11:03:32', '2019-04-24 11:02:57', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('4ad94222c025b56fb0833a88a1514aeb', '86bf17839a904636b7ed96201b2fa6ea', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('4b136f953675fffcc1b6d7d6d414d57e', '402880eb71d61d3d0171d61d3de30000', 'date', '日期', null, '0', '1', 'string', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '#{date}', '0', '1', '1', '0', 'single', '', '', '4', 'admin', '2020-11-26 17:28:14', '2020-05-02 23:59:33', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('4b1d4d7a1c1f7d5b99ae6c6a6d91b403', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'dated', '生日', null, '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '10', 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('4ba7c553ca4babcec75273c531cd65e1', '402860816bff91c0016bff91cfea0004', 'workplace', '工作单位', 'workplace', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '5', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('4c2cba9fc950333421c4193576b8384d', '32f75e4043ef4070919dbd4337186a3d', 'salary', '工资', null, '0', '1', 'double', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '10', 'admin', '2019-04-11 10:15:32', '2019-03-28 15:24:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('4c4f4067fa31737f3ff9e088130ef793', '4adec929a6594108bef5b35ee9966e9f', 'sex', '性别', null, '0', '1', 'String', '200', '0', '', 'sex', '', '', 'list', '', '120', null, '0', '', '{{ 2 }}', '0', '1', '1', '0', 'single', '', '', '4', 'admin', '2020-04-10 19:43:38', '2020-04-10 19:35:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('4c570c5cf05590348e12621ca62773cf', '402860816aa5921f016aa5921f480000', 'name', '请假人', 'name', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '2', 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('4cacfa054e96791ab938b5c8f8e02cd1', '27fc5f91274344afa7673a732b279939', 'bpm_status', '流程状态', null, '0', '1', 'String', '2', '0', '', 'bpm_status', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', null, null, '2019-07-01 16:28:20', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('4dc3f7e772564de45773a8379adc4335', '3b5e18da618247539481816995b6bf9f', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('4e3760f9068aee4318123d85fbf2ebf9', '53a3e82b54b946c2b904f605875a275c', 'good_type_id', '商品分类', null, '0', '1', 'string', '32', '0', '', '0', 'ces_shop_type', 'id,pid,name,has_child', 'sel_tree', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '11', 'admin', '2020-05-08 23:42:51', '2020-05-07 22:51:42', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('4f718d95ad9de33eac18fd0663e4c1f1', '32f75e4043ef4070919dbd4337186a3d', 'birthday', '生日', null, '0', '1', 'Date', '32', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '1', '1', '1', '0', 'single', '', '', '8', 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('4f7cba71de7afe6efbd024f5f9935521', '402860816bff91c0016bff91cda80003', 'to_time', '截止时间', 'to_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '4', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('4fa29e880104e0ed0cb9143d801b209f', '18f064d1ef424c93ba7a16148851664f', 'checkbox', 'checkbox', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'checkbox', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '10', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('4faa7848b92f05bcb3cf03de34af9ff2', 'cb2d8534a2f544bc9c618dd49da66336', 'ddd', 'dd', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2020-02-24 17:22:42', '2020-02-24 15:15:14', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('506c9b0b2331a24e5c284274d28fe569', '27fc5f91274344afa7673a732b279939', 'kkk', '描述', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2019-07-01 16:28:20', '2019-07-01 16:26:42', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('508eb28e1409a2a9501cdf6fd7eb24c7', 'dbf4675875e14676a3f9a8b2b8941140', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', null, null, '2019-05-27 18:02:07', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('509a4f63f02e784bc04499a6a9be8528', 'd35109c3632c4952a19ecc094943dd71', 'update_by', '更新人登录名称', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2021-03-16 17:09:22', '2019-03-15 14:24:35', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('519f68557b953fc2d38400182b187366', '402860816bff91c0016bffa220a9000b', 'residence_type', '户籍类别', 'residence_type', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '13', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('52ee861bc1b62cd8e4f10632b3d9d1b2', '79091e8277c744158530321513119c68', 'name', '顺序会签标题', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', 'admin', '2019-05-11 15:29:47', '2019-05-11 15:27:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5531fb261c77e9d12f7cca1af528f70a', '05a3a30dada7411c9109306aa4117068', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-05-12 22:39:41', '2020-05-06 11:34:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('553a250fb89de39e4ba9f8450fd72ade', '05a3a30dada7411c9109306aa4117068', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2020-05-12 22:39:41', '2020-05-06 11:34:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('555f9d43db20204128d76e22226ca36e', '402881e6760269a201760269a2af0000', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '2', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('5562a7242e4978f02e6d3a08d5828bbf', '53a3e82b54b946c2b904f605875a275c', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2020-05-08 23:42:51', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('5562ad3165b1399f97a48f5f06d7fa06', '3b5e18da618247539481816995b6bf9f', 'ccc', 'cc', null, '0', '1', 'string', '1000', '0', '', '', '', '', 'umeditor', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '10', 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('56a7800e4e476812c74217c2aad781aa', '32feeb502544416c9bf41329c10a88f4', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2019-08-23 20:03:40', '2019-07-02 18:23:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('56cd0a76f922bf76d982b24a509e4782', '4028839a6de2ebd3016de2ebd3870000', 'create_time', '创建日期', 'create_time', '0', '1', 'Date', '0', '0', null, null, null, null, 'date', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '3', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('56e247f12d62b49cd9bd537e3efecf16', '402860816bff91c0016bff91c0cb0000', 'create_by', '创建人', 'create_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '12', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('57552a4f0b7b5c096ab8985ced57cc7d', 'cb2d8534a2f544bc9c618dd49da66336', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-02-24 17:22:42', '2020-02-24 15:15:14', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('581d8e8ce270b762458121b1dea0be9a', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', null, null, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('588400f6ebcdd0bc9bb560dd36636af9', 'e2faf977fdaf4b25a524f58c2441a51c', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('58a96f945912d33b64ebf5dee98156dc', '402860816bff91c0016bffa220a9000b', 'mobile', '手机号', 'mobile', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '19', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('58eea85add4788b83c893092434bc413', 'fb19fb067cd841f9ae93d4eb3b883dc0', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '4', null, null, '2019-03-23 11:39:48', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('59ae1e853668c676e85329aa029c68a6', '402860816bff91c0016bff91c0cb0000', 'status', '状态(1:申请中 2:通过)', 'status', '0', '1', 'string', '2', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '11', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5a043c7ae042e48f50d1fb0bb3d760a8', '402880eb71d61d3d0171d61d3de30000', 'code', '编码', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '${order_num_rule_param}', '0', '1', '1', '0', 'single', '', '', '2', 'admin', '2020-11-26 17:28:14', '2020-05-02 23:59:33', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('5a1ab458d88bb766f92c3d791495cdcd', '402860816bff91c0016bff91d2810005', 'age', '年龄', 'age', '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '5', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5a48150409b0960173f091558d1611d0', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('5a4ef083dd572114aeb581b6828de545', '402860816bff91c0016bff91c7010001', 'award_name', '获奖名称', 'award_name', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '5', 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5a621f27aa443fe9eccc73717e4fa172', '4028318169e81b970169e81b97650000', 'method', '请求java方法', 'method', '0', '1', 'string', '500', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '8', null, null, '2019-04-04 19:28:36', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5a655b208d6318ed02f236f15a319b5f', 'fbc35f067da94a70adb622ddba259352', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', null, null, '2019-07-03 19:44:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5a6f88710c49bbe8e2e0ca58e149abad', '402860816bff91c0016bff91cda80003', 'create_by', '创建人', 'create_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '9', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5a7ce5af50f28d613d8beea7c866ae0c', '402881e6760269a20176026d25650002', 'update_by', '修改人', 'update_by', '0', '1', 'string', '32', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '14', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5ab702dbc37d6fd8d3a1093fda7223bf', '53a3e82b54b946c2b904f605875a275c', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2020-05-08 23:42:51', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('5b17ba693745c258f6b66380ac851e5f', 'd35109c3632c4952a19ecc094943dd71', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '1', 'admin', '2021-03-16 17:09:22', '2019-03-15 14:24:35', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('5c76f5ecc774d7339eb0c2199c0052bc', '402860816bff91c0016bff91c0cb0000', 'biz_no', '编号', 'biz_no', '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '2', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5c8c8d573e01e4f40b5a7c451515e1d2', '32feeb502544416c9bf41329c10a88f4', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2019-08-23 20:03:40', '2019-07-02 18:23:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5dfbea516ee2390d712eace5405c5219', '402860816bff91c0016bff91ca7e0002', 'create_by', '创建人', 'create_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '9', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5e4484b7348dc3e59a0c58bdc3828cc0', '27fc5f91274344afa7673a732b279939', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2019-07-01 16:28:20', '2019-07-01 16:26:42', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5e4ac29ac2007ceabf93368330290a42', '402860816bff91c0016bff91d8830007', 'order_no', '序号', 'order_no', '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '9', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('5e729f9823b5cc96c50b0b7c0f07eb05', '402880e5721355dd01721355dd390000', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '2', null, null, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('5e991844962b2f3c42237445fdf2cd19', '402881e6760269a20176026a22e70001', 'remakr', 'markdown', null, '0', '1', 'Text', '0', '0', '', '', '', '', 'markdown', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '16', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('5f13f7087caa0bbf47e5eba01d0d0443', '05a3a30dada7411c9109306aa4117068', 'contents', '请假原因', null, '0', '1', 'string', '500', '0', '', '', '', '', 'markdown', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '11', 'admin', '2020-05-12 22:39:41', '2020-05-06 11:34:31', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('5f5ac4d37fd1a3a09e2b19f0d4d99c0f', '4adec929a6594108bef5b35ee9966e9f', 'code', '编码', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '${order_num_rule_param}', '0', '1', '1', '0', 'single', '', '', '2', 'admin', '2020-04-10 19:43:38', '2020-04-10 19:35:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('5f718d8968d908cd2e4de6ee4c74d644', '402880eb71d61d3d0171d61d3de30000', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '7', 'admin', '2020-05-03 00:54:16', '2020-05-02 23:59:33', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('60b3b452232904f5a1130348bc1eab53', '402881e6760269a20176026d25650002', 'sys_org_code', '所属部门编码', 'sys_org_code', '0', '1', 'string', '64', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '16', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('6130dbb6d36bab8ee9154e7ab58af34c', '402880e570a5d7000170a5d700f50000', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '1', null, null, '2020-03-04 21:58:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('617349b18dab429009ccd304fd7d459c', '4028839a6de2ebd3016de2ebd3870000', 'update_by', '更新人', 'update_by', '0', '1', 'string', '50', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '4', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('61c7a0058c264dd746eb35e6f50fc15b', '402860816aa5921f016aa5dedcb90009', 'update_time', '更新日期', 'update_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '5', 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('6232ade7e2a0c1e97e2c0945b32e61b6', '402860816bff91c0016bffa220a9000b', 'paying_social_insurance', '是否上社保', 'paying_social_insurance', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '32', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('6352d477b6b2751780c5852e92d0daa6', '402880eb71d61d3d0171d61d3de30000', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2020-05-03 00:54:16', '2020-05-02 23:59:33', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('635e09afc01aad757faacf1321465c23', 'b81de38db24047b497d476516f8a0865', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', null, null, '2020-02-24 14:56:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('6490a98dccb6df218feaeb4ce11bc03b', '402860816aa5921f016aa5921f480000', 'update_time', '修改时间', 'update_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '10', 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('654362725195829005036b3db47ec826', '402860816bff91c0016bffa220a9000b', 'post', '职务', 'post', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '4', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('6603058186832c4ff9e8c6e43baa5c3d', '86bf17839a904636b7ed96201b2fa6ea', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('66a7ef842bc34e105a90186e48167ef2', 'dbf4675875e14676a3f9a8b2b8941140', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', null, null, '2019-05-27 18:02:07', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('671e62c685bc86bde3cef0e023418fb4', '05a3a30dada7411c9109306aa4117068', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2020-05-12 22:39:41', '2020-05-06 11:34:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('686dea2621feadcd9b4c611df046adb4', '86bf17839a904636b7ed96201b2fa6ea', 'price', '价格', null, '0', '1', 'double', '10', '3', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('68769fa7e4696e3a28f4cecf63076b7b', '402860816bff91c0016bff91ca7e0002', 'order_no', '序号', 'order_no', '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '8', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('68861523516849eff46a0df045f1031b', '402881e6760269a201760269a2af0000', 'birthday', '时间', null, '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '13', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6915257f75506f72789e61bb155f49bd', '402881e6760269a20176026a22e70001', 'sel_search', '下拉搜索', null, '0', '1', 'string', '32', '0', '', 'username', 'sys_user', 'username', 'sel_search', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '12', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('69666f21896136af16a6303aff440156', '402860816bff91c0016bffa220a9000b', 'nation', '民族', 'nation', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '11', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('69d11490788fecfc9fb7d74bf449ba86', '32f75e4043ef4070919dbd4337186a3d', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('69e568501d10281d061311d3db15e6af', '18f064d1ef424c93ba7a16148851664f', 'user_sel', '选择用户', null, '0', '1', 'string', '200', '0', '', '', '', '', 'sel_user', '', '120', null, '0', '', '#{sysUserCode}', '0', '1', '1', '0', 'single', '', '', '18', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6a0082c8ffbae092e99689520f1c83f7', '4fb8e12a697f4d5bbe9b9fb1e9009486', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '9', 'admin', '2020-11-26 17:28:14', '2020-04-10 19:47:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6a30c2e6f01ddd24349da55a37025cc0', 'd35109c3632c4952a19ecc094943dd71', 'top_pic', '头像', null, '0', '1', 'String', '500', '0', '', '', '', '', 'image', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '12', 'admin', '2021-03-16 17:09:22', '2019-06-10 20:06:56', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6ab2e3d9b944701b405fb1a5ed167012', '86bf17839a904636b7ed96201b2fa6ea', 'zong_price', '单品总价', null, '0', '1', 'double', '10', '3', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '10', 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6b21f5239671023ca769b6717a51130e', '402880eb71d61d3d0171d61d3de30000', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '8', 'admin', '2020-05-03 00:54:16', '2020-05-02 23:59:33', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6b6f3aa00b8e73fb785154e795189739', '402860816aa5921f016aa5dedcb90009', 'start_time', '会签发起时间', 'start_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '7', 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('6beb40bdd28af22e06b26640bc0c3f4d', '3b5e18da618247539481816995b6bf9f', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6c35eb97737e9f86279939d264454a94', '86bf17839a904636b7ed96201b2fa6ea', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6cfb5acbbb69782bf0c7043b53f595b2', '402860816bff91c0016bff91cda80003', 'update_by', '更新人', 'update_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '11', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('6d03a7774a50c6e6f76dbc7a8269beba', '3b5e18da618247539481816995b6bf9f', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6d4a4414b55ad5b6f31c8fb327dad834', '09fd28e4b7184c1a9668496a5c496450', 'address', '常用地址', null, '0', '1', 'string', '300', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '11', 'admin', '2020-05-14 21:19:21', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6e5c9d8e8b7eb6980ec246cb813b180b', '4fb8e12a697f4d5bbe9b9fb1e9009486', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '10', 'admin', '2020-11-26 17:28:14', '2020-04-10 19:47:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6ed8d9acef3cccd1b8fd659b3b538023', '53a3e82b54b946c2b904f605875a275c', 'price', '价格', null, '0', '1', 'BigDecimal', '10', '5', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2020-05-08 23:42:51', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6f38a07ea2b1065315a6b89a02af5bb4', '3b5e18da618247539481816995b6bf9f', 'name', '用户名', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('6f73e96a659c200c083006b6fce1f043', '402860816bff91c0016bff91ca7e0002', 'cert_name', '证书名称', 'cert_name', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '4', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('71197d255e05c9f6db67fd30380953c7', '402881e6760269a201760269a2af0000', 'sel_mut', '下拉多选', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'list_multi', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '11', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('7154c75d754a5f88bef2b68829baf576', '4028318169e81b970169e81b97650000', 'operate_type', '操作类型', 'operate_type', '0', '1', 'string', '10', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '4', null, null, '2019-04-04 19:28:36', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('71afb00a1971125ecfa13b4dfa49665e', '402860816bff91c0016bff91cfea0004', 'order_no', '序号', 'order_no', '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '8', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('71d5b0675df5aba71688c9d7d75cccee', '4028318169e81b970169e81b97650000', 'log_type', '日志类型(1登录日志,2操作日志)', 'log_type', '0', '1', 'string', '10', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '2', null, null, '2019-04-04 19:28:36', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('71e9ab74dae687837365e50eed090591', '1acb6f81a1d9439da6cc4e868617b565', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7280c56a210e6a47794fda855d0c6abb', 'fbc35f067da94a70adb622ddba259352', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', null, null, '2019-07-03 19:44:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('72e784af5c47bbbc0534b29bf656bd61', '4028839a6de2ebd3016de2ebd3870000', 'id', '主键', 'id', '1', '0', 'string', '36', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '0', '0', '0', 'group', null, null, '1', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7365f05f551092716223d5d449efd8c7', 'beee191324fd40c1afec4fda18bd9d47', 'name', 'ss', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', 'admin', '2019-04-13 13:41:13', '2019-04-13 13:40:56', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('73d3b57df0c6cf15c21970f4dd979319', '402880e5721355dd01721355dd390000', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '5', null, null, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('73dc6089556f3446e39d42df3dedb2db', '402880e570a5d7000170a5d700f50000', 'num', '数量', null, '0', '1', 'int', '32', '0', '', '', '', '', 'text', '', '120', 'n', '0', '', '', '0', '1', '1', '0', 'single', null, null, '8', null, null, '2020-03-04 21:58:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('742329ccdb185cf5d3e0b5b0c05dcffa', '402860816bff91c0016bffa220a9000b', 'interest', '兴趣爱好', 'interest', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '34', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('744444a7ada3bbb05c6b114b5ba0d477', '402860816aa5921f016aa5dedcb90009', 'id', 'id', 'id', '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '1', 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('74af99545de724a4abd2022581a36026', 'fb7125a344a649b990c12949945cb6c1', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2019-03-26 19:24:11', '2019-03-26 19:01:52', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('756b07656386dbd91245f7ffda32ae61', '402860816bff91c0016bff91d8830007', 'id', 'id', 'id', '1', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '1', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('75841fa7c75ebdc94655bd5e44fbc9f6', '402860816bff91c0016bffa220a9000b', 'native_place', '籍贯', 'native_place', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '10', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('75ba781c67711bed71bba1c3e3c68e11', '8994f2817b5a45d9890aa04497a317c5', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '0', null, null, '2019-03-23 11:39:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('75e82f151e8cc12455f7f0d25bf4dac0', '4028839a6de2ebd3016de2ebd3870000', 'wl_name', '物料名称', 'wl_name', '0', '1', 'string', '100', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '7', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7639c1bc4327f1f674ffeab2ca261134', '32f75e4043ef4070919dbd4337186a3d', 'update_by', '更新人登录名称', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('766ca866b72d118f5d8883de46a8c043', '4028839a6de2ebd3016de2ebd3870000', 'supplier', '供应商', 'supplier', '0', '1', 'string', '32', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '15', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('76c64fdb02faecd86c817cbb58d293c2', '402881e6760269a201760269a2af0000', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '6', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('783a5ff64c6b0da3fd4cd540ddc662bf', '402881e6760269a20176026a22e70001', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', null, null, '1', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('78a40344207c791b8d7ac7de721ce1c4', '79091e8277c744158530321513119c68', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2019-05-11 15:29:47', '2019-05-11 15:27:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('78eb7e3b77cd49f9acb9b024cfe834e1', '402860816aa5921f016aa5dedcb90009', 'create_time', '创建日期', 'create_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '3', 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('78fd804d93dc716fd8c2ccc45f788565', 'fb7125a344a649b990c12949945cb6c1', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2019-03-26 19:24:11', '2019-03-26 19:01:52', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('790c9f3dba773ed9a6ea3ad627393f57', '402860816bff91c0016bffa220a9000b', 'archives_location', '档案所在地', 'archives_location', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '36', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7a665ed90ef64b4d65632c941e5795b2', '4b556f0168f64976a3d20bfb932bc798', 'sex', '性别', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', null, null, '2019-04-12 23:38:29', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7a697e4053445f07ad1a56a246f593e7', '86bf17839a904636b7ed96201b2fa6ea', 'good_name', '商品名字', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('7abe873f542bb5d7ce1cd8c798a62073', '402881e6760269a20176026a22e70001', 'checkbox', 'checkbox', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'checkbox', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '10', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('7af06f4d732ff15c114ed51acc1c8891', '402881e6760269a20176026a22e70001', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '4', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('7b4c181e4ebd76022f75535ed6fd9de3', '4adec929a6594108bef5b35ee9966e9f', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '10', 'admin', '2020-04-10 19:43:38', '2020-04-10 19:35:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('7b642d983ac06bfef91edde2c932dbe7', '1acb6f81a1d9439da6cc4e868617b565', 'xg_shangxian', '选购上限', null, '0', '1', 'int', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '14', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7b849e57debfb889caea5e0fef09062b', 'beee191324fd40c1afec4fda18bd9d47', 'sex2', 'dd', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2019-04-13 13:41:13', '2019-04-13 13:40:56', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7beb639aa9ffda07edb5ce1e49c2287f', '402860816bff91c0016bff91d2810005', 'update_time', '更新时间', 'update_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '13', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7bf091da401b74d55b107fe9f930ea54', '4028839a6de2ebd3016de2ebd3870000', 'create_by', '创建人', 'create_by', '0', '1', 'string', '50', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '2', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7c6aecc377816c69147f1193b17dfcc5', 'e9faf717024b4aae95cff224ae9b6d97', 'sex', '员工性别', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7cadf4e0be0b173bb5b8d39613e25190', '402860816bff91c0016bffa220a9000b', 'residence_postcode', '户籍邮编', 'residence_postcode', '0', '1', 'string', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '29', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7cc13710a3ff2046364204b7e5158467', '402881e6760269a20176026a22e70001', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '6', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('7cce797000cec08416fb027d1a4013cb', '402881e6760269a20176026d25650002', 'sex', '性别 {男:1,女:2}', 'sex', '0', '1', 'string', '2', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '7', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7cdbe0d563e15f3fb1fb32d996fe4ba7', '3d447fa919b64f6883a834036c14aa67', 'area', '', null, '0', '1', 'String', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '4', 'admin', '2020-02-21 17:58:46', '2020-02-20 16:19:00', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7d107728408c21ece332406a21f2d692', '402860816bff91c0016bff91cfea0004', 'update_by', '更新人', 'update_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '11', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7e066f60680158d47b328ef519d80e49', 'beee191324fd40c1afec4fda18bd9d47', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2019-04-13 13:41:13', '2019-04-13 13:40:56', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7e331396f6e544ae801690cf475e7615', '402881e6760269a201760269a2af0000', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '3', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('7f10901c6ade3aa9d9ff46ed7039c70f', '1acb6f81a1d9439da6cc4e868617b565', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('7ff9dbe4ac71bb64d057a3a2063fca2c', '402881e6760269a20176026a22e70001', 'radio', 'radio', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'radio', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '9', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('809a9fafe0b79c9997de32cb6e831c6f', '05a3a30dada7411c9109306aa4117068', 'birthday', '生日', null, '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '10', 'admin', '2020-05-12 22:39:41', '2020-05-06 11:34:31', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('8119d3de514092232935b038531828c5', '05a3a30dada7411c9109306aa4117068', 'sex', '性别', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'list', '', '120', null, '0', '', '', '1', '1', '1', '0', 'single', '', '', '9', 'admin', '2020-05-12 22:39:41', '2020-05-06 11:34:31', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('813a5ebf7335309c7edb3803f7e4b204', '402880e570a5d7000170a5d700f50000', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '2', null, null, '2020-03-04 21:58:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('817cc5e277e88164dffd4caee1169276', '56efb74326e74064b60933f6f8af30ea', 'remark', '备注', null, '0', '1', 'string', '500', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '10', 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('81ed9556c9fda1bbb46d94a53a6c90c7', '402860816bff91c0016bff91c0cb0000', 'depart_name', '部门名称', 'depart', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '7', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('840343a59a8e705821d393506c2bc1fe', '402880e570a5d7000170a5d700f50000', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '3', null, null, '2020-03-04 21:58:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('8419278effeb3a6531247fbfdb3b10e3', '402881e6760269a201760269a2af0000', 'user_sel', '选择用户', null, '0', '1', 'string', '200', '0', '', '', '', '', 'sel_user', '', '120', null, '0', '', '#{sysUserCode}', '0', '1', '1', '0', 'single', null, null, '18', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('8422485e1cbf4455f9ded7d0af59379c', '402860816bff91c0016bff91cfea0004', 'to_time', '截止时间', 'to_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '4', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('845c70568d44a074f067d6d277950525', '402860816bff91c0016bffa220a9000b', 'entrytime', '入职时间', 'entrytime', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '23', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('8529ddaed8d5f3d9084e873203d55cac', '402860816bff91c0016bffa220a9000b', 'marital_status', '婚姻状况', 'marital_status', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '24', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('857a0daa9cd8a058f2f15fc7c5fb3571', '402860816bff91c0016bffa220a9000b', 'email', '邮箱', 'email', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '17', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('85e43fa87074845f86cf52606a23a57c', 'b81de38db24047b497d476516f8a0865', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', null, null, '2020-02-24 14:56:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('8652ca69a947fd4c961a3ac7c0fa252a', 'fb19fb067cd841f9ae93d4eb3b883dc0', 'create_by', '创建人登录名称', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '1', null, null, '2019-03-23 11:39:48', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('86bbafef5683674a736cf7241c458d44', '27fc5f91274344afa7673a732b279939', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2019-07-01 16:28:20', '2019-07-01 16:26:42', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('86c598da4f5a3dd3e82e1d9f38d06747', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('86e0f3a8f31c60698157f139ed993954', '402860816bff91c0016bffa220a9000b', 'having_reserve_funds', '是否有公积金', 'having_reserve_funds', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '33', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('86f29e9919766e0d1128263608c016a0', '997ee931515a4620bc30a9c1246429a9', 'type_name', '商品分类', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2020-05-03 00:57:44', '2020-05-03 00:56:56', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('873e2bb041b17bff77d3aca72900ea1b', '56870166aba54ebfacb20ba6c770bd73', 'order_code', '订单编码', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '${shop_order_num}', '1', '1', '1', '0', 'single', '', '', '6', 'admin', '2020-12-07 18:30:12', '2019-04-20 11:38:39', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('8756fbb5c23a0258e029e0cb3c0a045c', '402880e5721355dd01721355dd390000', 'price', '价格', null, '0', '1', 'double', '10', '3', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '8', null, null, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('877391ae770a4ce2c95181ef410982ce', '4028318169e81b970169e81b97650000', 'request_param', '请求参数', 'request_param', '0', '1', 'string', '255', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '10', null, null, '2019-04-04 19:28:36', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('87e22ceeb12312250c16741929586c4b', '402881e6760269a20176026a22e70001', 'sel_mut', '下拉多选', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'list_multi', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '11', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('87e82e3c723a6abb020122babdac6bd1', '8994f2817b5a45d9890aa04497a317c5', 'create_by', '创建人登录名称', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '1', null, null, '2019-03-23 11:39:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('87f7a2703c5850f0b063dd866d0e2917', '402860816bff91c0016bffa220a9000b', 'birthday', '出生日期', 'birthday', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '7', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('87fafe1a4a8a626e3875697574c19f15', '402860816bff91c0016bff91d2810005', 'sys_org_code', '组织机构编码', 'sys_org_code', '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '14', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('883265736ad6db0c98a7517d1f4a2488', '402880eb71d52dc30171d52dc3a10000', 'main_id', '主表ID', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '5', null, null, '2020-05-02 19:37:59', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('88a12570e14c9f6f442e731ae5ad0eb1', 'beee191324fd40c1afec4fda18bd9d47', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2019-04-13 13:41:13', '2019-04-13 13:40:56', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('88de72456c03410c364c80095aaa96eb', 'd35109c3632c4952a19ecc094943dd71', 'pop', '弹窗', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '15', 'admin', '2021-03-16 17:09:22', '2020-11-26 18:02:20', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('89370ae67e241fa5d1e47d22adeaca7b', '402880eb71d52dc30171d52dc3a10000', 'date', '日期', null, '0', '1', 'string', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '#{date}', '0', '1', '1', '0', 'single', null, null, '4', null, null, '2020-05-02 19:37:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('89ab9eedbac6141e7a0df6d37a3655d0', 'e67d26b610dd414c884c4dbb24e71ce3', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2019-04-24 11:03:32', '2019-04-24 11:02:57', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('8a24fb45e2af120c253c8b61c0085f7a', '402860816bff91c0016bff91cda80003', 'sys_org_code', '组织机构编码', 'sys_org_code', '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '13', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('8a2f97fde739720e86fbcd3ce311c037', '09fd28e4b7184c1a9668496a5c496450', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2020-05-14 21:19:21', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('8a6440c447ca97b1ceac40fa8576044e', '3b5e18da618247539481816995b6bf9f', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('8a9d6bbbe45fd3539a8cb3ba2cee470a', '402881e6760269a201760269a2af0000', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '5', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('8ac8a0c0087469a4e7579229ff17f273', 'e5464aa8fa7b47c580e91593cf9b46dc', 'jifen', '合计积分', null, '0', '1', 'int', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '10', 'admin', '2019-04-24 17:09:49', '2019-04-24 11:05:10', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('8bd4deadc9e96c1a6d7abd77033105f6', 'e67d26b610dd414c884c4dbb24e71ce3', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2019-04-24 11:03:32', '2019-04-24 11:02:57', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('8c1b6fff73650b8650947c2a29c63492', '402881e6760269a201760269a2af0000', 'sex', '下拉框', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '8', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '1');
INSERT INTO `onl_cgform_field` VALUES ('8c6518fec11fc4769ba4eb770c9e00f7', '4028839a6de2ebd3016de2ebd3870000', 'integral_val', '积分值', 'integral_val', '0', '1', 'int', '10', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '11', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('8c960ed82ba23e19580307c0e9434de0', '18f064d1ef424c93ba7a16148851664f', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('8ca56210938fbe649f840e505eb9fd41', '56870166aba54ebfacb20ba6c770bd73', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2020-12-07 18:30:12', '2019-04-20 11:38:39', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('8e080f4ded1e3b2a1daa5b11eca4a0ff', '4adec929a6594108bef5b35ee9966e9f', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '7', 'admin', '2020-04-10 19:43:38', '2020-04-10 19:35:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('8e1212df6a94ed8f5102a327564e5af6', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'name', '分类名字', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', null, null, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('8e131d4a438c907b3272474780be7603', '402880eb71d52dc30171d52dc3a10000', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '8', null, null, '2020-05-02 19:37:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('8e1e4cb5c41ba685c48ebabf0aacc469', '402880eb71d61d3d0171d61d3de30000', 'name', '名称', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '#{sysUserName}', '0', '1', '0', '0', 'single', '', '', '3', 'admin', '2020-11-26 17:28:14', '2020-05-02 23:59:33', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('8ea43fd1e4ce82becee61b2f1e2e843f', '32feeb502544416c9bf41329c10a88f4', 'sex', '性别', null, '0', '1', 'String', '32', '0', '', 'sex', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2019-08-23 20:03:40', '2019-07-02 18:23:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('8f1d302868640b72cef52171a023a203', 'e9faf717024b4aae95cff224ae9b6d97', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('8f3e6fb68179c690f748f3c541fb50f1', '7ea60a25fa27470e9080d6a921aabbd1', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', null, null, '2019-04-17 00:22:21', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('8fc0be84bed1216635c69af918e097ff', '402860816aa5921f016aa5dedcb90009', 'name', '并行会签标题', 'name', '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '6', 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('903c33f7d18175a269b783cd4288216f', '402881e6760269a20176026d25650002', 'update_time', '修改时间', 'update_time', '0', '1', 'Date', '0', '0', null, null, null, null, 'date', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '15', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('909b3de0c8a48a21ef8cf98eb4831689', '56efb74326e74064b60933f6f8af30ea', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('90a822b8a63bbbc1e9575c9f4e21e021', 'd35109c3632c4952a19ecc094943dd71', 'descc', '描述', null, '0', '1', 'string', '500', '0', '', '', '', '', 'umeditor', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2021-03-16 17:09:22', '2019-03-15 14:24:35', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('90f39a6e29dae2e1fbb59d7d605f7c09', '1acb6f81a1d9439da6cc4e868617b565', 'iz_valid', '启用状态', null, '0', '1', 'String', '2', '0', '', 'air_china_valid', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '11', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('918b8d661e480624713ddcff1bdda4f4', '402881e6760269a20176026d25650002', 'birthday', '生日', 'birthday', '0', '1', 'Date', '0', '0', null, null, null, null, 'date', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '9', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('91be98b96dea1528abc943f9f131fd16', '402880e570a5d7000170a5d700f50000', 'price', '价格', null, '0', '1', 'double', '32', '0', '', '', '', '', 'text', '', '120', 'n', '0', '', '', '0', '1', '1', '0', 'single', null, null, '7', null, null, '2020-03-04 21:58:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('91f7cd9b59c0da033363f8a09b02ec96', '3d447fa919b64f6883a834036c14aa67', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-02-21 17:58:46', '2020-02-20 16:19:00', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('921cc5a92a79e1e21e9e631a1b7f3fbd', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', null, null, '2020-05-07 22:46:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('9341a3b2a734d8c73455c136e1cac8ad', '4fb8e12a697f4d5bbe9b9fb1e9009486', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '8', 'admin', '2020-11-26 17:28:14', '2020-04-10 19:47:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('9370c9304af30b8d29defe0a5ada6e5b', '62e29cdb81ac44d1a2d8ff89851b853d', 'DC_DDSA', 'DD', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', null, null, '2019-05-11 14:01:14', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9371f61d39c5d57ddb0a2db96b2e2412', '402860816bff91c0016bffa220a9000b', 'speciality', '专业', 'speciality', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '15', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('947174892512ea97fafde899d427ea7e', '402860816bff91c0016bff91c0cb0000', 'real_name', '姓名', 'real_name', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '4', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('94b8bf435175cc545366e11992280757', '32f75e4043ef4070919dbd4337186a3d', 'age', '年龄', null, '0', '1', 'int', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '1', '1', '1', '0', 'group', '', '', '7', 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('94e682cb802777fe4205536888f69353', '402860816bff91c0016bff91d2810005', 'create_by', '创建人', 'create_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '10', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('951c51699d728072d88196d30f7aad10', '4adec929a6594108bef5b35ee9966e9f', 'address', '地址', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '{{ demoFieldDefVal_getAddress() }}', '0', '1', '1', '0', 'single', '', '', '5', 'admin', '2020-04-10 19:43:38', '2020-04-10 19:35:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('957386b500be42a200d6a56d54345392', 'deea5a8ec619460c9245ba85dbc59e80', 'num', '数量', null, '0', '1', 'int', '32', '0', '', '', '', '', 'text', '', '120', 'n', '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2020-05-03 01:01:18', '2019-04-20 11:41:19', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('95fbb1d279402b9d1c0e17665340febb', '402881e6760269a20176026a22e70001', 'pic', '图片', null, '0', '1', 'string', '1000', '0', '', '', '', '', 'image', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '14', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('960d2847922b61dadeb3518ef55fb0c1', '1acb6f81a1d9439da6cc4e868617b565', 'wl_name', '物料名称', null, '0', '1', 'String', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9665f02764774fdd77c19923d3ff3c3e', '4028318169e81b970169e81b97650000', 'cost_time', '耗时', 'cost_time', '0', '1', 'string', '19', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '12', null, null, '2019-04-04 19:28:36', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('966a4988298d5cb0be47848735ce8cb7', '4028839a6de2ebd3016de2ebd3870000', 'xg_shangxian', '选购上限', 'xg_shangxian', '0', '1', 'int', '10', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '12', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9698964a9e06edf12fc88df976080984', '09fd28e4b7184c1a9668496a5c496450', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-05-14 21:19:21', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('96c585a4f71e5c38ed25b9741366365b', '402860816bff91c0016bff91c7010001', 'sys_org_code', '组织机构编码', 'sys_org_code', '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '11', 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9765efa2cafde6d0ede2215848c9e80b', '32f75e4043ef4070919dbd4337186a3d', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '0', 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('98e82cb1595609a3b42fa75c60ac1229', '402860816bff91c0016bff91d2810005', 'update_by', '更新人', 'update_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '12', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9914a0c84805e72c4b6075e36edb13f9', '402860816aa5921f016aa5921f480000', 'create_time', '创建时间', 'create_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '9', 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9920ecec9c9109fc6b93e86f8fdfa03b', '402860816bff91c0016bffa220a9000b', 'depart_name', '所在部门', 'depart_name', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '1', '1', '1', '0', 'group', '', '', '2', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('99b43bbb23237815ebb74b12b4d7ea2f', '62e29cdb81ac44d1a2d8ff89851b853d', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', null, null, '2019-05-11 14:01:14', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9a462d83210cad30f0e12b98e8a172a7', '3b5e18da618247539481816995b6bf9f', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('9a4dc8718000c30953a3923eb7db5096', '402880eb71d52dc30171d52dc3a10000', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', null, null, '1', null, null, '2020-05-02 19:37:59', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('9a579c506f75f75baf88352a5eb2c249', '1acb6f81a1d9439da6cc4e868617b565', 'bpm_status', '流程状态', null, '0', '1', 'String', '2', '0', '1', 'bpm_status', '', '', 'list', '', '120', null, '0', '', '', '0', '0', '1', '0', 'single', '', '', '16', 'admin', '2019-06-10 14:47:14', '2019-05-07 16:54:43', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9a9516645cbc8147b23333fea76aa2bb', 'b81de38db24047b497d476516f8a0865', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', null, null, '2020-02-24 14:56:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9aa6738443d3d8a67cf50506199d15ad', 'cb2d8534a2f544bc9c618dd49da66336', 'aaae', 'aae', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', null, null, '2020-02-24 17:22:43', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9bd056786694d67666f6924cc225b1a0', '3d447fa919b64f6883a834036c14aa67', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2020-02-21 17:58:46', '2020-02-20 16:19:00', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9c40fb4db8afed3c682c6b8a732fd69d', 'e2faf977fdaf4b25a524f58c2441a51c', 'post', '用户岗位', null, '0', '1', 'String', '32', '0', '', 'post_code', 'air_china_post_materiel_main', 'post_name', 'sel_search', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9cc60be30026301b9eafb8c310387f54', '402880e570a5d7000170a5d700f50000', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '4', null, null, '2020-03-04 21:58:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9ceff249ef81ca6fa145456667c89051', '4adec929a6594108bef5b35ee9966e9f', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '8', 'admin', '2020-04-10 19:43:38', '2020-04-10 19:35:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('9d85bafa399f28a40e1de1eeef747223', '4028318169e81b970169e81b97650000', 'ip', 'IP', 'ip', '0', '1', 'string', '100', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '7', null, null, '2019-04-04 19:28:36', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9d88e0661ed4b0969b7f0608a714b14a', '402881e6760269a20176026d25650002', 'create_time', '创建时间', 'create_time', '0', '1', 'Date', '0', '0', null, null, null, null, 'date', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '13', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9d89ff1a019f41d80307652041490944', '32feeb502544416c9bf41329c10a88f4', 'name', '请假人', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2019-08-23 20:03:40', '2019-07-02 18:23:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9e50680eb4e79b3af352a5933d239dff', 'dbf4675875e14676a3f9a8b2b8941140', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', null, null, '2019-05-27 18:02:07', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('9ec6c73432e57354d7d55dbea0916776', '18f064d1ef424c93ba7a16148851664f', 'name', '用户名', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '#{sysUserCode}', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '1');
INSERT INTO `onl_cgform_field` VALUES ('a01a7fe5660206e6f407ed98b6c732d6', '402860816bff91c0016bff91cfea0004', 'phone', '联系方式', 'phone', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '7', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('a1a2d49b35c185df9f9e149b290aa277', '56efb74326e74064b60933f6f8af30ea', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('a1f5daba36f536e7acf6a939826183b0', 'fb19fb067cd841f9ae93d4eb3b883dc0', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '0', null, null, '2019-03-23 11:39:48', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('a232d608434d15fcecd8a3f31a9044b2', '86bf17839a904636b7ed96201b2fa6ea', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('a3dea64c8009780e213d16c69704c030', '53a3e82b54b946c2b904f605875a275c', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2020-05-08 23:42:51', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('a45eba33810c485b9d8e6f70818a1dfa', '402860816aa5921f016aa5921f480000', 'bpm_status', '流程状态', 'bpm_status', '0', '1', 'string', '50', '0', '1', 'bpm_status', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '1', '0', 'group', '', '', '7', 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('a6471d4fb3dbffef01dab1f7d452bb30', '27fc5f91274344afa7673a732b279939', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2019-07-01 16:28:20', '2019-07-01 16:26:42', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('a6722b498602d7d7b5177b16789d8cc1', 'e5464aa8fa7b47c580e91593cf9b46dc', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2019-04-24 17:09:48', '2019-04-24 11:05:10', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('a76f561057ac9e43a8ca09e478a1eab8', '402860816bff91c0016bff91ca7e0002', 'update_time', '更新时间', 'update_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '12', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('a7822f6e4cffb37fc0729cbd4cfd8655', '32f75e4043ef4070919dbd4337186a3d', 'name', '用户名', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '1', '1', '1', '0', 'single', '', '', '5', 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('a7b6ae09441ce36a14c7ce95f17a218e', '86bf17839a904636b7ed96201b2fa6ea', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('a82ca42a76e9d2b8dae6d57dbb5edb54', 'deea5a8ec619460c9245ba85dbc59e80', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2020-05-03 01:01:18', '2019-04-20 11:41:19', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('a83c029e021023771f646a20b63c4d4b', '18f064d1ef424c93ba7a16148851664f', 'sel_search', '下拉搜索', null, '0', '1', 'string', '32', '0', '', 'username', 'sys_user', 'username', 'sel_search', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '12', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('a940adc4585fa3b5bd2114ea9abe8491', '402860816bff91c0016bff91ca7e0002', 'cert_level', '证书级别', 'cert_level', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '5', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('a94f1d7da64f3aa35c32155ea00ccb2f', '402860816bff91c0016bffa220a9000b', 'id', 'id', 'id', '1', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '1', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('a9780eace237a15f26931dd6a9ec02e9', '758334cb1e7445e2822b60e807aec4a3', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', null, null, '2019-10-18 18:02:09', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('aa07931514727913413880b7a2b76dcb', 'd3ae1c692b9640e0a091f8c46e17bb01', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', null, null, '2019-07-24 14:47:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('aa4780601419c21dabb6c42fc511e71c', '402860816bff91c0016bffa220a9000b', 'have_children', '有无子女', 'have_children', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '25', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ab10e0aa029ded2f4420a33420de225d', '1acb6f81a1d9439da6cc4e868617b565', 'wl_code', '物料编码', null, '0', '1', 'String', '60', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ab1f880ba593f3757dac70e003945aa2', '402860816bff91c0016bff91c0cb0000', 'depart_id', '部门ID', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', 'admin', '2019-07-19 18:09:01', '2019-07-17 19:38:45', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ab58f43f853fd1f65f83c22966883afb', 'beee191324fd40c1afec4fda18bd9d47', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2019-04-13 13:41:13', '2019-04-13 13:40:56', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ab8e6f1cca421c5ce395a2c1fdfd2100', '32feeb502544416c9bf41329c10a88f4', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2019-08-23 20:03:40', '2019-07-02 18:23:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('abe61a8ddf966a979457b763329a537b', 'e5464aa8fa7b47c580e91593cf9b46dc', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2019-04-24 17:09:49', '2019-04-24 11:05:10', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ac91565da5fb8fe43a4da3dec660b25f', '402860816bff91c0016bff91c7010001', 'award_place', '获奖地点', 'award_place', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '4', 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('acff5c8aef3b6288b87fd91215012206', 'e5464aa8fa7b47c580e91593cf9b46dc', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2019-04-24 17:09:49', '2019-04-24 11:05:10', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ad061417d5b53c67975eb83657505218', '73162c3b8161413e8ecdca7eb288d0c9', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ad93762c6c4a1dd8331e5fa11215b568', 'e2faf977fdaf4b25a524f58c2441a51c', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ae31da96f38fc2941cb93d1bb1ab9431', 'deea5a8ec619460c9245ba85dbc59e80', 'product_name', '产品名字', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', 'admin', '2020-05-03 01:01:18', '2019-04-20 11:41:19', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('ae77bb317366622698c8ab9bf2325833', 'deea5a8ec619460c9245ba85dbc59e80', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2020-05-03 01:01:18', '2019-04-20 11:41:19', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('ae9e686072c3c7f9b36bbc4be0fe1384', '402881e6760269a201760269a2af0000', 'name', '用户名', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '#{sysUserCode}', '0', '1', '1', '0', 'single', null, null, '7', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '1');
INSERT INTO `onl_cgform_field` VALUES ('af0fe0df8b626129de62e22212732517', '402860816bff91c0016bff91cda80003', 'speciality', '专业', 'speciality', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '6', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('af6c582b902e2f2bf9930eba61ae7938', '73162c3b8161413e8ecdca7eb288d0c9', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('afd3ef1d494a9b69d2c7a3cdde937f6f', '402860816bff91c0016bffa220a9000b', 'create_by', '创建人', 'create_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '39', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b01304904babd7479de2acfe8a77157f', '402860816aa5921f016aa5921f480000', 'id', 'ID', 'id', '1', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '1', 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b05b4cbb74f389a7376f51ed9fd97030', '402860816bff91c0016bff91d8830007', 'create_by', '创建人', 'create_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '10', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b0a06bdbefd304d81a1838d8d94deda9', '4b556f0168f64976a3d20bfb932bc798', 'name', '用户名', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', null, null, '2019-04-12 23:38:28', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b0a2c8d21782830ec6a2d16cc1231328', '402881e6760269a20176026d25650002', 'punch_time', '打卡时间', 'punch_time', '0', '1', 'Date', '0', '0', null, null, null, null, 'date', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '4', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b0b1cf271dd6b221a902da2d2f8f889a', 'e9faf717024b4aae95cff224ae9b6d97', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b0dfd0f0c36ee46ef483c0c225956ac5', '402881e6760269a201760269a2af0000', 'checkbox', 'checkbox', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'checkbox', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '10', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('b18f96f96d979daa7336e81086ea2bc1', 'cb2d8534a2f544bc9c618dd49da66336', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2020-02-24 17:22:42', '2020-02-24 15:15:14', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b1fc6e2ca671b19e57b08a4f57fc2454', 'fb7125a344a649b990c12949945cb6c1', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2019-03-26 19:24:11', '2019-03-26 19:01:52', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b22694cf34ffb967b8717647816ad5df', 'e5464aa8fa7b47c580e91593cf9b46dc', 'fk_id', '外键', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', 'air_china_post_materiel_main', 'id', '15', 'admin', '2019-04-24 17:09:49', '2019-04-24 11:05:10', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b276facab025f9750b0aff391693cc4b', '402860816bff91c0016bff91c7010001', 'id', 'id', 'id', '1', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '1', 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b2b0cb30159639bb1190e150322b7541', '4028839a6de2ebd3016de2ebd3870000', 'wl_unit', '计量单位', 'wl_unit', '0', '1', 'string', '100', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '14', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b3542d3e7908ed885ecc4ba9e7300705', '4b556f0168f64976a3d20bfb932bc798', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', null, null, '2019-04-12 23:38:28', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b3b61f9386eb2262919e0835e3c82eb9', '86bf17839a904636b7ed96201b2fa6ea', 'num', '数量', null, '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('b47af4d937e55c6208939bac5378bfad', '62e29cdb81ac44d1a2d8ff89851b853d', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', null, null, '2019-05-11 14:01:14', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b53203fc52d067bb4730dbcb7e496bd3', '56870166aba54ebfacb20ba6c770bd73', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2020-12-07 18:30:12', '2019-04-20 11:38:39', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('b57cfd6922ebb3d75c84e386b7df38d0', '402881e6760269a20176026a22e70001', 'user_sel', '选择用户', null, '0', '1', 'string', '200', '0', '', '', '', '', 'sel_user', '', '120', null, '0', '', '#{sysUserCode}', '0', '1', '1', '0', 'single', null, null, '18', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('b5cfd3c9691a884430f3d9cd5ecb211f', 'e2faf977fdaf4b25a524f58c2441a51c', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b6874a05734cad8bd96ffd2f31f1ebca', '402860816bff91c0016bff91c7010001', 'create_by', '创建人', 'create_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '7', 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b733fa73519603b22d401fabbf9e9781', '402860816bff91c0016bff91c0cb0000', 'hiredate', '入职时间', 'hiredate', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '5', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b78d5ab8bbb5ff9b5308d226629ea19f', '402881e6760269a20176026a22e70001', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '3', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('b7938e4518f9062ce62702cf45986e06', 'e2faf977fdaf4b25a524f58c2441a51c', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b7a1243aaa712e2c152c0c7a46f88683', '402860816bff91c0016bff91d8830007', 'age', '年龄', 'age', '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '5', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b7b311cf4483bd10a93a40891cc39a77', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'has_child', '是否有子节点', null, '0', '1', 'string', '3', '0', '', 'yn', '', '', 'list', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '11', null, null, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('b91258e3dc15b28c2e3f0d934e6e27e8', 'fb7125a344a649b990c12949945cb6c1', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '0', null, null, '2019-03-26 19:01:52', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b92572ae142f8dd5f2ac02fb45e6b2c1', 'e2faf977fdaf4b25a524f58c2441a51c', 'name', '用户名', null, '0', '1', 'String', '32', '0', '', 'realname,username', 'report_user', 'name,account', 'sel_search', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('b9280db8eff6098287747f1c99ef170e', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'age', 'age', null, '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('b9fbace24688c9c9a8c9be72c1d014e7', '402860816bff91c0016bffa220a9000b', 'phone', '电话', 'phone', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '18', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ba17414716b12b51c85f9d1f6f1e5787', 'd35109c3632c4952a19ecc094943dd71', 'chegnshi', '城市', null, '0', '1', 'string', '300', '0', '', '', '', '', 'pca', '', '120', null, '0', '', '', '1', '1', '1', '0', 'single', '', '', '14', 'admin', '2021-03-16 17:09:22', '2020-11-26 16:54:45', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('ba5f4b2affa94f36eda7f6f133db7ae3', '402860816bff91c0016bff91d2810005', 'workplace', '工作单位', 'workplace', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '6', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ba6f3e762d6e3ea1068a085ec2f7e501', '56efb74326e74064b60933f6f8af30ea', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('bad02e68ea37bf387337516af84a1ddb', '73162c3b8161413e8ecdca7eb288d0c9', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bb44475e1d1738a19745bf9f3ebf9e40', '402860816bff91c0016bff91cfea0004', 'update_time', '更新时间', 'update_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '12', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bbbb38347b1a5340a1d293e455c632ce', 'fb19fb067cd841f9ae93d4eb3b883dc0', '3', '4', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', null, null, '2019-03-23 11:39:48', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bc648624ad14c826bbc6e9b23a2b9858', '402860816bff91c0016bff91ca7e0002', 'employee_id', '员工ID', 'employee_id', '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', 'oa_employee_info', 'id', '2', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bc793fdbef9f6474425456c4eb9d197a', '402860816bff91c0016bff91cfea0004', 'witness', '证明人', 'references', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '6', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bc7df6f3cf49f670c36a3de25e25e715', '402860816bff91c0016bff91d2810005', 'order_no', '序号', 'order_no', '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '9', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bcf2f5d1390227cf0d9ddfbd6121161f', '402880eb71d61d3d0171d61d3de30000', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2020-05-03 00:54:16', '2020-05-02 23:59:33', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('bd39cb237049ac60218b3f4dd844f30c', '402860816bff91c0016bffa220a9000b', 'current_address', '现居住地', 'current_address', '0', '1', 'string', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '30', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bde81809057b1a4c974fa0f090501fdd', '402860816aa5921f016aa5dedcb90009', 'update_by', '更新人', 'update_by', '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '4', 'admin', '2019-05-11 15:56:47', '2019-05-11 15:50:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bdea5b776a15897265c43e6ee44af2e1', '997ee931515a4620bc30a9c1246429a9', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2020-05-03 00:57:44', '2020-05-03 00:56:56', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('be3f8c157d8a1b40e6f7b836552a8095', '8994f2817b5a45d9890aa04497a317c5', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '2', null, null, '2019-03-23 11:39:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('be5eeda7d51dace73d3818bd8467b53b', '402860816bff91c0016bff91c0cb0000', 'update_time', '更新时间', 'update_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '15', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('be868eed386da3cfcf49ea9afcdadf11', 'd35109c3632c4952a19ecc094943dd71', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2021-03-16 17:09:22', '2019-03-15 14:24:35', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('bec3082fc5f0f194be5cd72cc2866ff4', 'e5464aa8fa7b47c580e91593cf9b46dc', 'wl_name', '物料名字', null, '0', '1', 'String', '200', '0', '', 'wl_code', 'air_china_materiel', 'wl_name', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', 'admin', '2019-04-24 17:09:49', '2019-04-24 11:05:10', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bed0bc67f570613eaa6a1bd8bcaaddcc', '4b556f0168f64976a3d20bfb932bc798', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', null, null, '2019-04-12 23:38:28', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bed95ca6dd6bb4b4f7cfd787313a0a4b', '402880e570a5d7000170a5d700f50000', 'product_name', '产品名字', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '6', null, null, '2020-03-04 21:58:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bef85fd2846dd7ffc42d747095557d14', '4fb8e12a697f4d5bbe9b9fb1e9009486', 'date', '日期', null, '0', '1', 'string', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '#{date}', '0', '1', '1', '0', 'single', '', '', '4', 'admin', '2020-11-26 17:28:14', '2020-04-10 19:47:01', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('bf61aa04c5ca77ad54c764f8f8b2bdec', '402860816bff91c0016bff91d8830007', 'update_by', '更新人', 'update_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '12', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bfc2f19fae367f885adb8bd82a344391', '4028318169e81b970169e81b97650000', 'userid', '操作用户账号', 'userid', '0', '1', 'string', '32', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '5', null, null, '2019-04-04 19:28:36', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('bff39a86bd05656ee156b685e5187211', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c047ed2cead5bab0307967435f370936', '53a3e82b54b946c2b904f605875a275c', 'chuc_date', '出厂时间', null, '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2020-05-08 23:42:51', '2020-05-07 22:49:47', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c0c80f370e1d400fe670d8702c3b84da', '4adec929a6594108bef5b35ee9966e9f', 'address_param', '地址(传参)', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '{{ demoFieldDefVal_getAddress(\"昌平区\") }}', '0', '1', '1', '0', 'single', '', '', '6', 'admin', '2020-04-10 19:43:38', '2020-04-10 19:40:53', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c0d66c95773774e7ac1f2a88df307e7a', '402860816aa5921f016aa5921f480000', 'reason', '请假原因', 'reason', '0', '1', 'string', '500', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '6', 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('c29216d975fee50af175bca8c664a475', 'e67d26b610dd414c884c4dbb24e71ce3', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2019-04-24 11:03:32', '2019-04-24 11:02:56', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('c2b9eae184afe56d59ea7940d77cfced', '4adec929a6594108bef5b35ee9966e9f', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2020-04-10 19:43:38', '2020-04-10 19:35:57', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c2dbb6846ab0945a430d095a29e0f53d', '18f064d1ef424c93ba7a16148851664f', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c311cca084580e5fd4b5a2e5b81c4cc5', '402881e6760269a20176026d25650002', 'email', '邮箱', 'email', '0', '1', 'string', '50', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '10', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('c382877700a9987f4bcc2deea9ee9daf', '4fb8e12a697f4d5bbe9b9fb1e9009486', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2020-11-26 17:28:14', '2020-04-10 19:47:01', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c43d87b6340c29c0c354aa9c579f387f', '32feeb502544416c9bf41329c10a88f4', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2019-08-23 20:03:40', '2019-07-02 18:23:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('c456753a9c83e55fa241c4ec72c00f86', '402880eb71d52dc30171d52dc3a10000', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '6', null, null, '2020-05-02 19:37:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c4d71528f3f45661b1a87841b7256204', '402880e5721355dd01721355dd390000', 'order_main_id', '订单ID', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '11', null, null, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c52711856d2e81ad1074265833f44328', 'b81de38db24047b497d476516f8a0865', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', null, null, '2020-02-24 14:56:07', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('c596f7f9035c71f9d2d0206d14b0eee8', '402881e6760269a201760269a2af0000', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '4', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c59f39e7b3bb877398f16796b2cd7962', '997ee931515a4620bc30a9c1246429a9', 'pid', '父级节点', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '0', '0', 'single', '', '', '9', 'admin', '2020-05-03 00:57:44', '2020-05-03 00:56:56', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c5a61724b3b1fdfd0eb39c361f22bafd', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', null, null, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c5dd2fc34ae825ebfced2ec74948654c', '402860816aa5921f016aa5921f480000', 'end_date', '请假结束时间', 'end_date', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '5', 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('c5f6ea01a6523a60df153cc61dc92f4d', 'fbc35f067da94a70adb622ddba259352', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', null, null, '2019-07-03 19:44:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('c6024742fbc62f2fc39992e6b59ac13d', '05a3a30dada7411c9109306aa4117068', 'age', '年龄', null, '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '1', '1', '1', '0', 'group', '', '', '8', 'admin', '2020-05-12 22:39:41', '2020-05-06 11:34:31', 'admin', '', '', '', '', '', 'text', '0', null, null, '1');
INSERT INTO `onl_cgform_field` VALUES ('c6730e00df5efd77fedf181df29102de', '402860816bff91c0016bff91c7010001', 'update_by', '更新人', 'update_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '9', 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('c75a7cb0a21958aa7ca5442f66019669', 'e9faf717024b4aae95cff224ae9b6d97', 'depart', '所属部门', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('c772ed9cbe2d1dc69e9ffa73d3487021', '4b556f0168f64976a3d20bfb932bc798', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', null, null, '2019-04-12 23:38:28', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('c7f1907e8e7aa373c6829263ca6322d0', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c8027cf4f2483042445c89ba86c4e51f', '402880e5721355dd01721355dd390000', 'zong_price', '单品总价', null, '0', '1', 'double', '10', '3', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '10', null, null, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('c91b697b1bcd2be943fc746e2660bc9e', '402860816bff91c0016bff91d2810005', 'real_name', '姓名', 'real_name', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '3', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('c988bd2b6125c01ceb3579a207dd8784', '3d447fa919b64f6883a834036c14aa67', 'city', '', null, '0', '1', 'String', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '3', 'admin', '2020-02-21 17:58:46', '2020-02-20 16:19:00', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('c9b698d3f75aa780ee1eb67ef090b15b', '73162c3b8161413e8ecdca7eb288d0c9', 'wl_code', '物料编码', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('caf5a071f2299c0f9ff2f3038d6d0fc6', '402860816bff91c0016bff91ca7e0002', 'update_by', '更新人', 'update_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '11', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('cb33a708b95e19085f8c9001d2d5c64c', 'e9faf717024b4aae95cff224ae9b6d97', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('cb50a5991ca29e617aa32e49e92c01e7', '09fd28e4b7184c1a9668496a5c496450', 'age', '年龄', null, '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '10', 'admin', '2020-05-14 21:19:21', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('cb7da49a981a1b0acc5f7e8a0130bdcd', 'd35109c3632c4952a19ecc094943dd71', 'user_code', '用户编码', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '1', '1', '0', '0', 'single', '', '', '11', 'admin', '2021-03-16 17:09:22', '2019-05-11 16:26:37', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('cb871284e845e26e88242a96fac9c576', '402860816bff91c0016bff91c7010001', 'order_no', '序号', 'order_no', '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '6', 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('cc1ddc1304d3eb5d9a189da0a509ccd0', '32f75e4043ef4070919dbd4337186a3d', 'create_by', '创建人登录名称', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2019-04-11 10:15:32', '2019-03-27 15:54:49', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ccda49a8cea079c34f0034361d058c08', '09fd28e4b7184c1a9668496a5c496450', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2020-05-14 21:19:21', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('ccf2f331af46ddc411b8039dd187621b', '4028839a6de2ebd3016de2ebd3870000', 'price', '单价', 'price', '0', '1', 'double', '10', '2', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '10', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ce2fc04cb4d800d35b4ea84c66b7248b', '402881e6760269a20176026a22e70001', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '2', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('cee3c1dbf67b4a7d9626b8032897a4c7', '402860816bff91c0016bff91d8830007', 'employee_id', '员工ID', 'employee_id', '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', 'oa_employee_info', 'id', '2', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('cefb82e2168ab7e3aa57a7e9c3ca950e', '09fd28e4b7184c1a9668496a5c496450', 'order_main_id', '订单ID', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', 'ces_order_main', 'id', '12', 'admin', '2020-05-14 21:19:21', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('cf4c5a4c06ae6bac701edfeedfcd16aa', 'd3ae1c692b9640e0a091f8c46e17bb01', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', null, null, '2019-07-24 14:47:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('cf5dfcb4ccedec473a513414dbd243ef', '18f064d1ef424c93ba7a16148851664f', 'ddd', 'DD类型', null, '0', '1', 'double', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '20', 'admin', '2020-09-11 14:35:44', '2020-07-20 15:07:27', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('cfeb6491427aec2b4db9694af867da23', 'e9faf717024b4aae95cff224ae9b6d97', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d0559db07f05c870860f98313eb0f857', 'cb2d8534a2f544bc9c618dd49da66336', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2020-02-24 17:22:42', '2020-02-24 15:15:14', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d0d1be336726df9c41f2173f8886ba35', '997ee931515a4620bc30a9c1246429a9', 'has_child', '是否有子节点', null, '0', '1', 'string', '3', '0', '', 'yn', '', '', 'list', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '10', 'admin', '2020-05-03 00:57:44', '2020-05-03 00:56:56', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('d14e47befe47925b1440d584f4ca56fc', '09fd28e4b7184c1a9668496a5c496450', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2020-05-14 21:19:21', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('d2551b70dc96a45a73b304bf755a996f', '402860816bff91c0016bff91d8830007', 'workplace', '工作单位', 'workplace', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '6', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d29dcdba14ea61808391fff2d927efea', '402860816bff91c0016bff91c0cb0000', 'work_summary', '工作总结', 'work_summary', '0', '1', 'Text', '65535', '0', '', '', '', '', 'textarea', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '10', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d3a701472d27ca8435d6a781a597038d', 'deea5a8ec619460c9245ba85dbc59e80', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2020-05-03 01:01:18', '2019-04-20 11:41:19', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('d3ba5f990e14f9a1a0bbf6aa4cfa26dc', '56efb74326e74064b60933f6f8af30ea', 'xd_date', '下单时间', null, '0', '1', 'Date', '0', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('d44b89cc5f1828f7ceb9be196d549665', '4fb8e12a697f4d5bbe9b9fb1e9009486', 'code', '编码', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '${order_num_rule_param}', '0', '1', '1', '0', 'single', '', '', '2', 'admin', '2020-11-26 17:28:14', '2020-04-10 19:47:01', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('d48bfd2a840f9b1d00bd3b5599dca0f0', '402860816bff91c0016bff91cda80003', 'post', '职务', 'post', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '7', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d4d8cae3cd9ea93e378fc14303eee105', 'd35109c3632c4952a19ecc094943dd71', 'create_by', '创建人登录名称', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2021-03-16 17:09:22', '2019-03-15 14:24:35', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('d4dea775487aef5a7aea41791d3a65db', 'e5464aa8fa7b47c580e91593cf9b46dc', 'cycle_time', '发放周期(年)', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '11', 'admin', '2019-04-24 17:09:49', '2019-04-24 14:09:06', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d52c79620e21128fb69b4e8628cf25cc', 'dbf4675875e14676a3f9a8b2b8941140', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', null, null, '2019-05-27 18:02:07', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d530ab1bc3c51e8249a506a25d1003c7', '79091e8277c744158530321513119c68', 'start_time', '会签发起时间', null, '0', '1', 'Date', '32', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2019-05-11 15:29:47', '2019-05-11 15:27:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d53e70411c206efecb8dcd00174e907c', '62e29cdb81ac44d1a2d8ff89851b853d', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', null, null, '2019-05-11 14:01:14', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d5df0a35352ee960053686e959e9084b', '1acb6f81a1d9439da6cc4e868617b565', 'wl_unit', '计量单位', null, '0', '1', 'String', '100', '0', '', 'air_china_unit', '', '', 'list_multi', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d6fad89f4f26d733291863c2dfbc5945', '27fc5f91274344afa7673a732b279939', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2019-07-01 16:28:20', '2019-07-01 16:26:42', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d6fb7dcec9256d4044199641cb823e5e', '18f064d1ef424c93ba7a16148851664f', 'sex', '下拉框', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '1');
INSERT INTO `onl_cgform_field` VALUES ('d7082454dac60103fdda3e00b6557d39', '402880eb71d52dc30171d52dc3a10000', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '9', null, null, '2020-05-02 19:37:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('d766ea5809e2ec9ff2cdbcb18f610ab3', '7ea60a25fa27470e9080d6a921aabbd1', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', null, null, '2019-04-17 00:22:21', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d7c3b107f004cbc99dfe1fe6c79894d8', '402860816bff91c0016bffa220a9000b', 'social_insurance_type', '参加社保类型', 'social_insurance_type', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '35', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d8234b56acea1a752271a6c911dd91a0', '7ea60a25fa27470e9080d6a921aabbd1', 'age', '年龄', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', null, null, '2019-04-17 00:22:21', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d86909d794b01ad7fbb5e61d28b6603b', '73162c3b8161413e8ecdca7eb288d0c9', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d949d9157831c2fb7ba9f175081fe036', '402860816bff91c0016bff91cda80003', 'school', '学校', 'school', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '5', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d9d308feb95968dbb322c9bff0c18452', '32feeb502544416c9bf41329c10a88f4', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2019-08-23 20:03:40', '2019-07-02 18:23:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d9dde2f59bb148c6b7e95256acad8972', 'e67d26b610dd414c884c4dbb24e71ce3', 'post_name', '岗位名字', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2019-04-24 11:03:32', '2019-04-24 11:02:57', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('d9f9ae6986cb85019a3a4030f62f4d1a', '402860816bff91c0016bff91cfea0004', 'employee_id', '员工ID', 'employee_id', '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', 'oa_employee_info', 'id', '2', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('db11e7fe2a76680e502007ad82fc08b9', '402881e6760269a20176026d25650002', 'name', '姓名', 'name', '0', '1', 'string', '30', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '2', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('db1fb3e12385cb967b63420cfe97cde6', '402860816bff91c0016bff91cda80003', 'employee_id', '员工ID', 'employee_id', '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', 'oa_employee_info', 'id', '2', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('dbfc8f23823c4091f516635a464b3cc5', '402881e6760269a20176026d25650002', 'content', '个人简介', 'content', '0', '1', 'string', '1000', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '11', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('dc2bec862a4f0d600751c632d246f0ed', '4028839a6de2ebd3016de2ebd3870000', 'update_time', '更新日期', 'update_time', '0', '1', 'Date', '0', '0', null, null, null, null, 'date', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '5', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('dd3e1e13d7429807b83a00a090e060b7', '402860816bff91c0016bffa220a9000b', 'join_party_info', '入党(团)时间地点', 'join_party_info', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '26', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ddc302f84c75a5f056855c664b82202a', '402860816aa5921f016aa5921f480000', 'days', '请假天数', 'days', '0', '1', 'int', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '3', 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ddcc14a2105588982b4ae657f2893d81', '32feeb502544416c9bf41329c10a88f4', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2019-08-23 20:03:40', '2019-07-02 18:23:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('de34e46a66def956437635585db427b7', 'cb2d8534a2f544bc9c618dd49da66336', 'dde', 'ee', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '10', null, null, '2020-02-24 17:22:43', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('de3a8a6b042b1821b3dcbd236fd82174', '402881e6760269a201760269a2af0000', 'pic', '图片', null, '0', '1', 'string', '1000', '0', '', '', '', '', 'image', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '14', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('de8f510d358f499dcd966e97708f82d4', '997ee931515a4620bc30a9c1246429a9', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2020-05-03 00:57:44', '2020-05-03 00:56:56', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('dedb920a5e876e27eb144464209ebe1e', '27fc5f91274344afa7673a732b279939', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', 'admin', '2019-07-01 16:28:20', '2019-07-01 16:26:42', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('dee21fa8241c351e910056c203e9bfd5', '402881e6760269a20176026a22e70001', 'files', '文件', null, '0', '1', 'string', '1000', '0', '', '', '', '', 'file', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '15', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('df489194c6008f3bd21b2c1c11fde337', 'fb19fb067cd841f9ae93d4eb3b883dc0', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '2', null, null, '2019-03-23 11:39:48', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('df4c5e8411c102f02a6fe6727e858d55', '997ee931515a4620bc30a9c1246429a9', 'pic', '分类图片', null, '0', '1', 'string', '500', '0', '', '', '', '', 'image', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2020-05-03 00:57:44', '2020-05-03 00:56:56', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('df58a7b1c3ed8f58a1994c0c0855db16', '4adec929a6594108bef5b35ee9966e9f', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '11', 'admin', '2020-04-10 19:43:38', '2020-04-10 19:35:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('e08af664ffdbc37cfafb779f0692f86e', '402881e6760269a20176026a22e70001', 'name', '用户名', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '#{sysUserCode}', '0', '1', '1', '0', 'single', null, null, '7', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '1');
INSERT INTO `onl_cgform_field` VALUES ('e09b191e3c37f9c89ae2192c75220b89', 'b81de38db24047b497d476516f8a0865', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', null, null, '2020-02-24 14:56:08', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e0c5d6e483897d5c4e7894dc66dd1aff', '32feeb502544416c9bf41329c10a88f4', 'bpm_status', '流程状态', null, '0', '1', 'String', '2', '0', '', 'bpm_status', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2019-08-23 20:03:40', '2019-07-02 18:23:58', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e24de426223dc0271a55eccc1d5457d0', '73162c3b8161413e8ecdca7eb288d0c9', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e2d73ccda7f10f5a1ccce3c48b1e699e', '402860816bff91c0016bffa220a9000b', 'residence_street', '户口所在街道', 'residence_street', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '27', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e350986acb670f247df30fe4a44e73df', '09fd28e4b7184c1a9668496a5c496450', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2020-05-14 21:19:21', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('e48ebd15c6110e9eb753bdfc88c04683', 'a2ca0c7297a8491ca849fc1a06c9efbf', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2021-01-24 14:39:35', '2021-01-24 14:38:58', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('e4914fdff68ac72486ada105e6e9fa36', 'e9faf717024b4aae95cff224ae9b6d97', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2019-07-03 18:23:49', '2019-07-03 18:22:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e4a4c1d50b7b46678bc14fd5b90ee082', '73162c3b8161413e8ecdca7eb288d0c9', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e4d7f95340e73a54e8ff3f66b0613513', '56efb74326e74064b60933f6f8af30ea', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2020-07-10 16:53:27', '2020-05-08 23:45:32', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('e50b4398731e06572c247993a0dcc38d', 'd35109c3632c4952a19ecc094943dd71', 'name', '用户名', null, '0', '1', 'string', '200', '0', '', '', '', '', 'text', '', '120', '*', '0', '', '', '1', '1', '1', '0', 'single', '', '', '6', 'admin', '2021-03-16 17:09:22', '2019-03-15 14:24:35', 'admin', '', '', '', '', '', null, '0', null, null, '1');
INSERT INTO `onl_cgform_field` VALUES ('e53f53766d1f7718b3ee5eabe105b969', '402860816bff91c0016bffa220a9000b', 'social_insurance_time', '五险一金日期', 'social_insurance_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '38', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e60a8e496b0f7081dbfe4253b3218546', '402880eb71d61d3d0171d61d3de30000', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '10', 'admin', '2020-05-03 00:54:16', '2020-05-02 23:59:33', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('e672d5974a06d5c37b3b4c94a6f29f96', '4028318169e81b970169e81b97650000', 'request_url', '请求路径', 'request_url', '0', '1', 'string', '255', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '9', null, null, '2019-04-04 19:28:36', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e7aade12ca722b59c1ec681d14247ff8', '402860816bff91c0016bff91d8830007', 'sys_org_code', '组织机构编码', 'sys_org_code', '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '14', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e7c367221181aa9d1fc395e09796be8d', '402880eb71d52dc30171d52dc3a10000', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '7', null, null, '2020-05-02 19:37:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('e7e622076bcbe7bf7ea9fd9acb6f19bc', '18f064d1ef424c93ba7a16148851664f', 'pic', '图片', null, '0', '1', 'string', '1000', '0', '', '', '', '', 'image', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '14', 'admin', '2020-09-11 14:35:44', '2020-05-12 20:26:01', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('e7ec6838aad8d2dd2e175886a7c6e14e', '402881e6760269a201760269a2af0000', 'sel_search', '下拉搜索', null, '0', '1', 'string', '32', '0', '', 'username', 'sys_user', 'username', 'sel_search', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '12', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('e824c44d26034ad8eed32e22a3f69043', '402881e6760269a201760269a2af0000', 'ddd', 'DD类型', null, '0', '1', 'double', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '20', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('e845925368919482df6dac58e6ed708d', '402860816bff91c0016bff91d8830007', 'phone', '联系方式', 'phone', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '8', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e85295979d84bde27615a008d8bbadf1', '3b5e18da618247539481816995b6bf9f', 'sex', '性别', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2020-07-11 11:27:29', '2020-07-11 11:27:17', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('e878e70574d0d6180c2f6f0d281c9262', '8d66ea41c7cc4ef9ab3aab9055657fc9', 'pid', '父级节点', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '0', '0', 'single', '', '', '10', null, null, '2020-05-07 22:46:32', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('e88d328af34dd8a17f51437c52b68a2d', '402860816bff91c0016bff91cfea0004', 'create_by', '创建人', 'create_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '9', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e99cc08f4d88dd8f788399db8d448ee8', '62e29cdb81ac44d1a2d8ff89851b853d', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', null, null, '2019-05-11 14:01:14', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e9a45935d69f5fd91f0c6880e5e6cfa4', '402881e6760269a20176026d25650002', 'age', '年龄', 'age', '0', '1', 'int', '10', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '8', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('e9fb150adabaaacdd804b1953e6bad24', '05a3a30dada7411c9109306aa4117068', 'create_time', '创建日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2020-05-12 22:39:41', '2020-05-06 11:34:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('ea309f9cd81ede7b9b36a1377a3a40d8', '997ee931515a4620bc30a9c1246429a9', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2020-05-03 00:57:44', '2020-05-03 00:56:56', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('ea644c4c208739640933ba6e568045c1', 'e2faf977fdaf4b25a524f58c2441a51c', 'ruz_date', '入职时间', null, '0', '1', 'Date', '32', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ea749346b5eb9e70df2058ade2b0bbfa', '402881e6760269a201760269a2af0000', 'fuwenb', '富文本', null, '0', '1', 'Text', '0', '0', '', '', '', '', 'umeditor', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '17', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('ea96d1c33f0f0d7245045e70a5793257', '402860816bff91c0016bffa220a9000b', 'current_postcode', '现居住地邮编', 'current_postcode', '0', '1', 'string', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '31', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ebc41362681919cc680fcc58bf87fdcb', '1acb6f81a1d9439da6cc4e868617b565', 'price', '单价', null, '0', '1', 'double', '10', '2', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '12', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ec20e66d5eb9b8b7f58de9edc0f7630b', '1acb6f81a1d9439da6cc4e868617b565', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ec5e9cb5809b2f8ce1446df4a27693f0', '27fc5f91274344afa7673a732b279939', 'name', '用户名', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2019-07-01 16:28:20', '2019-07-01 16:26:42', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ed16f23d08e7bcda11a1383fda68057e', '402860816bff91c0016bff91c7010001', 'employee_id', '员工ID', 'employee_id', '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', 'oa_employee_info', 'id', '2', 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('edaa8951735cedf29d6114354faaae67', '402881e6760269a201760269a2af0000', 'radio', 'radio', null, '0', '1', 'string', '32', '0', '', 'sex', '', '', 'radio', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '9', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('edda30c64e1dccee510d40b77a8ca094', 'fb7125a344a649b990c12949945cb6c1', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '0', '0', '0', 'single', '', '', '3', 'admin', '2019-03-26 19:24:11', '2019-03-26 19:01:52', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ee09e0e21fa350b9346b70292dcfca00', '79091e8277c744158530321513119c68', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', 'admin', '2019-05-11 15:29:47', '2019-05-11 15:27:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ee4ffe04a25fcf556e78183f1f521546', '402860816aa5921f016aa5921f480000', 'create_by', '创建人id', 'create_by', '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '8', 'admin', '2019-05-11 15:31:54', '2019-05-11 14:26:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ee5803611f63643059b6375166d71567', '402860816bff91c0016bff91c7010001', 'create_time', '创建时间', 'create_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '8', 'admin', '2019-07-19 18:07:47', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('eec5bc01720642ccc635c7fc2e9b1eb8', '86bf17839a904636b7ed96201b2fa6ea', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2020-05-14 21:18:49', '2020-05-08 23:48:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('ef81373c5fd7130d7e23859d90c9eb3e', '402860816bff91c0016bff91cda80003', 'from_time', '开始日期', 'from_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '3', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('efd1b955a75b5046e9857e00fe94ae2c', 'fbc35f067da94a70adb622ddba259352', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', null, null, '2019-07-03 19:44:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f015cc2ffdcc2c4be1e9b3622eb69b52', 'fbc35f067da94a70adb622ddba259352', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', null, null, '2019-07-03 19:44:23', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f06b2bb01ea1fae487b7e3c3eb521d5b', 'd3ae1c692b9640e0a091f8c46e17bb01', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', null, null, '2019-07-24 14:47:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f0967fd139b440f79f21248bf4e4a209', 'd3ae1c692b9640e0a091f8c46e17bb01', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', null, null, '2019-07-24 14:47:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f0a453930aa16ca32f2e3be860bfe542', '402860816bff91c0016bffa220a9000b', 'education', '学历', 'education', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '14', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f12753b4a3815697a72017a7436fe733', 'e2faf977fdaf4b25a524f58c2441a51c', 'update_time', '更新日期', null, '0', '1', 'Date', '20', '0', '', '', '', '', 'datetime', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '5', 'admin', '2019-06-10 17:27:00', '2019-04-24 17:12:11', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f18bb17ae2b9274e4ce77d66445284ac', '402881e6760269a20176026a22e70001', 'ddd', 'DD类型', null, '0', '1', 'double', '10', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '20', null, null, '2020-11-26 10:37:59', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('f1ab7d3b55ade57eeac6c55b32ce813a', '1acb6f81a1d9439da6cc4e868617b565', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f1c7fde21f26c7ed64a0ef1095900c52', '4028318169e81b970169e81b97650000', 'request_type', '请求类型', 'request_type', '0', '1', 'string', '10', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '11', null, null, '2019-04-04 19:28:36', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f3284a1ce6da9b887dce89091eaa0f6b', '402880e570a5d7000170a5d700f50000', 'pro_type', '产品类型', null, '0', '1', 'String', '32', '0', '', 'sex', '', '', 'radio', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', null, null, '9', null, null, '2020-03-04 21:58:16', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f38319e2add8da6a7223d77359144a22', '402880e5721355dd01721355dd390000', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '4', null, null, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('f4647a91a4ac5d6d32bb0692b800bffe', '402860816bff91c0016bff91c0cb0000', 'probation_post', '试用期职位', 'probation_post', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '8', 'admin', '2019-07-19 18:09:01', '2019-07-17 18:54:32', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f4b0bc7f3d6562e28d7c5e2d56510ecd', 'e5464aa8fa7b47c580e91593cf9b46dc', 'first_num', '首次数量', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '8', 'admin', '2019-04-24 17:09:49', '2019-04-24 14:31:31', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f558359b06aea79a992c102ce3563a4d', '4028318169e81b970169e81b97650000', 'username', '操作用户名称', 'username', '0', '1', 'string', '100', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '6', null, null, '2019-04-04 19:28:36', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f5d2475aec4b9016dfc0c8772e1704ea', '402880eb71d52dc30171d52dc3a10000', 'code', '编码', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '${order_num_rule_param}', '0', '1', '1', '0', 'single', null, null, '2', null, null, '2020-05-02 19:37:59', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('f6076d9c662a0adddb39a91cccb4c993', 'd35109c3632c4952a19ecc094943dd71', 'xiamuti', '下拉多选', null, '0', '1', 'string', '100', '0', '', 'sex', '', '', 'list_multi', '', '120', null, '0', '', '', '1', '1', '1', '0', 'single', '', '', '17', 'admin', '2021-03-16 17:09:22', '2020-11-26 18:02:20', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('f6431abe33976df2491df14db01591fe', '402881e6760269a20176026d25650002', 'key_word', '关键词', 'key_word', '0', '1', 'string', '255', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'single', null, null, '3', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f6afcb7d8ea81879593ff737b55ddcc0', '402860816bff91c0016bff91cda80003', 'id', 'id', 'id', '1', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '1', 'admin', '2019-07-19 18:06:36', '2019-07-17 18:54:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f6f8aed87ec73994f6a12abbc079dbb1', '402860816bff91c0016bffa220a9000b', 'update_by', '更新人', 'update_by', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '41', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f7332af7586c83c87f7b9ea144a5292d', '62e29cdb81ac44d1a2d8ff89851b853d', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', null, null, '2019-05-11 14:01:14', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f76719783433487f4710232e2ae0e521', '402860816bff91c0016bff91cfea0004', 'id', 'id', 'id', '1', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'group', '', '', '1', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f7e7eb84ddc34d7e09d10af213ac6667', '402860816bff91c0016bff91d2810005', 'create_time', '创建时间', 'create_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '11', 'admin', '2019-07-19 18:05:55', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f81d7103c0c857e5c744cda2bc4c000a', '402860816bff91c0016bff91ca7e0002', 'cert_organizations', '发证机关', 'cert_organizations', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '6', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f82db8edef5babf741914b0fa221329b', '4028839a6de2ebd3016de2ebd3870000', 'bpm_status', '流程状态', 'bpm_status', '0', '1', 'string', '2', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '1', '1', '0', 'group', null, null, '16', null, null, '2019-10-19 15:29:30', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f857d4fd2d63c1ad94ed4698f5b173f5', '05a3a30dada7411c9109306aa4117068', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', '', '', '1', 'admin', '2020-05-12 22:39:41', '2020-05-06 11:34:31', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('f8a0fd20a1173270afdfed1129d5c669', '402860816bff91c0016bffa220a9000b', 'depart_id', '所在部门id', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '44', 'admin', '2019-07-22 16:15:32', '2019-07-19 15:33:44', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f8cc6be747fec10802eb625ac529c16f', '402860816bff91c0016bff91cfea0004', 'create_time', '创建时间', 'create_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '10', 'admin', '2019-07-19 18:05:13', '2019-07-17 18:54:35', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f90bcb38fb89988bd40d1618aa75cea0', '758334cb1e7445e2822b60e807aec4a3', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '1', null, null, '2019-10-18 18:02:09', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f93dcb2aa091b8e1038019d8f07cbd3f', '402881e6760269a201760269a2af0000', 'id', '主键', null, '1', '0', 'string', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '1', 'single', null, null, '1', null, null, '2020-11-26 10:37:26', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('f94db83e41c69f407d3c9a81c5892269', '402860816bff91c0016bffa220a9000b', 'first_job_time', '首次工作时间', 'first_job_time', '0', '1', 'Date', '0', '0', '', '', '', '', 'date', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '22', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('f95d2cbefd25444909c83aaf8c4f72fb', '402860816bff91c0016bff91ca7e0002', 'memo', '备注', 'memo', '0', '1', 'string', '255', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '7', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('fa3a12d7abf72b23afe425f8dbd57f86', '1acb6f81a1d9439da6cc4e868617b565', 'size_type', '尺码类型', null, '0', '1', 'String', '2', '0', '', 'air_china_size', '', '', 'list', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2019-06-10 14:47:14', '2019-04-23 22:58:19', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('fa8f5a0ba673e0208934567462844eab', '402860816bff91c0016bff91ca7e0002', 'sys_org_code', '组织机构编码', 'sys_org_code', '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '13', 'admin', '2019-07-19 18:07:13', '2019-07-17 18:54:33', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('faaaca21b7b2b16089c885f3224e4dc5', '4fb8e12a697f4d5bbe9b9fb1e9009486', 'main_id', '主表ID', null, '0', '1', 'String', '200', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', 'demo_field_def_val_main', 'id', '5', 'admin', '2020-11-26 17:28:14', '2020-04-10 19:47:55', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('fafb32cf7e63bca93bbd70b0a0ea11fc', '758334cb1e7445e2822b60e807aec4a3', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '6', null, null, '2019-10-18 18:02:09', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('fb56aeb6b3a5a0a974ef62f34727eea6', '402880e5721355dd01721355dd390000', 'sys_org_code', '所属部门', null, '0', '1', 'string', '64', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', null, null, '6', null, null, '2020-05-14 21:18:14', 'admin', '', '', '', '', '', null, '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('fc55d467102c2c782286f546d7820c3d', '73162c3b8161413e8ecdca7eb288d0c9', 'pid', '父物料', null, '0', '1', 'String', '36', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '9', 'admin', '2019-07-01 14:23:32', '2019-06-10 15:18:34', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('fc76a3832d232829852cae6c66e44f67', '402860816bff91c0016bffa220a9000b', 'identity_no', '身份证号', 'identity_no', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '21', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('fcd519058d68fa4dab192335602b5d24', '402860816bff91c0016bffa220a9000b', 'real_name', '姓名', 'real_name', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '5', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('fd0586cae06685959415d9017b2bdf49', '758334cb1e7445e2822b60e807aec4a3', 'create_by', '创建人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '2', null, null, '2019-10-18 18:02:09', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('fde00160a5d664effaa4b5552e814e74', 'fb7125a344a649b990c12949945cb6c1', 'sex', '性别', null, '0', '1', 'string', '32', '0', '', '', '', '', 'text', '', '120', '', '0', '', '', '0', '1', '1', '0', 'single', '', '', '6', 'admin', '2019-03-26 19:24:11', '2019-03-26 19:01:52', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('fe05080f0cd87dd11710b83ce77fefb7', '402881e6760269a20176026d25650002', 'id', '主键ID', 'id', '1', '0', 'string', '50', '0', null, null, null, null, 'text', null, '120', null, '0', null, null, '0', '0', '0', '1', 'single', null, null, '1', null, null, '2020-11-26 10:41:17', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('fed133a00f57245d4cfb02dd3c3ce7c1', '4adec929a6594108bef5b35ee9966e9f', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '9', 'admin', '2020-04-10 19:43:38', '2020-04-10 19:35:58', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('fef2add806c5e1ddd01c79c7e84f5a65', 'cb2d8534a2f544bc9c618dd49da66336', 'cc', 'cc', null, '0', '1', 'String', '32', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', null, null, '2020-02-24 17:22:42', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ff2a099186b13d3ecb0764f7f22b1fbf', '09fd28e4b7184c1a9668496a5c496450', 'name', '客户名字', null, '0', '1', 'string', '32', '0', '', 'realname,sex,birthday', 'tj_user_report', 'name,sex,birthday', 'popup', '', '120', null, '0', '', '', '0', '1', '1', '0', 'single', '', '', '7', 'admin', '2020-05-14 21:19:21', '2020-05-08 23:51:49', 'admin', '', '', '', '', '', 'text', '0', null, null, '0');
INSERT INTO `onl_cgform_field` VALUES ('ff49b468e54e137032f7e4d976b83b5a', '402860816bff91c0016bffa220a9000b', 'politically_status', '政治面貌', 'politically_status', '0', '1', 'string', '20', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '8', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ff601f75d0e7ced226748eb8fba2c896', '402860816bff91c0016bff91d8830007', 'relation', '关系', 'relation', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '4', 'admin', '2019-07-19 18:04:41', '2019-07-17 18:54:37', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ffacafee9fa46eb297ca3252f95acef9', '402860816bff91c0016bffa220a9000b', 'school', '毕业学校', 'school', '0', '1', 'string', '100', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '1', '1', '0', 'group', '', '', '9', 'admin', '2019-07-22 16:15:32', '2019-07-17 19:12:24', 'admin', null, null, null, null, null, null, null, null, null, null);
INSERT INTO `onl_cgform_field` VALUES ('ffcbf379fffabbd13aa2c22ce565ec12', '79091e8277c744158530321513119c68', 'update_by', '更新人', null, '0', '1', 'string', '50', '0', '', '', '', '', 'text', '', '120', null, '0', '', '', '0', '0', '0', '0', 'single', '', '', '4', 'admin', '2019-05-11 15:29:47', '2019-05-11 15:27:17', 'admin', null, null, null, null, null, null, null, null, null, null);
-- ----------------------------
-- Table structure for onl_cgform_head