Merge branch 'master' into docker_package

This commit is contained in:
wangliwen 2022-07-18 13:41:46 +08:00
commit 175d51aebe
15 changed files with 769 additions and 34 deletions

View File

@ -70,6 +70,7 @@ public class AbilityCenterControllerV2 {
private JdbcTemplate jdbcTemplate;
@Autowired
private SysDeptService sysDeptService;
private final CodeGenerationUtils codeGenerationUtils = CodeGenerationUtils.getInstance();

View File

@ -52,6 +52,10 @@ public class CensusController {
@Value("${census.type}")
private String[] censusTypes; // 需要进行统计的资源类型
@Value("${census.applyType}")
private String[] censusApplyTypes; // 需要进行申请统计的资源类型
/**
* 获取各类资源数目
@ -161,7 +165,7 @@ public class CensusController {
public Result<List<Map<String, Object>>> applyAmount() {
List<Map<String, Object>> dbAmount = tAbilityApplicationService.getAmountGroupByType();
List<String> temp = dbAmount.stream().map(index -> index.get("type").toString()).collect(Collectors.toList());
Arrays.stream(censusTypes).filter(index -> !temp.contains(index)).forEach(index -> { // 数据库内不存在的资源类型
Arrays.stream(censusApplyTypes).filter(index -> !temp.contains(index)).forEach(index -> { // 数据库内不存在的资源类型
Map<String, Object> nullMap = new HashMap<String, Object>() {
{
put("amount", 0);

View File

@ -340,7 +340,6 @@ public class CensusControllerV2 {
allAmount = CompletableFuture.supplyAsync(() -> { // 获取平台总基础设施数目
Map map = (Map) resourceService.selectTotal();
List<Map<String, Object>> dbAmount = (List<Map<String, Object>>) map.get("total");
return dbAmount.stream().filter(index -> "基础设施".equals(index.get("type").toString()))
.mapToLong(index -> Long.parseLong(index.get("count").toString())).sum();
}).thenAccept(sum -> {

View File

@ -33,18 +33,22 @@ public class DevelopmentGuideServiceImpl implements DevelopmentGuideService {
public void getDevelopmentFile(HttpServletRequest request, HttpServletResponse response) throws Exception {
logger.info("----------------------------------获取开发指南--------------------------------------------------");
String type = request.getParameter("type");
Long resourceId = Long.parseLong(request.getParameter("resourceId"));
String resourceId = request.getParameter("resourceId").toString();
logger.info("读取文件类型及能力ID" + type + ";" + resourceId);
String url = devModelFilePath + File.separator + type + File.separator + resourceId + ".md";
String filePath = devModelFilePath + File.separator + type;
File file = new File(url);
//开发指南未保存过获取默认模板文件
logger.info("文件夹路径---------------------->>>" + filePath);
logger.info("文件--------------------------->>>" + url);
if (new File(filePath).exists()) {
if (! file.exists()) {
file = new File(devModelFilePath + File.separator + type + File.separator + type + ".md");
}
} else {
logger.info("----------------------------------文件路径不存在--------------------------------------");
throw new IOException("文件路径不存在!");
}
response.setContentType("text/html");

View File

@ -55,17 +55,18 @@ public class SysLogOperationServiceImpl extends BaseServiceImpl<SysLogOperationD
.eq(StringUtils.isNotBlank(creatorName), "creator_name", creatorName)
.like(StringUtils.isNotBlank(operation), "operation", operation)
.between(StringUtils.isNotBlank(startDate), "create_date", startDate, endDate);
if ("all".equals(operationType)) {
if (params.containsKey("operationType")) {
queryWrapper.ne("request_uri", "/renren-admin/resource/updateVisits");
queryWrapper.and(wrapper ->
wrapper.like("request_uri", "/renren-admin/resource%/insert")
.or()
.like("request_uri", "/renren-admin/resource%/update")
.or()
.like("request_uri", "/renren-admin/resource%/delete"));
} else {
queryWrapper.ne("request_uri", "/renren-admin/resource/updateVisits");
queryWrapper.like(StringUtils.isNotBlank(operationType),"request_uri", operationType);
if ("all".equals(operationType)) {
queryWrapper.and(wrapper ->
wrapper.like("request_uri", "/renren-admin/resource%/insert")
.or()
.like("request_uri", "/renren-admin/resource%/update")
.or()
.like("request_uri", "/renren-admin/resource%/delete"));
} else {
queryWrapper.like(StringUtils.isNotBlank(operationType),"request_uri", operationType);
}
}
return queryWrapper;
}

View File

@ -110,7 +110,7 @@ public interface ResourceDao extends BaseDao<ResourceEntity> {
List<Map<String, Object>> selectApplyDeptTypeCountList();
List<String> selectMaxType();
//List<String> selectMaxType();
List<Map> selectByType(@Param("type") String s);

View File

@ -15,6 +15,7 @@ import io.renren.common.domain.Tsingtao_xhaProperties;
import io.renren.common.page.PageData;
import io.renren.common.service.impl.CrudServiceImpl;
import io.renren.common.utils.DateUtils;
import io.renren.common.utils.Result;
import io.renren.modules.monitor.dto.CameraChannelDto1;
import io.renren.modules.monitor.entity.CameraChannel;
import io.renren.modules.monitor.mapper.CameraChannelMapper;
@ -25,6 +26,8 @@ import io.renren.modules.processForm.service.TAbilityApplicationService;
import io.renren.modules.resource.dao.AttrDao;
import io.renren.modules.resource.dao.ResourceDao;
import io.renren.modules.resource.dao.TbDataResourceRelDao;
import io.renren.modules.resource.dataResource.AbstractDataResourceService;
import io.renren.modules.resource.dataResource.DataResourceFactory;
import io.renren.modules.resource.dataResource.domain.TsingtaoDataResourceService;
import io.renren.modules.resource.dto.GetDataResourceListDto;
import io.renren.modules.resource.dto.ResourceDTO;
@ -181,6 +184,9 @@ public class ResourceServiceImpl extends CrudServiceImpl<ResourceDao, ResourceEn
@Autowired
private TbDataResourceRelDao tbDataResourceRelDao;
@Value("${census.type}")
private String[] censusTypes; // 需要进行统计的资源类型
@Override
public QueryWrapper<ResourceEntity> getWrapper(Map<String, Object> params) {
QueryWrapper<ResourceEntity> wrapper = new QueryWrapper<>();
@ -635,6 +641,18 @@ public class ResourceServiceImpl extends CrudServiceImpl<ResourceDao, ResourceEn
}
break;
}
List<String> temp = new ArrayList<>();
re.forEach(map -> temp.add(map.get("type").toString()));
Arrays.stream(censusTypes).filter(index -> !temp.contains(index)).forEach(index -> { // 数据库内不存在的资源类型
Map<String, Object> nullMap = new HashMap<String, Object>() {
{
put("count", 0);
put("type", index);
}
};
re.add(nullMap);
});
resultMap.put("total", re);
return resultMap;
}
@ -934,17 +952,65 @@ public class ResourceServiceImpl extends CrudServiceImpl<ResourceDao, ResourceEn
@Override
public Object capabilityTypeCapabilitySet() {
HashMap<String, Object> resultMap = new HashMap<>();
List<String> types = resourceDao.selectMaxType();
if (types.isEmpty()) {
return resultMap;
}
List<Map> resourceList = resourceDao.selectByType(types.get(0));
HashMap<String, Object> maxdeptMap = new HashMap<>();
maxdeptMap.put("resourceList", resourceList);
maxdeptMap.put("typeName", types.get(0));
resultMap.put("maxDept", maxdeptMap);
List<Map> typeList = resourceDao.selectTypeCountList();
List<Map> typeListOld = (List<Map>) this.selectTotal();
List<Map> typeList = new ArrayList<>();
final Long[] maxTypeCount = {0L};
final String[] maxTypeString = new String[1];
typeListOld.forEach(map -> {
typeList.add(new HashMap() {{
put("type", map.get("type"));
put("total", map.get("count"));
if (Long.parseLong(map.get("count").toString()) > maxTypeCount[0]) {
maxTypeCount[0] = Long.parseLong(map.get("count").toString());
maxTypeString[0] = map.get("type").toString();
}
}});
});
resultMap.put("typeList", typeList);
HashMap<String, Object> maxdeptMap = new HashMap<>();
if (maxTypeCount[0] > 0) {
maxdeptMap.put("typeName", maxTypeString[0]);
if ("基础设施".equals(maxTypeString[0])) {
List <Map> resourceList = new ArrayList<>();
Map<String, Object> infrastructureList = (Map<String, Object>) this.selectInfrastructureList();
infrastructureList.forEach((k,v) -> {
resourceList.add(new HashMap(){{
put("id", k + v + "");
put("name", k + v + "");
}});
});
maxdeptMap.put("resourceList", resourceList);
} else if ("数据资源".equals(maxTypeString[0])) {
GetDataResourceListDto dto = new GetDataResourceListDto();
dto.setPageNum(0);
dto.setPageSize(30);
Optional<AbstractDataResourceService> factory = DataResourceFactory.build();
if (factory.isPresent()) {
List <Map> resourceList = new ArrayList<>();
Map<String, Object> dataResource = (Map<String, Object>) factory.get().getDataResource(dto);
if (!dataResource.isEmpty()) {
List<Map<String, Object>> list = (List<Map<String, Object>>) dataResource.get("data");
list.forEach(map -> resourceList.add(new HashMap(){{
if (map.containsKey("zyname")) {
put("id", map.get("guid"));
put("name", map.get("zyname"));
} else {
put("id", map.get("serviceId"));
put("name", map.get("serviceName"));
}
}}));
}
maxdeptMap.put("resourceList", resourceList);
}
}else {
List<Map> resourceList = resourceDao.selectByType(maxTypeString[0]);
maxdeptMap.put("resourceList", resourceList);
}
} else {
maxdeptMap.put("resourceList", new ArrayList<>());
maxdeptMap.put("typeName", "组件服务");
}
resultMap.put("maxDept", maxdeptMap);
return resultMap;
}

View File

@ -60,6 +60,6 @@ public class TsingtaoXHAVideoPreviewService extends AbstractVideoPreviewService
} catch (Exception exception) {
logger.error("西海岸预览地址获取失败:{}", url, exception);
}
return result.stream().filter(index -> StringUtils.isNotEmpty(index)).findAny().orElse(null);
return result.stream().filter(StringUtils::isNotEmpty).findAny().orElse(null);
}
}

View File

@ -10,6 +10,7 @@ big_date:
# 需要进行统计数目的资源 type
census:
type: 组件服务,应用资源,基础设施,数据资源,知识库
applyType: 应用资源,业务组件,图层服务,开发组件,智能算法
# 海信网关
hisense:
gateway:

View File

@ -0,0 +1,130 @@
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1160061077912858625, 'gender', '性别', '', 0, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1225813644059140097, 'notice_type', '站内通知-类型', '', 1, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1341593474355838978, 'post_status', '岗位管理状态', '', 0, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1343069688596295682, 'order_status', '订单状态', '', 0, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1497114512560504834, 'event_type', '异常事件', '', 0, 1067246875800000001, '2022-02-25 15:41:29', 1513435534798127105, '2022-04-12 10:54:08', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513690812521160705, 'applicationType', '应用类型', '应用资源', 0, 1513433270406643713, '2022-04-12 09:29:47', 1513433270406643713, '2022-04-12 09:29:47', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513693624420311042, 'publishingTerminal', '发布终端', '发布终端', 0, 1513435534798127105, '2022-04-12 09:40:58', 1513435534798127105, '2022-04-12 10:53:19', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513711991655014402, 'applicationStatus', '应用状态', '应用状态', 0, 1513435534798127105, '2022-04-12 10:53:57', 1513435534798127105, '2022-04-12 10:53:57', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513712507692818433, 'applicationArea', '应用领域', '', 0, 1513435534798127105, '2022-04-12 10:56:00', 1513435534798127105, '2022-04-12 11:09:55', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713662657339394, 'category', '组件类型', '组件类型', 0, 1513435534798127105, '2022-04-12 11:00:35', 1513435534798127105, '2022-04-12 11:05:20', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513714027213660162, 'useType', '使用类型', '使用类型', 0, 1513435534798127105, '2022-04-12 11:02:02', 1513435534798127105, '2022-04-12 11:02:43', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513714403530809346, 'technicalField', '技术领域', '技术领域', 0, 1513435534798127105, '2022-04-12 11:03:32', 1513435534798127105, '2022-04-12 11:03:32', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1529028127496343554, 'yes_not', '是否存在', '', 0, 1515239183144824833, '2022-05-24 17:14:48', 1515239183144824833, '2022-05-24 17:14:48', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531163741457014785, 'fieldType', '字段类型', '编目-字段类型', 30, 1513433270406643713, '2022-05-30 14:40:58', 1513433709613187073, '2022-06-06 10:12:31', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531193462665834498, 'shareType', '共享类型', '', 18, 1513433709613187073, '2022-05-30 16:39:04', 1513433709613187073, '2022-05-30 16:39:04', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531193872826822657, 'sharingConditions', '共享条件', '', 19, 1513433709613187073, '2022-05-30 16:40:42', 1513433709613187073, '2022-05-30 16:40:42', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531214531592740866, 'api_type', '接口请求方式', '', 20, 1513433709613187073, '2022-05-30 18:02:48', 1513433709613187073, '2022-05-30 18:02:48', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531571420813979650, 'gradesandbaoding', '等保定级', '等保定级', 0, 1517397484770328578, '2022-05-31 17:40:57', 1517397484770328578, '2022-05-31 17:40:57', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534803070025687042, 'deploymentArea', '部署区域', '', 0, 1513433270406643713, '2022-06-09 15:42:22', 1513433270406643713, '2022-06-09 15:42:22', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534804157952647169, 'methodType', '接口请求方式', '', 0, 1513433270406643713, '2022-06-09 15:46:41', 1513433270406643713, '2022-06-09 15:46:41', NULL);
REPLACE INTO `sys_dict_type`(`id`, `dict_type`, `dict_name`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534805229031088130, 'algorithmCategory', '算法类别', '', 0, 1513433270406643713, '2022-06-09 15:50:57', 1513433270406643713, '2022-06-09 15:50:57', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1160061112075464705, 1160061077912858625, '', '0', '', 0, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1160061146967879681, 1160061077912858625, '', '1', '', 1, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1160061190127267841, 1160061077912858625, '保密', '2', '', 2, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1225814069634195457, 1225813644059140097, '公告', '0', '', 0, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1225814107559092225, 1225813644059140097, '会议', '1', '', 1, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1225814271879340034, 1225813644059140097, '其他', '2', '', 2, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1341593562419445762, 1341593474355838978, '停用', '0', '', 1, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1341593595407646722, 1341593474355838978, '正常', '1', '', 0, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1343069765549191170, 1343069688596295682, '已取消', '-1', '', 0, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1343069839847092226, 1343069688596295682, '等待付款', '0', '', 1, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1343069914518286337, 1343069688596295682, '已完成', '1', '', 2, 1067246875800000001, '2022-02-25 10:37:18', 1067246875800000001, '2022-02-25 10:37:18', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1497114787694264321, 1497114512560504834, '文明创城', '1', '', 1, 1067246875800000001, '2022-02-25 15:42:35', 1067246875800000001, '2022-02-25 15:42:35', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1497114846380965890, 1497114512560504834, '恶劣天气处置', '2', '', 2, 1067246875800000001, '2022-02-25 15:42:49', 1067246875800000001, '2022-02-25 15:42:49', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1497114921660334082, 1497114512560504834, '疫情场景', '3', '', 3, 1067246875800000001, '2022-02-25 15:43:07', 1067246875800000001, '2022-02-25 15:43:07', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1497114968951111681, 1497114512560504834, '非法燃放烟花爆竹', '4', '', 4, 1067246875800000001, '2022-02-25 15:43:18', 1067246875800000001, '2022-02-25 15:43:18', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1501492864766509057, 1501431675134992386, '新闻分类', '0', NULL, NULL, 1067246875800000001, '2022-03-09 17:39:30', 1067246875800000001, '2022-03-09 17:39:30', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1501753390335639554, 1501431675134992380, '新闻', '0', NULL, NULL, 1067246875800000001, '2022-03-10 10:54:44', 1067246875800000001, '2022-03-10 10:54:44', 0);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513691045674131458, 1513690812521160705, '办公类', '1', '', 1, 1513433270406643713, '2022-04-12 09:30:43', 1513433270406643713, '2022-04-12 09:30:43', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513691199558950914, 1513690812521160705, '业务类', '2', '', 2, 1513433270406643713, '2022-04-12 09:31:20', 1513433270406643713, '2022-04-12 09:31:20', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513692025207693314, 1513690812521160705, '工具类', '3', '', 3, 1513435534798127105, '2022-04-12 09:34:37', 1513435534798127105, '2022-04-12 09:36:22', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513692537168633857, 1513690812521160705, '门户网站', '4', '', 4, 1513435534798127105, '2022-04-12 09:36:39', 1513435534798127105, '2022-04-12 09:36:39', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513692601890938881, 1513690812521160705, '大屏看板', '5', '', 5, 1513435534798127105, '2022-04-12 09:36:54', 1513435534798127105, '2022-04-12 09:36:54', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513693142452838402, 1513690812521160705, '硬件类', '6', '', 6, 1513435534798127105, '2022-04-12 09:39:03', 1513435534798127105, '2022-04-12 09:39:03', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513693214594867201, 1513690812521160705, '小程序', '7', '', 7, 1513435534798127105, '2022-04-12 09:39:20', 1513435534798127105, '2022-04-12 09:39:20', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513693270773374978, 1513690812521160705, '公众号', '8', '', 8, 1513435534798127105, '2022-04-12 09:39:33', 1513435534798127105, '2022-04-12 09:39:33', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513693379103858690, 1513690812521160705, '其他', '99', '', 99, 1513435534798127105, '2022-04-12 09:39:59', 1513435534798127105, '2022-04-12 09:44:54', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513694142332968962, 1513693624420311042, '青e办', '1', '', 1, 1513435534798127105, '2022-04-12 09:43:01', 1513435534798127105, '2022-04-12 09:43:01', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513694184779325442, 1513693624420311042, '青政办', '2', '', 2, 1513435534798127105, '2022-04-12 09:43:11', 1513435534798127105, '2022-04-12 09:43:11', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513694225602486274, 1513693624420311042, '微信', '3', '', 3, 1513435534798127105, '2022-04-12 09:43:21', 1513435534798127105, '2022-04-12 09:43:21', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513694306254757889, 1513693624420311042, '支付宝', '4', '', 4, 1513435534798127105, '2022-04-12 09:43:40', 1513435534798127105, '2022-04-12 09:43:40', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513694351901368322, 1513693624420311042, 'PC端', '5', '', 5, 1513435534798127105, '2022-04-12 09:43:51', 1513435534798127105, '2022-04-12 09:43:51', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513694388765106177, 1513693624420311042, 'APP端', '6', '', 6, 1513435534798127105, '2022-04-12 09:44:00', 1513435534798127105, '2022-04-12 09:44:00', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513694432113238017, 1513693624420311042, '网页', '7', '', 7, 1513435534798127105, '2022-04-12 09:44:10', 1513435534798127105, '2022-04-12 09:44:10', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513694486660161537, 1513693624420311042, '其他', '99', '', 99, 1513435534798127105, '2022-04-12 09:44:23', 1513435534798127105, '2022-04-12 09:44:41', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513712147154640898, 1513711991655014402, '申报中', '1', '', 1, 1513435534798127105, '2022-04-12 10:54:34', 1513435534798127105, '2022-04-12 10:54:34', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513712186178445314, 1513711991655014402, '立项中', '2', '', 2, 1513435534798127105, '2022-04-12 10:54:43', 1513435534798127105, '2022-04-12 10:54:43', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513712240268189697, 1513711991655014402, '建设中', '3', '', 3, 1513435534798127105, '2022-04-12 10:54:56', 1513435534798127105, '2022-04-12 10:54:56', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513712287663824897, 1513711991655014402, '运行中', '4', '', 4, 1513435534798127105, '2022-04-12 10:55:07', 1513435534798127105, '2022-04-12 10:55:07', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513712326930898945, 1513711991655014402, '升级中', '5', '', 5, 1513435534798127105, '2022-04-12 10:55:17', 1513435534798127105, '2022-04-12 10:55:17', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513712368735526914, 1513711991655014402, '停用', '6', '', 6, 1513435534798127105, '2022-04-12 10:55:27', 1513435534798127105, '2022-04-12 10:55:27', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513712413711048706, 1513711991655014402, '其他', '99', '', 99, 1513435534798127105, '2022-04-12 10:55:38', 1513435534798127105, '2022-04-12 10:55:38', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513712902657843202, 1513712507692818433, '社会治安', '1', '', 1, 1513435534798127105, '2022-04-12 10:57:34', 1513435534798127105, '2022-04-12 10:57:34', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513712953966764033, 1513712507692818433, '城市管理', '2', '', 2, 1513435534798127105, '2022-04-12 10:57:46', 1513435534798127105, '2022-04-12 10:57:46', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513712990385905666, 1513712507692818433, '疫情防控', '3', '', 3, 1513435534798127105, '2022-04-12 10:57:55', 1513435534798127105, '2022-04-12 10:57:55', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713052541296642, 1513712507692818433, '危化品管理', '4', '', 4, 1513435534798127105, '2022-04-12 10:58:10', 1513435534798127105, '2022-04-12 10:58:10', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713091770621954, 1513712507692818433, '交通运输', '5', '', 5, 1513435534798127105, '2022-04-12 10:58:19', 1513435534798127105, '2022-04-12 10:58:19', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713131058667521, 1513712507692818433, '森林防火', '6', '', 6, 1513435534798127105, '2022-04-12 10:58:29', 1513435534798127105, '2022-04-12 10:58:29', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713173379194882, 1513712507692818433, '防汛抗旱', '7', '', 7, 1513435534798127105, '2022-04-12 10:58:39', 1513435534798127105, '2022-04-12 10:58:39', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713207898316802, 1513712507692818433, '文化旅游', '8', '', 8, 1513435534798127105, '2022-04-12 10:58:47', 1513435534798127105, '2022-04-12 10:58:47', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713246678851586, 1513712507692818433, '非煤矿山', '9', '', 9, 1513435534798127105, '2022-04-12 10:58:56', 1513435534798127105, '2022-04-12 10:58:56', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713286688317442, 1513712507692818433, '医疗卫生', '10', '', 10, 1513435534798127105, '2022-04-12 10:59:06', 1513435534798127105, '2022-04-12 10:59:06', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713328153206786, 1513712507692818433, '安全生产', '11', '', 11, 1513435534798127105, '2022-04-12 10:59:16', 1513435534798127105, '2022-04-12 10:59:16', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713389469736962, 1513712507692818433, '生态环境', '12', '', 12, 1513435534798127105, '2022-04-12 10:59:30', 1513435534798127105, '2022-04-12 10:59:30', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713438274658306, 1513712507692818433, '农村农业', '13', '', 13, 1513435534798127105, '2022-04-12 10:59:42', 1513435534798127105, '2022-04-12 10:59:42', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713486626594817, 1513712507692818433, '市场监管', '14', '', 14, 1513435534798127105, '2022-04-12 10:59:53', 1513435534798127105, '2022-04-12 10:59:53', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713527395229698, 1513712507692818433, '政务服务', '15', '', 15, 1513435534798127105, '2022-04-12 11:00:03', 1513435534798127105, '2022-04-12 11:00:03', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713561142599682, 1513712507692818433, '其他', '99', '', 99, 1513435534798127105, '2022-04-12 11:00:11', 1513435534798127105, '2022-04-12 11:00:11', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713726427537410, 1513713662657339394, '智能算法', '1', '', 1, 1513435534798127105, '2022-04-12 11:00:50', 1513435534798127105, '2022-04-12 11:00:50', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713756559417346, 1513713662657339394, '图层服务', '2', '', 2, 1513435534798127105, '2022-04-12 11:00:58', 1513435534798127105, '2022-04-12 11:00:58', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713790751383553, 1513713662657339394, '开发组件', '3', '', 3, 1513435534798127105, '2022-04-12 11:01:06', 1513435534798127105, '2022-04-12 11:01:06', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713827879362562, 1513713662657339394, '办公组件', '4', '', 4, 1513435534798127105, '2022-04-12 11:01:15', 1513435534798127105, '2022-04-12 11:01:15', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713864000708610, 1513713662657339394, '业务组件', '5', '', 5, 1513435534798127105, '2022-04-12 11:01:23', 1513435534798127105, '2022-04-12 11:01:23', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513713906916827138, 1513713662657339394, '其他', '99', '', 99, 1513435534798127105, '2022-04-12 11:01:34', 1513435534798127105, '2022-04-12 11:01:34', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513714259091562497, 1513714027213660162, '强制使用', '1', '', 1, 1513435534798127105, '2022-04-12 11:02:57', 1513435534798127105, '2022-04-12 11:02:57', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513714288619462658, 1513714027213660162, '推荐使用', '2', '', 2, 1513435534798127105, '2022-04-12 11:03:05', 1513435534798127105, '2022-04-12 11:03:05', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513714321163067394, 1513714027213660162, '不限', '3', '', 3, 1513435534798127105, '2022-04-12 11:03:12', 1513435534798127105, '2022-04-12 11:03:12', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513714443263451137, 1513714403530809346, '接口', '1', '', 1, 1513435534798127105, '2022-04-12 11:03:41', 1513435534798127105, '2022-04-12 11:03:41', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513714474334855170, 1513714403530809346, 'SDK', '2', '', 2, 1513435534798127105, '2022-04-12 11:03:49', 1513435534798127105, '2022-04-12 11:03:49', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513714504261214210, 1513714403530809346, 'Web页面', '3', '', 3, 1513435534798127105, '2022-04-12 11:03:56', 1513435534798127105, '2022-04-12 11:03:56', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1513714541603102722, 1513714403530809346, '其他', '99', '', 99, 1513435534798127105, '2022-04-12 11:04:05', 1513435534798127105, '2022-04-12 11:04:05', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1529028194517127170, 1529028127496343554, '', '0', '', 0, 1515239183144824833, '2022-05-24 17:15:04', 1515239183144824833, '2022-05-24 17:18:10', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1529028238309855233, 1529028127496343554, '', '1', '', 0, 1515239183144824833, '2022-05-24 17:15:15', 1515239183144824833, '2022-05-24 17:18:01', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531164091329077250, 1531163741457014785, '单行文本', 'input', '', 1, 1513433270406643713, '2022-05-30 14:42:22', 1513433270406643713, '2022-05-30 14:42:22', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531164238528176129, 1531163741457014785, '多行文本', 'textArea', '', 2, 1513433270406643713, '2022-05-30 14:42:57', 1513433270406643713, '2022-05-30 14:42:57', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531164512823074818, 1531163741457014785, '单张图片', 'image', '', 4, 1513433270406643713, '2022-05-30 14:44:02', 1513433270406643713, '2022-05-30 14:50:28', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531164554032111618, 1531163741457014785, '视频', 'video', '', 6, 1513433270406643713, '2022-05-30 14:44:12', 1513433270406643713, '2022-05-30 14:44:12', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531164588542844929, 1531163741457014785, '文件', 'file', '', 7, 1513433270406643713, '2022-05-30 14:44:20', 1513433270406643713, '2022-05-30 14:44:20', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531164650173947906, 1531163741457014785, '下拉列表', 'select', '', 3, 1513433270406643713, '2022-05-30 14:44:35', 1513433270406643713, '2022-05-30 14:44:35', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531166270181900289, 1531163741457014785, '多张图片', 'images', '', 5, 1513433270406643713, '2022-05-30 14:51:01', 1513433270406643713, '2022-05-30 14:51:01', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531193645722038273, 1531193462665834498, '有条件共享', 'conditional', '', 1, 1513433709613187073, '2022-05-30 16:39:48', 1513433709613187073, '2022-05-30 16:39:48', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531193734569979906, 1531193462665834498, '无条件共享', 'unconditional', '', 2, 1513433709613187073, '2022-05-30 16:40:09', 1513433709613187073, '2022-05-30 16:40:09', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531193945941929986, 1531193872826822657, '申请', 'application', '', 1, 1513433709613187073, '2022-05-30 16:41:00', 1513433709613187073, '2022-05-30 16:41:00', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531194122345967618, 1531193872826822657, '免批申请', 'exemptionFromApproval', '', 2, 1513433709613187073, '2022-05-30 16:41:42', 1513433709613187073, '2022-05-30 16:41:42', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531214682814177282, 1531214531592740866, 'GET', 'GET', '', 1, 1513433709613187073, '2022-05-30 18:03:24', 1513433709613187073, '2022-05-30 18:03:24', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531214706830761985, 1531214531592740866, 'POST', 'POST', '', 2, 1513433709613187073, '2022-05-30 18:03:29', 1513433709613187073, '2022-05-30 18:03:29', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531214734282481665, 1531214531592740866, 'PUT', 'PUT', '', 3, 1513433709613187073, '2022-05-30 18:03:36', 1513433709613187073, '2022-05-30 18:03:36', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531214762791165954, 1531214531592740866, 'DELETE', 'DELETE', '', 4, 1513433709613187073, '2022-05-30 18:03:43', 1513433709613187073, '2022-05-30 18:03:43', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531214794017759233, 1531214531592740866, 'HEAD', 'HEAD', '', 5, 1513433709613187073, '2022-05-30 18:03:50', 1513433709613187073, '2022-05-30 18:03:50', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531214849307074561, 1531214531592740866, 'OPTIONS', 'OPTIONS', '', 6, 1513433709613187073, '2022-05-30 18:04:03', 1513433709613187073, '2022-05-30 18:04:03', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531214969662627841, 1531214531592740866, 'TRACE', 'TRACE', '', 7, 1513433709613187073, '2022-05-30 18:04:32', 1513433709613187073, '2022-05-30 18:04:32', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531215034481401858, 1531214531592740866, 'CONNECT', 'CONNECT', '', 8, 1513433709613187073, '2022-05-30 18:04:47', 1513433709613187073, '2022-05-30 18:04:47', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531572146202079234, 1531571420813979650, '一级', '1', '', 1, 1517397484770328578, '2022-05-31 17:43:50', 1517397484770328578, '2022-05-31 17:43:50', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531572199784312834, 1531571420813979650, '二级', '2', '', 2, 1517397484770328578, '2022-05-31 17:44:02', 1517397484770328578, '2022-05-31 17:44:02', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1531572239600840705, 1531571420813979650, '三级', '3', '', 3, 1517397484770328578, '2022-05-31 17:44:12', 1517397484770328578, '2022-05-31 17:44:22', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534451646737612801, 1531163741457014785, '多选标签', 'checkBox', '', 8, 1513433270406643713, '2022-06-08 16:25:56', 1513433270406643713, '2022-06-08 16:25:56', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534465201109139457, 1531163741457014785, '单选标签', 'radio', '', 9, 1513433270406643713, '2022-06-08 17:19:48', 1513433270406643713, '2022-06-08 17:19:48', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534803228620709889, 1534803070025687042, '金宏网', 'jhw', '', 0, 1513433270406643713, '2022-06-09 15:43:00', 1513433270406643713, '2022-06-09 15:43:47', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534803286921535489, 1534803070025687042, '互联网', 'hlw', '', 1, 1513433270406643713, '2022-06-09 15:43:14', 1513433270406643713, '2022-06-09 15:43:56', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534803333532835842, 1534803070025687042, '专线', 'zx', '', 2, 1513433270406643713, '2022-06-09 15:43:25', 1513433270406643713, '2022-06-09 15:44:06', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534804223119548418, 1534804157952647169, 'GET', 'GET', '', 0, 1513433270406643713, '2022-06-09 15:46:57', 1513433270406643713, '2022-06-09 15:46:57', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534804267029716994, 1534804157952647169, 'POST', 'POST', '', 1, 1513433270406643713, '2022-06-09 15:47:07', 1513433270406643713, '2022-06-09 15:47:07', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534804320565813250, 1534804157952647169, 'PUT', 'PUT', '', 2, 1513433270406643713, '2022-06-09 15:47:20', 1513433270406643713, '2022-06-09 15:47:20', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534804582491709442, 1534804157952647169, 'HEAD', 'HEAD', '', 3, 1513433270406643713, '2022-06-09 15:48:22', 1513433270406643713, '2022-06-09 15:48:22', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534804640578625538, 1534804157952647169, 'DELETE', 'DELETE', '', 4, 1513433270406643713, '2022-06-09 15:48:36', 1513433270406643713, '2022-06-09 15:48:36', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534805309289095170, 1534805229031088130, '文本类', '1', '', 0, 1513433270406643713, '2022-06-09 15:51:16', 1513433270406643713, '2022-06-14 19:21:09', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1534805370156834818, 1534805229031088130, '视频类', '2', '', 1, 1513433270406643713, '2022-06-09 15:51:30', 1513433270406643713, '2022-06-14 19:21:25', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1536670196898336769, 1534805229031088130, '图片类', '3', '', 2, 1513433270406643713, '2022-06-14 19:21:40', 1513433270406643713, '2022-06-14 19:21:48', NULL);
REPLACE INTO `sys_dict_data`(`id`, `dict_type_id`, `dict_label`, `dict_value`, `remark`, `sort`, `creator`, `create_date`, `updater`, `update_date`, `status`) VALUES (1536670305505644545, 1534805229031088130, '其他', '4', '', 3, 1513433270406643713, '2022-06-14 19:22:05', 1513433270406643713, '2022-06-14 19:22:05', NULL);

View File

@ -0,0 +1 @@
REPLACE INTO `sys_user`(`id`, `username`, `password`, `real_name`, `head_url`, `gender`, `email`, `mobile`, `dept_id`, `super_admin`, `status`, `creator`, `create_date`, `updater`, `update_date`, `guid`) VALUES (1067246875800000001, 'admin', '$2a$10$012Kx2ba5jzqr9gLlG4MX.bnQJTD9UWqF57XDo2N3.fPtLne02u/m', '管理员', NULL, 0, 'root@renren.io', '13612345678', NULL, 1, 1, 1067246875800000001, '2022-01-08 09:18:30', 1067246875800000001, '2022-01-08 09:18:30', NULL);

View File

@ -0,0 +1,411 @@
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514138753379680257, '组件服务', NULL, NULL, 'false', NULL, 'false', 'false', '', 10, 0, 1067246875800000001, '2022-04-13 15:09:45', 1067246875800000001, '2022-06-18 16:03:39', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514164117665562626, '基础设施', NULL, NULL, 'false', NULL, 'false', 'false', '', 8, 0, 1513437369940344833, '2022-04-13 16:50:32', 1067246875800000001, '2022-06-18 16:03:39', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514164204366020610, '数据资源', NULL, NULL, 'false', NULL, 'false', 'false', '', 9, 0, 1513437369940344833, '2022-04-13 16:50:53', 1067246875800000001, '2022-06-18 16:03:39', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514164306501517314, '应用资源', NULL, NULL, 'false', NULL, 'false', 'false', '', 10, 0, 1513437369940344833, '2022-04-13 16:51:17', 1067246875800000001, '2022-06-18 16:03:39', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514164635947319298, '知识库', NULL, NULL, 'false', NULL, 'false', 'false', '', 11, 0, 1513437369940344833, '2022-04-13 16:52:36', 1067246875800000001, '2022-06-18 16:03:39', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514417306327433218, '系统名称', '基础设施', '1514164117665562626', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 09:36:37', 1513437369940344833, '2022-04-14 09:36:37', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514417379547398146, '系统归属方', '基础设施', '1514164117665562626', 'false', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 09:36:54', 1513437369940344833, '2022-04-14 09:36:54', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514417428150992897, '系统服务商', '基础设施', '1514164117665562626', 'false', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 09:37:06', 1513437369940344833, '2022-04-14 09:37:06', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514417510099304450, '系统描述', '基础设施', '1514164117665562626', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 09:37:26', 1513437369940344833, '2022-04-14 09:37:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514417546451337217, '系统信息', '基础设施', '1514164117665562626', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 09:37:34', 1513437369940344833, '2022-04-14 09:37:34', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514417585873600513, '信息化项目', '基础设施', '1514164117665562626', 'false', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 09:37:44', 1513437369940344833, '2022-04-14 09:37:44', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514417747140395010, '云资源信息', '知识库', '1514164635947319298', 'false', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 09:38:22', 1513437369940344833, '2022-04-14 09:38:22', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514417786042564610, '视频资源信息', '知识库', '1514164635947319298', 'false', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 09:38:31', 1513437369940344833, '2022-04-14 09:38:31', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514417974589112321, '基本信息', '应用资源', '1514164306501517314', 'false', NULL, 'false', 'false', '', 4, 0, 1513437369940344833, '2022-04-14 09:39:16', 1513437369940344833, '2022-04-14 09:39:16', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514418013562585089, '服务商信息', '应用资源', '1514164306501517314', 'false', NULL, 'false', 'false', '', 3, 0, 1513437369940344833, '2022-04-14 09:39:26', 1513437369940344833, '2022-04-14 09:39:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514418051789471745, '共享属性', '应用资源', '1514164306501517314', 'false', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 09:39:35', 1513437369940344833, '2022-05-31 17:39:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514418174527389698, '必填信息', '组件服务', '1514138753379680257', 'false', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 09:40:04', 1513437369940344833, '2022-04-14 09:40:04', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514418201895223298, '服务信息', '组件服务', '1514138753379680257', 'false', NULL, 'false', 'false', '', 4, 1, 1513437369940344833, '2022-04-14 09:40:11', 1513437369940344833, '2022-05-30 18:05:52', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514418235831336962, '服务商信息', '组件服务', '1514138753379680257', 'false', NULL, 'false', 'false', '', 3, 1, 1513437369940344833, '2022-04-14 09:40:19', 1513437369940344833, '2022-05-30 18:07:23', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514418269796810753, '共享属性', '组件服务', '1514138753379680257', 'false', NULL, 'false', 'false', '', 2, 1, 1513437369940344833, '2022-04-14 09:40:27', 1513437369940344833, '2022-05-30 17:49:09', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514418365464690689, '数据资源信息项', '数据资源', '1514164204366020610', 'false', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 09:40:50', 1513437369940344833, '2022-04-14 09:40:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514418412285706242, '共享属性', '数据资源', '1514164204366020610', 'false', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 09:41:01', 1513437369940344833, '2022-04-14 09:41:01', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514424262400262145, '归属方联系电话', '系统信息', '1514417379547398146', 'true', 'input', 'false', 'false', '', 2, 0, 1513437369940344833, '2022-04-14 10:04:15', 1513437369940344833, '2022-04-14 10:04:15', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514424301084327938, '归属方联系人', '系统信息', '1514417379547398146', 'true', 'input', 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:04:25', 1513437369940344833, '2022-04-14 10:04:25', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514424342050095106, '归属方地址', '系统信息', '1514417379547398146', 'true', 'input', 'false', 'false', '', 3, 0, 1513437369940344833, '2022-04-14 10:04:34', 1513437369940344833, '2022-04-14 10:04:34', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514424374417539074, '系统归属方内设机构', '系统信息', '1514417379547398146', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:04:42', 1513437369940344833, '2022-04-14 10:04:42', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514424406789177345, '系统归属方代码', '系统信息', '1514417379547398146', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:04:50', 1513437369940344833, '2022-04-14 10:04:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514424440213585921, '系统归属方名称', '系统信息', '1514417379547398146', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:04:58', 1513437369940344833, '2022-04-14 10:04:58', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514424967819280385, '服务商名称', '系统信息', '1514417428150992897', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:07:04', 1513437369940344833, '2022-04-14 10:07:04', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425004347473922, '服务商统一社会信用代码', '系统信息', '1514417428150992897', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:07:12', 1513437369940344833, '2022-04-14 10:07:12', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425033980231682, '服务商联系人', '系统信息', '1514417428150992897', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:07:19', 1513437369940344833, '2022-04-14 10:07:19', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425076686635010, '服务商联系电话', '系统信息', '1514417428150992897', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:07:30', 1513437369940344833, '2022-04-14 10:07:30', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425137927667714, '信息化项目名称', '系统信息', '1514417585873600513', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:07:44', 1513437369940344833, '2022-04-14 10:07:44', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425167883386882, '信息化项目', '系统信息', '1514417585873600513', 'true', NULL, 'true', 'true', '1513693624420311042', 1, 0, 1513437369940344833, '2022-04-14 10:07:51', 1513437369940344833, '2022-04-14 10:07:51', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425196744392706, '信息化项目验收日期', '系统信息', '1514417585873600513', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:07:58', 1513437369940344833, '2022-04-14 10:07:58', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425411597615105, '数据名称', '数据资源', '1514418365464690689', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:08:49', 1513437369940344833, '2022-04-14 10:08:49', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425440404094977, '数据资源代码', '数据资源', '1514418365464690689', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:08:56', 1513437369940344833, '2022-04-14 10:08:56', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425470884102146, '数据格式', '数据资源', '1514418365464690689', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:09:04', 1513437369940344833, '2022-04-14 10:09:04', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425503587090434, '敏感属性', '数据资源', '1514418365464690689', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:09:11', 1513437369940344833, '2022-04-14 10:09:11', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425554489163777, '共享类型', '数据资源', '1514418412285706242', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:09:24', 1513437369940344833, '2022-04-14 10:09:24', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425583903817730, '共享方式', '数据资源', '1514418412285706242', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:09:31', 1513437369940344833, '2022-04-14 10:09:31', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514425610155966465, '共享条件', '数据资源', '1514418412285706242', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:09:37', 1513437369940344833, '2022-04-14 10:09:37', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514426972063252481, '共享类型', '组件服务', '1514418269796810753', 'true', 'select', 'false', 'true', '1531193462665834498', 1, 1, 1513437369940344833, '2022-04-14 10:15:01', 1513437369940344833, '2022-05-30 17:49:09', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514427008830521346, '共享方式', '组件服务', '1514418269796810753', 'true', 'input', 'false', 'false', '', 3, 1, 1513437369940344833, '2022-04-14 10:15:10', 1513437369940344833, '2022-05-30 17:49:09', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514427119463677954, '共享条件', '组件服务', '1514418269796810753', 'true', 'select', 'false', 'true', '1531193872826822657', 2, 1, 1513437369940344833, '2022-04-14 10:15:37', 1513437369940344833, '2022-05-30 17:49:09', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514427221406236674, '组件名称', '组件服务', '1514418174527389698', 'true', 'input', 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:16:01', 1513437369940344833, '2022-04-14 10:16:01', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428075739824130, '组件类型', '组件服务', '1514418174527389698', 'true', NULL, 'true', 'true', '1513713662657339394', 1, 1, 1513437369940344833, '2022-04-14 10:19:25', 1513437369940344833, '2022-05-30 17:47:30', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428122502119425, '技术领域', '组件服务', '1514418174527389698', 'true', NULL, 'true', 'true', '1513714403530809346', 1, 1, 1513437369940344833, '2022-04-14 10:19:36', 1513437369940344833, '2022-05-30 17:44:34', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428158317281282, '部署位置', '组件服务', '1514418174527389698', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:19:44', 1513437369940344833, '2022-05-30 17:47:38', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428197391417345, '应用领域', '组件服务', '1514418174527389698', 'true', NULL, 'true', 'true', '1513712507692818433', 1, 1, 1513437369940344833, '2022-04-14 10:19:54', 1513437369940344833, '2022-05-30 17:44:18', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428236276809729, '组件描述', '组件服务', '1514418174527389698', 'true', 'input', 'false', 'false', '', 2, 0, 1513437369940344833, '2022-04-14 10:20:03', 1513437369940344833, '2022-04-14 10:20:03', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428269260816386, '关联应用', '组件服务', '1514418174527389698', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:20:11', 1513437369940344833, '2022-05-30 17:44:41', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428297769500674, '是否收费', '组件服务', '1514418174527389698', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:20:18', 1513437369940344833, '2022-05-30 17:47:41', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428327922352129, '组件价格', '组件服务', '1514418174527389698', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:20:25', 1513437369940344833, '2022-05-30 17:44:30', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428447913000962, '服务商名', '组件服务', '1514418235831336962', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:20:53', 1513437369940344833, '2022-05-30 18:07:23', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428479856820226, '服务商统一社会信用代码', '组件服务', '1514418235831336962', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:21:01', 1513437369940344833, '2022-05-30 15:17:13', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428510391353345, '服务商联系人', '组件服务', '1514418235831336962', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:21:08', 1513437369940344833, '2022-05-30 18:07:23', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428540049276930, '服务商联系电话', '组件服务', '1514418235831336962', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:21:15', 1513437369940344833, '2022-05-30 18:07:23', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428616876343297, '服务类型', '组件服务', '1514418201895223298', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:21:34', 1513437369940344833, '2022-05-30 18:05:52', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428652938969089, '服务接口', '组件服务', '1514418201895223298', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:21:42', 1513437369940344833, '2022-05-30 18:05:52', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428680738816002, '服务接口请求方式', '组件服务', '1514418201895223298', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:21:49', 1513437369940344833, '2022-05-30 18:05:52', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428904815312897, '共享类型', '应用资源', '1514418051789471745', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:22:42', 1513437369940344833, '2022-05-31 17:39:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428953217581058, '共享方式', '应用资源', '1514418051789471745', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:22:54', 1513437369940344833, '2022-05-31 17:39:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514428979914326018, '共享条件', '应用资源', '1514418051789471745', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:23:00', 1513437369940344833, '2022-05-31 17:39:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429049392971777, '应用名称', '应用资源', '1514417974589112321', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:23:17', 1513437369940344833, '2022-05-31 17:34:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429081416482818, '应用状态', '应用资源', '1514417974589112321', 'true', 'select', 'true', 'true', '1513711991655014402', 7, 0, 1513437369940344833, '2022-04-14 10:23:24', 1513437369940344833, '2022-04-14 10:23:24', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429108071284738, '应用类型', '应用资源', '1514417974589112321', 'true', 'select', 'true', 'true', '1513690812521160705', 2, 0, 1513437369940344833, '2022-04-14 10:23:31', 1513437369940344833, '2022-04-14 10:23:31', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429134558314497, '应用领域', '应用资源', '1514417974589112321', 'true', 'select', 'true', 'true', '1513712507692818433', 1, 0, 1513437369940344833, '2022-04-14 10:23:37', 1513437369940344833, '2022-04-14 10:23:37', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429164702777346, '应用描述', '应用资源', '1514417974589112321', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:23:44', 1513437369940344833, '2022-05-31 17:34:30', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429196948586498, '部署位置', '应用资源', '1514417974589112321', 'true', 'input', 'false', 'false', '', 3, 0, 1513437369940344833, '2022-04-14 10:23:52', 1513437369940344833, '2022-04-14 10:23:52', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429224530329602, '访问地址', '应用资源', '1514417974589112321', 'true', 'input', 'false', 'false', '', 8, 1, 1513437369940344833, '2022-04-14 10:23:59', 1513437369940344833, '2022-05-31 18:04:22', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429250195275778, '发布端', '应用资源', '1514417974589112321', 'true', 'select', 'true', 'true', '1513693624420311042', 6, 0, 1513437369940344833, '2022-04-14 10:24:05', 1513437369940344833, '2022-04-14 10:24:05', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429279370854401, '等保定级', '应用资源', '1514417974589112321', 'true', 'select', 'false', 'true', '1531571420813979650', 5, 0, 1513437369940344833, '2022-04-14 10:24:12', 1513437369940344833, '2022-04-14 10:24:12', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429305484591106, '是否等保备案', '应用资源', '1514417974589112321', 'true', 'select', 'false', 'true', '1529028127496343554', 8, 0, 1513437369940344833, '2022-04-14 10:24:18', 1513437369940344833, '2022-04-14 10:24:18', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429332017758209, '是否统一登录', '应用资源', '1514417974589112321', 'true', 'select', 'false', 'true', '1529028127496343554', 4, 0, 1513437369940344833, '2022-04-14 10:24:24', 1513437369940344833, '2022-04-14 10:24:24', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429387399348226, '服务商名称', '应用资源', '1514418013562585089', 'true', 'input', 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:24:37', 1513437369940344833, '2022-04-14 10:24:37', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429415308247042, '服务商统一社会信用代码', '应用资源', '1514418013562585089', 'true', NULL, 'false', 'false', '', 1, 1, 1513437369940344833, '2022-04-14 10:24:44', 1513437369940344833, '2022-05-31 17:33:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429441119993858, '服务商联系人', '应用资源', '1514418013562585089', 'true', 'input', 'false', 'false', '', 2, 0, 1513437369940344833, '2022-04-14 10:24:50', 1513437369940344833, '2022-04-14 10:24:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429469897113602, '服务商联系电话', '应用资源', '1514418013562585089', 'true', 'input', 'false', 'false', '', 3, 0, 1513437369940344833, '2022-04-14 10:24:57', 1513437369940344833, '2022-04-14 10:24:57', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429764190453762, '视频资源名称', '知识库', '1514417786042564610', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:26:07', 1513437369940344833, '2022-04-14 10:26:07', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429791067553793, '服务商名称', '知识库', '1514417786042564610', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:26:14', 1513437369940344833, '2022-04-14 10:26:14', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429814551461890, '视频资源描述', '知识库', '1514417786042564610', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:26:19', 1513437369940344833, '2022-04-14 10:26:19', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429841785077761, '共享属性', '知识库', '1514417786042564610', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:26:26', 1513437369940344833, '2022-04-14 10:26:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429919262261250, '云资源名称', '知识库', '1514417747140395010', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:26:44', 1513437369940344833, '2022-04-14 10:26:44', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429944038014977, '服务商名称', '知识库', '1514417747140395010', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:26:50', 1513437369940344833, '2022-04-14 10:26:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429968989929473, '云资源描述', '知识库', '1514417747140395010', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:26:56', 1513437369940344833, '2022-04-14 10:26:56', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1514429994701012994, '共享属性', '知识库', '1514417747140395010', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-14 10:27:02', 1513437369940344833, '2022-04-14 10:27:02', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1515162725009436673, '组件类型', '数据资源', '1514164204366020610', 'false', NULL, 'false', 'false', '', 1, 0, 1513432847327199233, '2022-04-16 10:58:39', 1513432847327199233, '2022-04-16 10:58:39', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1515883554840039425, '感知资源信息项', '知识库', '1514164635947319298', 'false', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-18 10:42:58', 1513437369940344833, '2022-04-18 10:42:58', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1515883627061760001, '感知资源名称', '知识库', '1515883554840039425', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-18 10:43:15', 1513437369940344833, '2022-04-18 10:43:15', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1515883652110143489, '服务商名称', '知识库', '1515883554840039425', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-18 10:43:21', 1513437369940344833, '2022-04-18 10:43:21', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1515883680463638530, '感知资源描述', '知识库', '1515883554840039425', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-18 10:43:28', 1513437369940344833, '2022-04-18 10:43:28', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1515883710901702657, '共享属性', '知识库', '1515883554840039425', 'true', NULL, 'false', 'false', '', 1, 0, 1513437369940344833, '2022-04-18 10:43:35', 1513437369940344833, '2022-04-18 10:43:35', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1517399138375331842, '归属部门信息', '组件服务', '1514138753379680257', 'false', NULL, 'false', 'false', '', 3, 1, 1513435534798127105, '2022-04-22 15:05:21', 1513435534798127105, '2022-05-30 17:51:08', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1517399196676157441, '部门名称', '组件服务', '1517399138375331842', 'true', NULL, 'false', 'false', '', 1, 1, 1513435534798127105, '2022-04-22 15:05:35', 1513435534798127105, '2022-05-25 18:49:16', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1517399256797310978, '部门统一社会代码', '组件服务', '1517399138375331842', 'true', NULL, 'false', 'false', '', 1, 1, 1513435534798127105, '2022-04-22 15:05:49', 1513435534798127105, '2022-05-30 16:51:19', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1517399288825016322, '部门联系人', '组件服务', '1517399138375331842', 'true', 'input', 'false', 'false', '', 1, 1, 1513435534798127105, '2022-04-22 15:05:57', 1513435534798127105, '2022-05-30 17:51:08', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1517399329291661314, '部门联系人电话', '组件服务', '1517399138375331842', 'true', 'input', 'false', 'false', '', 2, 1, 1513435534798127105, '2022-04-22 15:06:07', 1513435534798127105, '2022-05-30 17:51:08', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1517399692157677569, '归属部门信息', '应用资源', '1514164306501517314', 'false', NULL, 'false', 'false', '', 1, 1, 1513435534798127105, '2022-04-22 15:07:33', 1513435534798127105, '2022-05-31 17:40:41', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1517399738483765249, '部门名称', '应用资源', '1517399692157677569', 'true', NULL, 'false', 'false', '', 1, 1, 1513435534798127105, '2022-04-22 15:07:44', 1513435534798127105, '2022-05-31 17:40:41', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1517399792837750786, '部门统一社会代码', '应用资源', '1517399692157677569', 'true', NULL, 'false', 'false', '', 1, 1, 1513435534798127105, '2022-04-22 15:07:57', 1513435534798127105, '2022-05-31 17:40:41', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1517399824345362433, '部门联系人', '应用资源', '1517399692157677569', 'true', NULL, 'false', 'false', '', 1, 1, 1513435534798127105, '2022-04-22 15:08:05', 1513435534798127105, '2022-05-31 17:40:41', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1517399855114776578, '部门联系人电话', '应用资源', '1517399692157677569', 'true', NULL, 'false', 'false', '', 1, 1, 1513435534798127105, '2022-04-22 15:08:12', 1513435534798127105, '2022-05-31 17:40:41', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529027455640145922, '应用场景', '组件服务', '1514138753379680257', 'false', NULL, 'false', 'false', '', 7, 0, 1515239183144824833, '2022-05-24 17:12:08', 1515239183144824833, '2022-05-24 17:12:08', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529027647139483650, '是否存在应用场景', '组件服务', '1529027455640145922', 'true', 'select', 'false', 'true', '1529028127496343554', 1, 0, 1515239183144824833, '2022-05-24 17:12:54', 1515239183144824833, '2022-05-24 17:12:54', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529028466467409921, '应用场景一名称', '组件服务', '1529027455640145922', 'true', 'input', 'false', 'false', '', 2, 0, 1515239183144824833, '2022-05-24 17:16:09', 1515239183144824833, '2022-05-24 17:16:09', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529028547258093570, '应用场景一描述', '组件服务', '1529027455640145922', 'true', 'textArea', 'false', 'false', '', 3, 0, 1515239183144824833, '2022-05-24 17:16:28', 1515239183144824833, '2022-05-24 17:16:28', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529028608926945282, '应用场景二名称', '组件服务', '1529027455640145922', 'true', 'input', 'false', 'false', '', 5, 0, 1515239183144824833, '2022-05-24 17:16:43', 1515239183144824833, '2022-05-24 17:16:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529028655152369665, '应用场景二描述', '组件服务', '1529027455640145922', 'true', 'textArea', 'false', 'false', '', 6, 0, 1515239183144824833, '2022-05-24 17:16:54', 1515239183144824833, '2022-05-24 17:16:54', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529379766572941313, '介绍视频', '组件服务', '1514138753379680257', 'false', NULL, 'false', 'false', '', 6, 0, 1067246875800000001, '2022-05-25 16:32:06', 1067246875800000001, '2022-05-25 16:32:06', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529379867148156930, '上传视频', '组件服务', '1529379766572941313', 'true', 'video', 'false', 'false', '', 1, 0, 1067246875800000001, '2022-05-25 16:32:29', 1067246875800000001, '2022-05-25 16:32:29', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529732874650075137, '实例图片', '应用资源', '1514164306501517314', 'false', NULL, 'false', 'false', '', 5, 0, 1516728698224427010, '2022-05-26 15:55:13', 1516728698224427010, '2022-05-26 15:55:13', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529732982502408193, '上传图片', '应用资源', '1529732874650075137', 'true', 'images', 'false', 'false', '', 1, 0, 1516728698224427010, '2022-05-26 15:55:39', 1516728698224427010, '2022-05-26 15:55:39', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529769777680142337, '实例图片', '组件服务', '1514138753379680257', 'false', NULL, 'false', 'false', '', 5, 0, 1067246875800000001, '2022-05-26 18:21:51', 1067246875800000001, '2022-05-26 18:21:51', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529769915433668609, '上传图片', '组件服务', '1529769777680142337', 'true', 'images', 'false', 'false', '', 1, 0, 1067246875800000001, '2022-05-26 18:22:24', 1067246875800000001, '2022-05-26 18:22:24', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529779058827653122, '应用场景一图片', '组件服务', '1529027455640145922', 'true', 'image', 'false', 'false', '', 4, 0, 1516728698224427010, '2022-05-26 18:58:44', 1516728698224427010, '2022-05-26 18:58:44', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529779170127704065, '应用场景二图片', '组件服务', '1529027455640145922', 'true', 'image', 'false', 'false', '', 7, 0, 1516728698224427010, '2022-05-26 18:59:11', 1516728698224427010, '2022-05-26 18:59:11', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529795010596253697, '算法体验中心', '组件服务', '1514138753379680257', 'false', NULL, 'false', 'false', '', 8, 0, 1516728698224427010, '2022-05-26 20:02:07', 1516728698224427010, '2022-05-26 20:02:07', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529795422393020418, '图片文字识别', '组件服务', '1529795010596253697', 'true', 'image', 'false', 'false', '', 1, 0, 1516728698224427010, '2022-05-26 20:03:46', 1516728698224427010, '2022-05-26 20:03:46', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529795713490300929, '文本识别', '组件服务', '1529795010596253697', 'true', 'select', 'true', 'true', '1529028127496343554', 2, 0, 1516728698224427010, '2022-05-26 20:04:55', 1516728698224427010, '2022-05-26 20:04:55', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529804677682663425, '子系统', '应用资源', '1514164306501517314', 'false', NULL, 'false', 'false', '', 6, 0, 1516970523606630401, '2022-05-26 20:40:32', 1516970523606630401, '2022-05-26 20:40:32', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529804827373178882, '子系统数量', '应用资源', '1529804677682663425', 'true', 'input', 'false', 'false', '', 1, 0, 1516970523606630401, '2022-05-26 20:41:08', 1516970523606630401, '2022-05-26 20:41:08', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529804904594509826, '子系统一名称', '应用资源', '1529804677682663425', 'true', 'input', 'false', 'false', '', 2, 0, 1516970523606630401, '2022-05-26 20:41:26', 1516970523606630401, '2022-05-26 20:41:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529804960085151746, '子系统一描述', '应用资源', '1529804677682663425', 'true', 'textArea', 'false', 'false', '', 3, 0, 1516970523606630401, '2022-05-26 20:41:40', 1516970523606630401, '2022-05-26 20:41:40', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529805021527511041, '子系统二名称', '应用资源', '1529804677682663425', 'true', 'input', 'false', 'false', '', 5, 0, 1516970523606630401, '2022-05-26 20:41:54', 1516970523606630401, '2022-05-26 20:41:54', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529805067153149953, '子系统二描述', '应用资源', '1529804677682663425', 'true', 'textArea', 'false', 'false', '', 6, 0, 1516970523606630401, '2022-05-26 20:42:05', 1516970523606630401, '2022-05-26 20:42:05', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529805168827273217, '子系统三名称', '应用资源', '1529804677682663425', 'true', 'input', 'false', 'false', '', 8, 0, 1516970523606630401, '2022-05-26 20:42:29', 1516970523606630401, '2022-05-26 20:42:29', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529805228050845698, '子系统三描述', '应用资源', '1529804677682663425', 'true', 'textArea', 'false', 'false', '', 9, 0, 1516970523606630401, '2022-05-26 20:42:43', 1516970523606630401, '2022-05-26 20:42:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529812988507295746, '子系统一图片', '应用资源', '1529804677682663425', 'true', 'image', 'false', 'false', '', 4, 0, 1516970523606630401, '2022-05-26 21:13:34', 1516970523606630401, '2022-05-26 21:13:34', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529813045700825090, '子系统二图片', '应用资源', '1529804677682663425', 'true', 'image', 'false', 'false', '', 7, 0, 1516970523606630401, '2022-05-26 21:13:47', 1516970523606630401, '2022-05-26 21:13:47', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529813101984190465, '子系统三图片', '应用资源', '1529804677682663425', 'true', 'image', 'false', 'false', '', 10, 0, 1516970523606630401, '2022-05-26 21:14:01', 1516970523606630401, '2022-05-26 21:14:01', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529814971431620609, '常见问题', '应用资源', '1514164306501517314', 'false', NULL, 'false', 'false', '', 7, 0, 1516728698224427010, '2022-05-26 21:21:26', 1516728698224427010, '2022-05-26 21:21:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529815041640075266, '常见问题数量', '应用资源', '1529814971431620609', 'true', 'input', 'false', 'false', '', 1, 0, 1516728698224427010, '2022-05-26 21:21:43', 1516728698224427010, '2022-05-26 21:21:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529815104391057410, '常见问题一名称', '应用资源', '1529814971431620609', 'true', 'input', 'false', 'false', '', 2, 0, 1516728698224427010, '2022-05-26 21:21:58', 1516728698224427010, '2022-05-26 21:21:58', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529815138163593217, '常见问题一描述', '应用资源', '1529814971431620609', 'true', 'textArea', 'false', 'false', '', 3, 0, 1516728698224427010, '2022-05-26 21:22:06', 1516728698224427010, '2022-05-26 21:22:06', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529815174305910785, '常见问题二名称', '应用资源', '1529814971431620609', 'true', 'input', 'false', 'false', '', 4, 0, 1516728698224427010, '2022-05-26 21:22:15', 1516728698224427010, '2022-05-26 21:22:15', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529815215498170370, '常见问题二描述', '应用资源', '1529814971431620609', 'true', 'textArea', 'false', 'false', '', 5, 0, 1516728698224427010, '2022-05-26 21:22:25', 1516728698224427010, '2022-05-26 21:22:25', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529815256157753346, '常见问题三名称', '应用资源', '1529814971431620609', 'true', 'input', 'false', 'false', '', 6, 0, 1516728698224427010, '2022-05-26 21:22:34', 1516728698224427010, '2022-05-26 21:22:34', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529815293629665281, '常见问题三描述', '应用资源', '1529814971431620609', 'true', 'textArea', 'false', 'false', '', 7, 0, 1516728698224427010, '2022-05-26 21:22:43', 1516728698224427010, '2022-05-26 21:22:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529858663676743682, '能力优势', '组件服务', '1514138753379680257', 'false', NULL, 'false', 'false', '', 9, 0, 1515973081575276545, '2022-05-27 00:15:03', 1515973081575276545, '2022-05-27 00:15:03', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529858766697238529, '能力优势数量', '组件服务', '1529858663676743682', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-05-27 00:15:28', 1515973081575276545, '2022-05-27 00:15:28', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529858866697834497, '能力优势名称一', '组件服务', '1529858663676743682', 'true', 'input', 'false', 'false', '', 2, 0, 1515973081575276545, '2022-05-27 00:15:52', 1515973081575276545, '2022-05-27 00:15:52', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529858898406772737, '能力优势描述一', '组件服务', '1529858663676743682', 'true', 'textArea', 'false', 'false', '', 3, 0, 1515973081575276545, '2022-05-27 00:15:59', 1515973081575276545, '2022-05-27 00:15:59', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529858964823576578, '能力优势名称二', '组件服务', '1529858663676743682', 'true', 'input', 'false', 'false', '', 4, 0, 1515973081575276545, '2022-05-27 00:16:15', 1515973081575276545, '2022-05-27 00:16:15', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529858994267590658, '能力优势描述二', '组件服务', '1529858663676743682', 'true', 'textArea', 'false', 'false', '', 5, 0, 1515973081575276545, '2022-05-27 00:16:22', 1515973081575276545, '2022-05-27 00:16:22', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529859039196975106, '能力优势名称三', '组件服务', '1529858663676743682', 'true', 'input', 'false', 'false', '', 6, 0, 1515973081575276545, '2022-05-27 00:16:33', 1515973081575276545, '2022-05-27 00:16:33', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529859073393135618, '能力优势描述三', '组件服务', '1529858663676743682', 'true', 'textArea', 'false', 'false', '', 7, 0, 1515973081575276545, '2022-05-27 00:16:41', 1515973081575276545, '2022-05-27 00:16:41', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529878036537774082, '常见问题', '组件服务', '1514138753379680257', 'false', NULL, 'false', 'false', '', 10, 0, 1513437369940344833, '2022-05-27 01:32:02', 1513437369940344833, '2022-05-27 01:32:02', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529878239110074370, '常见问题一名称', '组件服务', '1529878036537774082', 'true', 'input', 'false', 'false', '', 2, 0, 1513437369940344833, '2022-05-27 01:32:51', 1513437369940344833, '2022-05-27 01:32:51', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529878349336383489, '常见问题二名称', '组件服务', '1529878036537774082', 'true', 'input', 'false', 'false', '', 4, 0, 1513437369940344833, '2022-05-27 01:33:17', 1513437369940344833, '2022-05-27 01:33:17', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529878381838045186, '常见问题三名称', '组件服务', '1529878036537774082', 'true', 'input', 'false', 'false', '', 6, 0, 1513437369940344833, '2022-05-27 01:33:25', 1513437369940344833, '2022-05-27 01:33:25', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529878427723730945, '常见问题一描述', '组件服务', '1529878036537774082', 'true', 'textArea', 'false', 'false', '', 3, 0, 1513437369940344833, '2022-05-27 01:33:36', 1513437369940344833, '2022-05-27 01:33:36', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529878462909747202, '常见问题二描述', '组件服务', '1529878036537774082', 'true', 'textArea', 'false', 'false', '', 5, 0, 1513437369940344833, '2022-05-27 01:33:44', 1513437369940344833, '2022-05-27 01:33:44', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529878495696621570, '常见问题三描述', '组件服务', '1529878036537774082', 'true', 'textArea', 'false', 'false', '', 7, 0, 1513437369940344833, '2022-05-27 01:33:52', 1513437369940344833, '2022-05-27 01:33:52', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1529878537031487490, '常见问题数量', '组件服务', '1529878036537774082', 'true', 'input', 'false', 'false', '', 1, 0, 1513437369940344833, '2022-05-27 01:34:02', 1513437369940344833, '2022-05-27 01:34:02', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531173200161988609, '编目测试', '组件服务', '1514138753379680257', 'true', NULL, 'false', 'false', '', 12, 1, 1513433709613187073, '2022-05-30 15:18:33', 1513433709613187073, '2022-05-30 15:58:17', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531183722221064194, '测试', '组件服务', '1514138753379680257', 'false', '', 'false', 'false', '', 12, 1, 1513433709613187073, '2022-05-30 16:00:22', 1513433709613187073, '2022-05-30 16:33:42', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531190259341651970, '算法中心测试', '组件服务', '1529795010596253697', 'true', 'input', 'false', 'false', '', 13, 1, 1513433709613187073, '2022-05-30 16:26:21', 1513433709613187073, '2022-05-30 16:33:51', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531192377326759937, '阿斯蒂芬', '组件服务', '1514138753379680257', 'false', '', 'false', 'false', '', 13, 1, 1513433709613187073, '2022-05-30 16:34:46', 1513433709613187073, '2022-05-30 16:33:36', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531192477012783105, '测试1', '组件服务', '1531192377326759937', 'true', 'input', 'false', 'false', '', 1, 1, 1513433709613187073, '2022-05-30 16:35:09', 1513433709613187073, '2022-05-30 16:33:36', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531192521073946626, '测试3', '组件服务', '1531192377326759937', 'true', 'input', 'false', 'false', '', 2, 1, 1513433709613187073, '2022-05-30 16:35:20', 1513433709613187073, '2022-05-30 16:33:36', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531208527270404097, '基本信息', '组件服务', '1514138753379680257', 'false', '', 'false', 'false', '', 3, 0, 1513433709613187073, '2022-05-30 17:38:56', 1513433709613187073, '2022-05-30 17:38:56', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531208650478084098, '应用领域', '组件服务', '1531208527270404097', 'true', 'select', 'true', 'true', '1513712507692818433', 1, 0, 1513433709613187073, '2022-05-30 17:39:25', 1513433709613187073, '2022-05-30 17:39:25', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531208806741073921, '组件价格', '组件服务', '1531208527270404097', 'true', 'input', 'false', 'false', '', 7, 0, 1513433709613187073, '2022-05-30 17:40:03', 1513433709613187073, '2022-05-30 17:40:03', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531208887611449346, '技术领域', '组件服务', '1531208527270404097', 'true', 'select', 'true', 'true', '1513714403530809346', 2, 0, 1513433709613187073, '2022-05-30 17:40:22', 1513433709613187073, '2022-05-30 17:40:22', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531209024668721153, '关联应用', '组件服务', '1531208527270404097', 'true', 'input', 'false', 'false', '', 4, 0, 1513433709613187073, '2022-05-30 17:40:55', 1513433709613187073, '2022-05-30 17:40:55', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531209214872018946, '是否收费', '组件服务', '1514138753379680257', 'true', 'input', 'false', 'false', '', 4, 1, 1513433709613187073, '2022-05-30 17:41:40', 1513433709613187073, '2022-05-30 17:42:18', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531209433567223809, '是否收费', '组件服务', '1531208527270404097', 'true', 'select', 'false', 'true', '1529028127496343554', 6, 0, 1513433709613187073, '2022-05-30 17:42:32', 1513433709613187073, '2022-05-30 17:42:32', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531209588416733186, '部署位置', '组件服务', '1531208527270404097', 'true', 'input', 'false', 'false', '', 3, 0, 1513433709613187073, '2022-05-30 17:43:09', 1513433709613187073, '2022-05-30 17:43:09', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531210428875563010, '组件类型', '组件服务', '1531208527270404097', 'true', 'select', 'true', 'true', '1513713662657339394', 5, 0, 1513433709613187073, '2022-05-30 17:46:29', 1513433709613187073, '2022-05-30 17:46:29', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531210779779424257, '共享类型', '组件服务', '1514418174527389698', 'true', 'select', 'false', 'true', '1531193462665834498', 6, 0, 1513433709613187073, '2022-05-30 17:47:53', 1513433709613187073, '2022-05-30 17:47:53', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531210852206665729, '共享条件', '组件服务', '1514418174527389698', 'true', 'select', 'false', 'true', '1531193872826822657', 5, 0, 1513433709613187073, '2022-05-30 17:48:10', 1513433709613187073, '2022-05-30 17:48:10', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531210879033434114, '共享方式', '组件服务', '1514418174527389698', 'true', 'input', 'false', 'false', '', 7, 0, 1513433709613187073, '2022-05-30 17:48:17', 1513433709613187073, '2022-05-30 17:48:17', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531211199776055297, '部门联系人', '组件服务', '1514418174527389698', 'true', 'input', 'false', 'false', '', 3, 0, 1513433709613187073, '2022-05-30 17:49:33', 1513433709613187073, '2022-05-30 17:49:33', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531211284828151810, '部门联系人电话', '组件服务', '1514418174527389698', 'true', 'input', 'false', 'false', '', 4, 0, 1513433709613187073, '2022-05-30 17:49:53', 1513433709613187073, '2022-05-30 17:49:53', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531213912421195778, '服务接口', '组件服务', '1514418174527389698', 'true', 'input', 'false', 'false', '', 8, 1, 1513433709613187073, '2022-05-30 18:00:20', 1513433709613187073, '2022-05-31 10:56:15', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531214010546937858, '接口请求方式', '组件服务', '1514418174527389698', 'true', 'select', 'false', 'true', '1531214531592740866', 9, 1, 1513433709613187073, '2022-05-30 18:00:43', 1513433709613187073, '2022-05-31 10:56:18', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531468904562466817, '服务接口信息', '组件服务', '1514138753379680257', 'false', '', 'false', 'false', '', 2, 0, 1513433709613187073, '2022-05-31 10:53:35', 1513433709613187073, '2022-05-31 10:53:35', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531469496286486530, '服务接口', '组件服务', '1531468904562466817', 'true', 'input', 'false', 'false', '', 1, 0, 1513433709613187073, '2022-05-31 10:55:56', 1513433709613187073, '2022-05-31 10:55:56', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531469526732939266, '接口请求方式', '组件服务', '1531468904562466817', 'true', 'select', 'false', 'true', '1531214531592740866', 2, 0, 1513433709613187073, '2022-05-31 10:56:03', 1513433709613187073, '2022-05-31 10:56:03', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531530044722159618, '服务商信息', '组件服务', '1514138753379680257', 'false', '', 'false', 'false', '', 4, 0, 1513433709613187073, '2022-05-31 14:56:32', 1513433709613187073, '2022-05-31 14:56:32', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531542023444668417, '服务商名', '组件服务', '1531530044722159618', 'true', 'input', 'false', 'false', '', 1, 0, 1513433709613187073, '2022-05-31 15:44:08', 1513433709613187073, '2022-05-31 15:44:08', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531542066302066690, '服务商联系人', '组件服务', '1531530044722159618', 'true', 'input', 'false', 'false', '', 2, 0, 1513433709613187073, '2022-05-31 15:44:18', 1513433709613187073, '2022-05-31 15:44:18', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531542089739837441, '服务商联系电话', '组件服务', '1531530044722159618', 'true', 'input', 'false', 'false', '', 3, 0, 1513433709613187073, '2022-05-31 15:44:24', 1513433709613187073, '2022-05-31 15:44:24', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531568262784086018, '必填信息', '应用资源', '1514164306501517314', 'false', '', 'false', 'false', '', 1, 0, 1513433709613187073, '2022-05-31 17:28:24', 1513433709613187073, '2022-05-31 17:28:24', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531569131797737473, '应用名称', '应用资源', '1531568262784086018', 'true', 'input', 'false', 'false', '', 1, 0, 1513433709613187073, '2022-05-31 17:31:51', 1513433709613187073, '2022-05-31 17:31:51', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531569187296768002, '应用描述', '应用资源', '1531568262784086018', 'true', 'input', 'false', 'false', '', 2, 0, 1513433709613187073, '2022-05-31 17:32:04', 1513433709613187073, '2022-05-31 17:32:04', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531569244846813186, '部门联系人', '应用资源', '1531568262784086018', 'true', 'input', 'false', 'false', '', 3, 0, 1513433709613187073, '2022-05-31 17:32:18', 1513433709613187073, '2022-05-31 17:32:18', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531569284696895490, '部门联系人电话', '应用资源', '1531568262784086018', 'true', 'input', 'false', 'false', '', 4, 0, 1513433709613187073, '2022-05-31 17:32:27', 1513433709613187073, '2022-05-31 17:32:27', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531569321959092225, '共享条件', '应用资源', '1531568262784086018', 'true', 'select', 'false', 'true', '1531193872826822657', 5, 0, 1513433709613187073, '2022-05-31 17:32:36', 1513433709613187073, '2022-05-31 17:32:36', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531569353336680450, '共享类型', '应用资源', '1531568262784086018', 'true', 'select', 'false', 'true', '1531193462665834498', 6, 0, 1513433709613187073, '2022-05-31 17:32:44', 1513433709613187073, '2022-05-31 17:32:44', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531569377948856322, '共享方式', '应用资源', '1531568262784086018', 'true', 'input', 'false', 'false', '', 7, 0, 1513433709613187073, '2022-05-31 17:32:50', 1513433709613187073, '2022-05-31 17:32:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531575896878739457, '服务接口信息', '应用资源', '1514164306501517314', 'false', '', 'false', 'false', '', 2, 0, 1513433709613187073, '2022-05-31 17:58:44', 1513433709613187073, '2022-05-31 17:58:44', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531575983537254401, '服务接口', '应用资源', '1531575896878739457', 'true', 'input', 'false', 'false', '', 1, 0, 1513433709613187073, '2022-05-31 17:59:04', 1513433709613187073, '2022-05-31 17:59:04', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531576017515311106, '接口请求方式', '应用资源', '1531575896878739457', 'true', 'select', 'false', 'true', '1531214531592740866', 2, 0, 1513433709613187073, '2022-05-31 17:59:13', 1513433709613187073, '2022-05-31 17:59:13', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531576048368611330, '访问地址', '应用资源', '1531575896878739457', 'true', 'input', 'false', 'false', '', 3, 0, 1513433709613187073, '2022-05-31 17:59:20', 1513433709613187073, '2022-05-31 17:59:20', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1531912380416630785, '试用账号', '应用资源', '1514417974589112321', 'true', 'input', 'false', 'false', '', 9, 0, 1515239183144824833, '2022-06-01 16:15:48', 1515239183144824833, '2022-06-01 16:15:48', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1532296580094160898, '组件', NULL, NULL, 'false', NULL, 'false', 'false', '', 6, 1, 1513433709613187073, '2022-06-02 17:42:28', 1513433709613187073, '2022-06-06 09:50:58', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1532296605046075394, '图层', '组件', '1532296580094160898', 'false', '', 'false', 'false', '', 1, 1, 1513433709613187073, '2022-06-02 17:42:34', 1513433709613187073, '2022-06-06 09:50:58', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1532296622393716737, 'gis', '组件', '1532296580094160898', 'false', '', 'false', 'false', '', 2, 1, 1513433709613187073, '2022-06-02 17:42:38', 1513433709613187073, '2022-06-06 09:50:58', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1532296690337247234, '必填', '组件', '1532296605046075394', 'true', 'input', 'false', 'false', '', 1, 0, 1513433709613187073, '2022-06-02 17:42:54', 1513433709613187073, '2022-06-02 17:42:54', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1533627676626935809, '组件服务2', NULL, NULL, 'false', NULL, 'false', 'false', '', 6, 1, 1513433709613187073, '2022-06-06 09:51:46', 1513433709613187073, '2022-06-06 09:56:54', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1533627735766622210, 'GIS算法', '组件服务2', '1533627676626935809', 'false', '', 'false', 'false', '', 1, 1, 1513433709613187073, '2022-06-06 09:52:00', 1513433709613187073, '2022-06-06 09:56:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1533627763549691905, '图层服务', '组件服务2', '1533627676626935809', 'false', '', 'false', 'false', '', 2, 1, 1513433709613187073, '2022-06-06 09:52:07', 1513433709613187073, '2022-06-06 09:56:46', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1533629054829166594, '大师傅', '组件服务', '1514418174527389698', 'false', '', 'false', 'false', '', 8, 1, 1513433709613187073, '2022-06-06 09:57:15', 1513433709613187073, '2022-06-06 10:06:35', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1533629099209097217, '阿斯蒂芬', '组件服务', '1533629054829166594', 'true', 'input', 'false', 'false', '', 1, 1, 1513433709613187073, '2022-06-06 09:57:25', 1513433709613187073, '2022-06-06 09:59:01', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1533629558091120641, '阿斯顿发放付付付付付', '组件服务', '1533629054829166594', 'true', 'input', 'false', 'false', '', 1, 1, 1513433709613187073, '2022-06-06 09:59:15', 1513433709613187073, '2022-06-06 10:06:24', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1533629719093673986, '发大幅度', '组件服务', '1533629054829166594', 'true', 'input', 'false', 'false', '', 2, 1, 1513433709613187073, '2022-06-06 09:59:53', 1513433709613187073, '2022-06-06 10:06:35', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1533638035316375554, '阿斯蒂芬', '基础设施', '1514164117665562626', 'true', 'input', 'false', 'false', '', 7, 1, 1515973081575276545, '2022-06-06 10:32:56', 1515973081575276545, '2022-06-06 10:33:05', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534450334599938049, '应用资源一', NULL, NULL, 'false', NULL, 'false', 'false', '', 6, 1, 1513433270406643713, '2022-06-08 16:20:43', 1513433270406643713, '2022-06-08 17:46:48', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534450501529042946, '基本信息', '应用资源一', '1534450334599938049', 'false', '', 'false', 'false', '', 1, 1, 1513433270406643713, '2022-06-08 16:21:23', 1513433270406643713, '2022-06-08 17:46:48', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534450540024365058, '功能介绍', '应用资源一', '1534450334599938049', 'false', '', 'false', 'false', '', 2, 1, 1513433270406643713, '2022-06-08 16:21:32', 1513433270406643713, '2022-06-08 17:46:48', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534450576468672514, '部署与使用', '应用资源一', '1534450334599938049', 'false', '', 'false', 'false', '', 3, 1, 1513433270406643713, '2022-06-08 16:21:41', 1513433270406643713, '2022-06-08 17:46:48', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534450834389008385, '应用名称', '应用资源一', '1534450501529042946', 'true', 'input', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 16:22:42', 1513433270406643713, '2022-06-08 16:22:42', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534450909894868994, '应用状态', '应用资源一', '1534450501529042946', 'true', 'select', 'false', 'true', '1513711991655014402', 2, 0, 1513433270406643713, '2022-06-08 16:23:00', 1513433270406643713, '2022-06-08 16:23:00', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534451041306607618, '应用类型', '应用资源一', '1534450501529042946', 'true', 'select', 'false', 'true', '1513690812521160705', 3, 0, 1513433270406643713, '2022-06-08 16:23:32', 1513433270406643713, '2022-06-08 16:23:32', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534451162035453954, '应用领域', '应用资源一', '1534450501529042946', 'true', 'checkBox', 'false', 'true', '1513712507692818433', 4, 0, 1513433270406643713, '2022-06-08 16:24:00', 1513433270406643713, '2022-06-08 16:24:00', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534451944885518338, '应用描述', '应用资源一', '1534450501529042946', 'true', 'textArea', 'false', 'false', '', 5, 0, 1513433270406643713, '2022-06-08 16:27:07', 1513433270406643713, '2022-06-08 16:27:07', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534452037411864578, '发布端', '应用资源一', '1534450501529042946', 'true', 'checkBox', 'false', 'true', '1513693624420311042', 6, 0, 1513433270406643713, '2022-06-08 16:27:29', 1513433270406643713, '2022-06-08 16:27:29', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534452298817667074, '归属部门', '应用资源一', '1534450501529042946', 'true', 'select', 'false', 'false', '', 7, 0, 1513433270406643713, '2022-06-08 16:28:31', 1513433270406643713, '2022-06-08 16:28:31', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534452393504079874, '部门联系人', '应用资源一', '1534450501529042946', 'true', 'input', 'false', 'false', '', 8, 0, 1513433270406643713, '2022-06-08 16:28:54', 1513433270406643713, '2022-06-08 16:28:54', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534452706281717762, '部门联系人电话', '应用资源一', '1534450501529042946', 'true', 'input', 'false', 'false', '', 9, 0, 1513433270406643713, '2022-06-08 16:30:09', 1513433270406643713, '2022-06-08 16:30:09', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534452796887072769, '应用展示视频', '应用资源一', '1534450501529042946', 'true', 'video', 'false', 'false', '', 10, 0, 1513433270406643713, '2022-06-08 16:30:30', 1513433270406643713, '2022-06-08 16:30:30', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534452983047061506, '应用图片', '应用资源一', '1534450501529042946', 'true', 'image', 'false', 'false', '', 11, 0, 1513433270406643713, '2022-06-08 16:31:15', 1513433270406643713, '2022-06-08 16:31:15', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534453460295942145, '功能介绍一', '应用资源一', '1534450540024365058', 'false', '', 'false', 'false', '', 1, 1, 1513433270406643713, '2022-06-08 16:33:08', 1513433270406643713, '2022-06-08 17:12:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534458832087875585, '测试', NULL, NULL, 'false', NULL, 'false', 'false', '', 7, 1, 1515973081575276545, '2022-06-08 16:54:29', 1515973081575276545, '2022-06-08 17:09:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534458863238971394, '阿斯蒂芬1', '测试', '1534458832087875585', 'false', '', 'false', 'false', '', 1, 1, 1515973081575276545, '2022-06-08 16:54:37', 1515973081575276545, '2022-06-08 17:08:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534458899741999105, '大师傅', '测试', '1534458863238971394', 'false', '', 'false', 'false', '', 1, 1, 1515973081575276545, '2022-06-08 16:54:45', 1515973081575276545, '2022-06-08 17:08:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534458938019217409, '阿斯蒂芬', '测试', '1534458899741999105', 'false', '', 'false', 'false', '', 1, 1, 1515973081575276545, '2022-06-08 16:54:54', 1515973081575276545, '2022-06-08 17:08:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534458981979717633, '大师傅', '测试', '1534458938019217409', 'false', '', 'false', 'false', '', 1, 1, 1515973081575276545, '2022-06-08 16:55:05', 1515973081575276545, '2022-06-08 17:08:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534460290124414978, '大师傅', '测试', '1534458981979717633', 'false', '', 'false', 'false', '', 1, 1, 1515973081575276545, '2022-06-08 17:00:17', 1515973081575276545, '2022-06-08 17:01:58', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534463491817013250, '功能介绍', '应用资源一', '1534450540024365058', 'false', '', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 17:13:00', 1513433270406643713, '2022-06-08 17:13:00', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534463905304084482, '部署', '应用资源一', '1534450576468672514', 'false', '', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 17:14:39', 1513433270406643713, '2022-06-08 17:14:39', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534463943681966082, '安全', '应用资源一', '1534450576468672514', 'false', '', 'false', 'false', '', 2, 0, 1513433270406643713, '2022-06-08 17:14:48', 1513433270406643713, '2022-06-08 17:14:48', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534463990410706946, '服务商', '应用资源一', '1534450576468672514', 'false', '', 'false', 'false', '', 3, 0, 1513433270406643713, '2022-06-08 17:14:59', 1513433270406643713, '2022-06-08 17:14:59', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534464036304781313, '常见问题', '应用资源一', '1534450576468672514', 'false', '', 'false', 'false', '', 4, 0, 1513433270406643713, '2022-06-08 17:15:10', 1513433270406643713, '2022-06-08 17:15:10', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534464689752178689, '部署区域', '应用资源一', '1534463905304084482', 'true', 'radio', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 17:17:46', 1513433270406643713, '2022-06-08 17:17:46', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534465348555702274, '是否统一登录', '应用资源一', '1534463905304084482', 'true', 'radio', 'false', 'true', '1529028127496343554', 2, 0, 1513433270406643713, '2022-06-08 17:20:23', 1513433270406643713, '2022-06-08 17:20:23', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534465644509986818, '访问地址', '应用资源一', '1534463905304084482', 'true', 'input', 'false', 'false', '', 3, 0, 1513433270406643713, '2022-06-08 17:21:33', 1513433270406643713, '2022-06-08 17:21:33', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534465824730841090, '共享条件', '应用资源一', '1534463943681966082', 'true', 'radio', 'false', 'true', '1531193872826822657', 1, 0, 1513433270406643713, '2022-06-08 17:22:16', 1513433270406643713, '2022-06-08 17:22:16', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534465957858050050, '共享类型', '应用资源一', '1534463943681966082', 'true', 'radio', 'false', 'true', '1531193462665834498', 2, 0, 1513433270406643713, '2022-06-08 17:22:48', 1513433270406643713, '2022-06-08 17:22:48', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534466063789391874, '等保定级', '应用资源一', '1534463943681966082', 'true', 'radio', 'false', 'true', '1531571420813979650', 3, 0, 1513433270406643713, '2022-06-08 17:23:13', 1513433270406643713, '2022-06-08 17:23:13', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534466185092857858, '是否等保备案', '应用资源一', '1534463943681966082', 'true', 'radio', 'false', 'true', '1529028127496343554', 4, 0, 1513433270406643713, '2022-06-08 17:23:42', 1513433270406643713, '2022-06-08 17:23:42', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534466371806494721, '服务商', '应用资源一', '1534463990410706946', 'true', 'select', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 17:24:27', 1513433270406643713, '2022-06-08 17:24:27', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534466498185068546, '服务商联系人', '应用资源一', '1534463990410706946', 'true', 'input', 'false', 'false', '', 2, 0, 1513433270406643713, '2022-06-08 17:24:57', 1513433270406643713, '2022-06-08 17:24:57', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534466553067536386, '服务商联系电话', '应用资源一', '1534463990410706946', 'true', 'input', 'false', 'false', '', 3, 0, 1513433270406643713, '2022-06-08 17:25:10', 1513433270406643713, '2022-06-08 17:25:10', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534467329252851713, '功能介绍', '应用资源一', '1534463491817013250', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-08 17:28:15', 1515973081575276545, '2022-06-08 17:28:15', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534467511528914945, '常见问题', '应用资源一', '1534464036304781313', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-08 17:28:58', 1515973081575276545, '2022-06-08 17:28:58', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534468084982546434, '组件服务一', NULL, NULL, 'false', NULL, 'false', 'false', '', 7, 1, 1513433270406643713, '2022-06-08 17:31:15', 1513433270406643713, '2022-06-08 17:46:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534468257188085762, '基本信息', '组件服务一', '1534468084982546434', 'false', '', 'false', 'false', '', 1, 1, 1513433270406643713, '2022-06-08 17:31:56', 1513433270406643713, '2022-06-08 17:46:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534468332115132418, '算法优势', '组件服务一', '1534468084982546434', 'false', '', 'false', 'false', '', 2, 1, 1513433270406643713, '2022-06-08 17:32:14', 1513433270406643713, '2022-06-08 17:46:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534468387110846466, '应用场景', '组件服务一', '1534468084982546434', 'false', '', 'false', 'false', '', 3, 1, 1513433270406643713, '2022-06-08 17:32:27', 1513433270406643713, '2022-06-08 17:46:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534468447743705090, '部署与使用', '组件服务一', '1534468084982546434', 'false', '', 'false', 'false', '', 4, 1, 1513433270406643713, '2022-06-08 17:32:42', 1513433270406643713, '2022-06-08 17:46:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534469099681153025, '算法名称', '组件服务一', '1534468257188085762', 'true', 'input', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 17:35:17', 1513433270406643713, '2022-06-08 17:35:17', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534469157398970369, '算法类别', '组件服务一', '1534468257188085762', 'true', 'select', 'false', 'false', '', 2, 0, 1513433270406643713, '2022-06-08 17:35:31', 1513433270406643713, '2022-06-08 17:35:31', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534469334348267522, '是否免批', '组件服务一', '1534468257188085762', 'true', 'radio', 'false', 'true', '1529028127496343554', 3, 0, 1513433270406643713, '2022-06-08 17:36:13', 1513433270406643713, '2022-06-08 17:36:13', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534470066216554498, '使用方式', '组件服务一', '1534468257188085762', 'true', 'select', 'false', 'false', '', 4, 0, 1513433270406643713, '2022-06-08 17:39:08', 1513433270406643713, '2022-06-08 17:39:08', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534470157874679810, '部署位置', '组件服务一', '1534468257188085762', 'true', 'select', 'false', 'false', '', 5, 0, 1513433270406643713, '2022-06-08 17:39:29', 1513433270406643713, '2022-06-08 17:39:29', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534470312896155650, '应用领域', '组件服务一', '1534468257188085762', 'true', 'checkBox', 'false', 'true', '1513712507692818433', 6, 0, 1513433270406643713, '2022-06-08 17:40:06', 1513433270406643713, '2022-06-08 17:40:06', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534470432618369026, '共享条件', '组件服务一', '1534468257188085762', 'true', 'select', 'false', 'true', '1531193872826822657', 7, 0, 1513433270406643713, '2022-06-08 17:40:35', 1513433270406643713, '2022-06-08 17:40:35', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534470524150665218, '共享类型', '组件服务一', '1534468257188085762', 'true', 'select', 'false', 'true', '1531193462665834498', 8, 0, 1513433270406643713, '2022-06-08 17:40:57', 1513433270406643713, '2022-06-08 17:40:57', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534470625933840385, '算法描述', '组件服务一', '1534468257188085762', 'true', 'textArea', 'false', 'false', '', 9, 0, 1513433270406643713, '2022-06-08 17:41:21', 1513433270406643713, '2022-06-08 17:41:21', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534470704165998593, '算法介绍视频', '组件服务一', '1534468257188085762', 'true', 'video', 'false', 'false', '', 10, 0, 1513433270406643713, '2022-06-08 17:41:40', 1513433270406643713, '2022-06-08 17:41:40', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534470781081145345, '服务商', '组件服务一', '1534468257188085762', 'true', 'select', 'false', 'false', '', 11, 0, 1513433270406643713, '2022-06-08 17:41:58', 1513433270406643713, '2022-06-08 17:41:58', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534470863859929090, '服务商联系人', '组件服务一', '1534468257188085762', 'true', 'input', 'false', 'false', '', 12, 0, 1513433270406643713, '2022-06-08 17:42:18', 1513433270406643713, '2022-06-08 17:42:18', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534470923305799682, '服务商联系电话', '组件服务一', '1534468257188085762', 'true', 'input', 'false', 'false', '', 13, 0, 1513433270406643713, '2022-06-08 17:42:32', 1513433270406643713, '2022-06-08 17:42:32', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534470983703777282, '关联应用', '组件服务一', '1534468257188085762', 'true', 'checkBox', 'false', 'false', '', 14, 0, 1513433270406643713, '2022-06-08 17:42:46', 1513433270406643713, '2022-06-08 17:42:46', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534471192630448129, '算法优势', '组件服务一', '1534468332115132418', 'true', 'textArea', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 17:43:36', 1513433270406643713, '2022-06-08 17:43:36', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534472049895854081, '应用资源一', NULL, NULL, 'false', NULL, 'false', 'false', '', 6, 0, 1513433270406643713, '2022-06-08 17:47:00', 1067246875800000001, '2022-06-18 16:03:39', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534472200869826562, '基本信息', '应用资源一', '1534472049895854081', 'false', '', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 17:47:36', 1513433270406643713, '2022-06-08 17:47:36', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534472287314432002, '功能介绍', '应用资源一', '1534472049895854081', 'false', '', 'false', 'false', '', 2, 0, 1513433270406643713, '2022-06-08 17:47:57', 1513433270406643713, '2022-06-08 17:47:57', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534472374421737473, '部署与应用', '应用资源一', '1534472049895854081', 'false', '', 'false', 'false', '', 4, 0, 1513433270406643713, '2022-06-08 17:48:18', 1513433270406643713, '2022-06-08 17:48:18', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534472573403713538, '基本信息', '应用资源一', '1534472200869826562', 'false', '', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 17:49:05', 1513433270406643713, '2022-06-08 17:49:05', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534472910504120321, '应用名称', '应用资源一', '1534472573403713538', 'true', 'input', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 17:50:26', 1513433270406643713, '2022-06-08 17:50:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534474777732825089, '应用状态', '应用资源一', '1534472573403713538', 'true', 'select', 'false', 'true', '1513711991655014402', 2, 0, 1513433270406643713, '2022-06-08 17:57:51', 1513433270406643713, '2022-06-08 17:57:51', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534474826915233794, '应用类型', '应用资源一', '1534472573403713538', 'true', 'select', 'false', 'true', '1513690812521160705', 3, 0, 1513433270406643713, '2022-06-08 17:58:03', 1513433270406643713, '2022-06-08 17:58:03', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534474860859736065, '应用领域', '应用资源一', '1534472573403713538', 'true', 'checkBox', 'false', 'true', '1513712507692818433', 4, 0, 1513433270406643713, '2022-06-08 17:58:11', 1513433270406643713, '2022-06-08 17:58:11', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534474893646610434, '应用描述', '应用资源一', '1534472573403713538', 'true', 'textArea', 'false', 'false', '', 5, 0, 1513433270406643713, '2022-06-08 17:58:18', 1513433270406643713, '2022-06-08 17:58:18', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534474947694411778, '发布端', '应用资源一', '1534472573403713538', 'true', 'checkBox', 'false', 'true', '1513693624420311042', 6, 0, 1513433270406643713, '2022-06-08 17:58:31', 1513433270406643713, '2022-06-08 17:58:31', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534474993097752577, '归属部门', '应用资源一', '1534472573403713538', 'true', 'input', 'false', 'false', '', 7, 0, 1513433270406643713, '2022-06-08 17:58:42', 1513433270406643713, '2022-06-08 17:58:42', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475027918864385, '部门联系人', '应用资源一', '1534472573403713538', 'true', 'input', 'false', 'false', '', 8, 0, 1513433270406643713, '2022-06-08 17:58:50', 1513433270406643713, '2022-06-08 17:58:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475079743684610, '部门联系人电话', '应用资源一', '1534472573403713538', 'true', 'input', 'false', 'false', '', 9, 0, 1513433270406643713, '2022-06-08 17:59:03', 1513433270406643713, '2022-06-08 17:59:03', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475126120103937, '应用展示视频', '应用资源一', '1534472573403713538', 'true', 'video', 'false', 'false', '', 10, 0, 1513433270406643713, '2022-06-08 17:59:14', 1513433270406643713, '2022-06-08 17:59:14', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475169241743362, '应用图片', '应用资源一', '1534472573403713538', 'true', 'image', 'false', 'false', '', 11, 0, 1513433270406643713, '2022-06-08 17:59:24', 1513433270406643713, '2022-06-08 17:59:24', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475287412064258, '功能介绍', '应用资源一', '1534472287314432002', 'false', '', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 17:59:52', 1513433270406643713, '2022-06-08 17:59:52', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475342311309313, '功能介绍', '应用资源一', '1534475287412064258', 'true', 'input', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 18:00:05', 1513433270406643713, '2022-06-08 18:00:05', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475425119453185, '部署', '应用资源一', '1534472374421737473', 'false', '', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 18:00:25', 1513433270406643713, '2022-06-08 18:00:25', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475487434227713, '安全', '应用资源一', '1534472374421737473', 'false', '', 'false', 'false', '', 2, 0, 1513433270406643713, '2022-06-08 18:00:40', 1513433270406643713, '2022-06-08 18:00:40', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475552336887810, '服务商', '应用资源一', '1534472374421737473', 'false', '', 'false', 'false', '', 3, 0, 1513433270406643713, '2022-06-08 18:00:56', 1513433270406643713, '2022-06-08 18:00:56', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475600881762305, '常见问题', '应用资源一', '1534472374421737473', 'false', '', 'false', 'false', '', 4, 0, 1513433270406643713, '2022-06-08 18:01:07', 1513433270406643713, '2022-06-08 18:01:07', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475649925758977, '常见问题', '应用资源一', '1534475600881762305', 'true', 'input', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 18:01:19', 1513433270406643713, '2022-06-08 18:01:19', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475730536087553, '服务商', '应用资源一', '1534475552336887810', 'true', 'input', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-08 18:01:38', 1513433270406643713, '2022-06-08 18:01:38', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475815151976449, '服务商联系人', '应用资源一', '1534475552336887810', 'true', 'input', 'false', 'false', '', 2, 0, 1513433270406643713, '2022-06-08 18:01:58', 1513433270406643713, '2022-06-08 18:01:58', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534475873901592577, '服务商联系电话', '应用资源一', '1534475552336887810', 'true', 'input', 'false', 'false', '', 3, 0, 1513433270406643713, '2022-06-08 18:02:12', 1513433270406643713, '2022-06-08 18:02:12', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534713940579172354, '共享条件', '应用资源一', '1534475487434227713', 'true', 'radio', 'false', 'true', '1531193872826822657', 1, 0, 1513433270406643713, '2022-06-09 09:48:12', 1513433270406643713, '2022-06-09 09:48:12', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534714127787737089, '共享类型', '应用资源一', '1534475487434227713', 'true', 'radio', 'false', 'true', '1531193462665834498', 2, 0, 1513433270406643713, '2022-06-09 09:48:56', 1513433270406643713, '2022-06-09 09:48:56', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534714221157138434, '等保定级', '应用资源一', '1534475487434227713', 'true', 'radio', 'false', 'true', '1531571420813979650', 3, 0, 1513433270406643713, '2022-06-09 09:49:19', 1513433270406643713, '2022-06-09 09:49:19', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534714333132472322, '是否等保备案', '应用资源一', '1534475487434227713', 'true', 'radio', 'false', 'true', '1529028127496343554', 4, 0, 1513433270406643713, '2022-06-09 09:49:45', 1513433270406643713, '2022-06-09 09:49:45', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534714462891655169, '部署区域', '应用资源一', '1534475425119453185', 'true', 'radio', 'false', 'true', '1534803070025687042', 1, 0, 1513433270406643713, '2022-06-09 09:50:16', 1513433270406643713, '2022-06-09 09:50:16', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534714561948532737, '是否统一登录', '应用资源一', '1534475425119453185', 'true', 'radio', 'false', 'true', '1529028127496343554', 2, 0, 1513433270406643713, '2022-06-09 09:50:40', 1513433270406643713, '2022-06-09 09:50:40', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534714643020234753, '访问地址', '应用资源一', '1534475425119453185', 'true', 'input', 'false', 'false', '', 3, 0, 1513433270406643713, '2022-06-09 09:50:59', 1513433270406643713, '2022-06-09 09:50:59', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534715319708270594, '组件服务一', NULL, NULL, 'false', NULL, 'false', 'false', '', 7, 0, 1513433270406643713, '2022-06-09 09:53:41', 1067246875800000001, '2022-06-18 16:03:39', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534715466928340993, '智能算法', '组件服务一', '1534715319708270594', 'false', '', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-09 09:54:16', 1513433270406643713, '2022-06-09 09:54:16', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534715515947171842, '部署与使用', '组件服务一', '1534715466928340993', 'false', '', 'false', 'false', '', 4, 0, 1513433270406643713, '2022-06-09 09:54:27', 1513433270406643713, '2022-06-09 09:54:27', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534715581206347778, '算法优势', '组件服务一', '1534715466928340993', 'false', '', 'false', 'false', '', 2, 0, 1513433270406643713, '2022-06-09 09:54:43', 1513433270406643713, '2022-06-09 09:54:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534715655965622273, '应用场景', '组件服务一', '1534715466928340993', 'false', '', 'false', 'false', '', 3, 0, 1513433270406643713, '2022-06-09 09:55:01', 1513433270406643713, '2022-06-09 09:55:01', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534715691147444225, '基本信息', '组件服务一', '1534715466928340993', 'false', '', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-09 09:55:09', 1513433270406643713, '2022-06-09 09:55:09', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534715784680423426, '使用方式', '组件服务一', '1534715515947171842', 'false', '', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-09 09:55:31', 1513433270406643713, '2022-06-09 09:55:31', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534715884152537089, '服务接口', '组件服务一', '1534715784680423426', 'true', 'input', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-09 09:55:55', 1513433270406643713, '2022-06-09 09:55:55', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534715944550514690, '接口请求方式', '组件服务一', '1534715784680423426', 'true', 'radio', 'false', 'true', '1534804157952647169', 2, 0, 1513433270406643713, '2022-06-09 09:56:09', 1513433270406643713, '2022-06-09 09:56:09', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534716017531404290, '技术文档', '组件服务一', '1534715784680423426', 'true', 'file', 'false', 'false', '', 3, 0, 1513433270406643713, '2022-06-09 09:56:27', 1513433270406643713, '2022-06-09 09:56:27', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534716114604376066, '是否支持试用', '组件服务一', '1534715784680423426', 'true', 'radio', 'false', 'true', '1529028127496343554', 4, 1, 1513433270406643713, '2022-06-09 09:56:50', 1513433270406643713, '2022-06-10 09:50:33', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534716198683394050, '试用描述', '组件服务一', '1534715784680423426', 'true', 'textArea', 'false', 'false', '', 5, 1, 1513433270406643713, '2022-06-09 09:57:10', 1513433270406643713, '2022-06-10 09:50:28', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534716265863561218, '试用地址', '组件服务一', '1534715784680423426', 'true', 'input', 'false', 'false', '', 6, 0, 1513433270406643713, '2022-06-09 09:57:26', 1513433270406643713, '2022-06-09 09:57:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534716317436723201, '试用效果图', '组件服务一', '1534715784680423426', 'true', 'image', 'false', 'false', '', 7, 1, 1513433270406643713, '2022-06-09 09:57:38', 1513433270406643713, '2022-06-10 09:50:23', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534716450131918849, '计费标准信息', '组件服务一', '1534715515947171842', 'false', '', 'false', 'false', '', 2, 0, 1513433270406643713, '2022-06-09 09:58:10', 1513433270406643713, '2022-06-09 09:58:10', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534716505425428481, '是否收费', '组件服务一', '1534716450131918849', 'true', 'radio', 'false', 'true', '1529028127496343554', 1, 1, 1513433270406643713, '2022-06-09 09:58:23', 1513433270406643713, '2022-06-17 15:24:49', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534716658483970049, '计费标准信息', '组件服务一', '1534716450131918849', 'true', 'input', 'false', 'false', '', 2, 0, 1513433270406643713, '2022-06-09 09:59:00', 1513433270406643713, '2022-06-09 09:59:00', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534716751131951106, '常见问题', '组件服务一', '1534715515947171842', 'false', '', 'false', 'false', '', 3, 0, 1513433270406643713, '2022-06-09 09:59:22', 1513433270406643713, '2022-06-09 09:59:22', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534716846665613314, '常见问题', '组件服务一', '1534716751131951106', 'true', 'input', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-09 09:59:45', 1513433270406643713, '2022-06-09 09:59:45', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534717178497974273, '应用场景', '组件服务一', '1534715655965622273', 'true', 'input', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-09 10:01:04', 1513433270406643713, '2022-06-09 10:01:04', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534717306055147522, '算法优势', '组件服务一', '1534715581206347778', 'true', 'input', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-09 10:01:34', 1513433270406643713, '2022-06-09 10:01:34', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534718048405012481, '基本信息', '组件服务一', '1534715691147444225', 'false', '', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-09 10:04:31', 1513433270406643713, '2022-06-09 10:04:31', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534718146530754561, '算法名称', '组件服务一', '1534718048405012481', 'true', 'input', 'false', 'false', '', 1, 0, 1513433270406643713, '2022-06-09 10:04:54', 1513433270406643713, '2022-06-09 10:04:54', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534718189295878146, '算法类别', '组件服务一', '1534718048405012481', 'true', 'select', 'false', 'true', '1534805229031088130', 2, 0, 1513433270406643713, '2022-06-09 10:05:05', 1513433270406643713, '2022-06-09 10:05:05', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534718324314718210, '是否免批', '组件服务一', '1534718048405012481', 'true', 'radio', 'false', 'true', '1529028127496343554', 3, 0, 1513433270406643713, '2022-06-09 10:05:37', 1513433270406643713, '2022-06-09 10:05:37', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534718418179047425, '使用方式', '组件服务一', '1534718048405012481', 'true', 'select', 'false', 'true', '1513714027213660162', 4, 0, 1513433270406643713, '2022-06-09 10:05:59', 1513433270406643713, '2022-06-09 10:05:59', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534718549334933506, '部署位置', '组件服务一', '1534718048405012481', 'true', 'select', 'false', 'true', '1534803070025687042', 5, 0, 1513433270406643713, '2022-06-09 10:06:31', 1513433270406643713, '2022-06-09 10:06:31', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534718820022730754, '应用领域', '组件服务一', '1534718048405012481', 'true', 'checkBox', 'false', 'true', '1513712507692818433', 6, 0, 1513433270406643713, '2022-06-09 10:07:35', 1513433270406643713, '2022-06-09 10:07:35', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534718909956997121, '共享条件', '组件服务一', '1534718048405012481', 'true', 'select', 'false', 'true', '1531193872826822657', 7, 0, 1513433270406643713, '2022-06-09 10:07:56', 1513433270406643713, '2022-06-09 10:07:56', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534719016991440897, '共享类型', '组件服务一', '1534718048405012481', 'true', 'select', 'false', 'true', '1531193462665834498', 8, 0, 1513433270406643713, '2022-06-09 10:08:22', 1513433270406643713, '2022-06-09 10:08:22', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534719132880060418, '算法描述', '组件服务一', '1534718048405012481', 'true', 'textArea', 'false', 'false', '', 9, 0, 1513433270406643713, '2022-06-09 10:08:50', 1513433270406643713, '2022-06-09 10:08:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534719207224098818, '算法介绍视频', '组件服务一', '1534718048405012481', 'true', 'video', 'false', 'false', '', 10, 0, 1513433270406643713, '2022-06-09 10:09:07', 1513433270406643713, '2022-06-09 10:09:07', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534719278070087681, '服务商', '组件服务一', '1534718048405012481', 'true', 'input', 'false', 'false', '', 11, 0, 1513433270406643713, '2022-06-09 10:09:24', 1513433270406643713, '2022-06-09 10:09:24', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534719366418907138, '服务商联系人', '组件服务一', '1534718048405012481', 'true', 'input', 'false', 'false', '', 12, 0, 1513433270406643713, '2022-06-09 10:09:45', 1513433270406643713, '2022-06-09 10:09:45', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534719444969832450, '服务商联系电话', '组件服务一', '1534718048405012481', 'true', 'input', 'false', 'false', '', 13, 0, 1513433270406643713, '2022-06-09 10:10:04', 1513433270406643713, '2022-06-09 10:10:04', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1534719507154583553, '关联应用', '组件服务一', '1534718048405012481', 'true', 'checkBox', 'false', 'false', '', 14, 1, 1513433270406643713, '2022-06-09 10:10:19', 1513433270406643713, '2022-06-17 18:37:42', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1537008943435304961, '关联组件', '应用资源一', '1534472049895854081', 'false', '', 'false', 'false', '', 3, 0, 1515973081575276545, '2022-06-15 17:47:43', 1515973081575276545, '2022-06-15 17:47:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1537009035160539137, '关联组件', '应用资源一', '1537008943435304961', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-15 17:48:05', 1515973081575276545, '2022-06-15 17:48:05', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538705253037223937, '开发组件', '组件服务一', '1534715319708270594', 'false', '', 'false', 'false', '', 2, 0, 1515973081575276545, '2022-06-20 10:08:15', 1515973081575276545, '2022-06-20 10:08:15', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538705332087271426, '基本信息', '组件服务一', '1538705253037223937', 'false', '', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 10:08:34', 1515973081575276545, '2022-06-20 10:08:34', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538705458625228801, '基本信息', '组件服务一', '1538705332087271426', 'false', '', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 10:09:04', 1515973081575276545, '2022-06-20 10:09:04', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538705791480999937, '组件名称', '组件服务一', '1538705458625228801', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 10:10:23', 1515973081575276545, '2022-06-20 10:10:23', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538706032221466625, '是否免批', '组件服务一', '1538705458625228801', 'true', 'input', 'false', 'false', '', 2, 1, 1515973081575276545, '2022-06-20 10:11:21', 1515973081575276545, '2022-06-20 15:56:31', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538706098814431233, '共享条件', '组件服务一', '1538705458625228801', 'true', 'input', 'false', 'false', '', 3, 1, 1515973081575276545, '2022-06-20 10:11:36', 1515973081575276545, '2022-06-20 15:56:25', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538706124789755905, '共享类型', '组件服务一', '1538705458625228801', 'true', 'input', 'false', 'false', '', 4, 1, 1515973081575276545, '2022-06-20 10:11:43', 1515973081575276545, '2022-06-20 15:56:34', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538706154921635842, '应用领域', '组件服务一', '1538705458625228801', 'true', 'checkBox', 'false', 'true', '1513712507692818433', 5, 1, 1515973081575276545, '2022-06-20 10:11:50', 1515973081575276545, '2022-06-20 16:00:34', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538706670997188609, '组件描述', '组件服务一', '1538705458625228801', 'true', 'input', 'false', 'false', '', 6, 1, 1515973081575276545, '2022-06-20 10:13:53', 1515973081575276545, '2022-06-20 16:00:37', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538706729419649026, '组件展示', '组件服务一', '1538705458625228801', 'true', 'input', 'false', 'false', '', 7, 1, 1515973081575276545, '2022-06-20 10:14:07', 1515973081575276545, '2022-06-20 16:00:39', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538775130049605633, '业务组件', '组件服务一', '1534715319708270594', 'false', '', 'false', 'false', '', 3, 0, 1513433270406643713, '2022-06-20 14:45:55', 1513433270406643713, '2022-06-20 14:45:55', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538775261113217025, '图层服务', '组件服务一', '1534715319708270594', 'false', '', 'false', 'false', '', 4, 0, 1513433270406643713, '2022-06-20 14:46:26', 1513433270406643713, '2022-06-20 14:46:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538793982720471041, '应用领域', '组件服务一', '1538705458625228801', 'true', 'checkBox', 'false', 'true', '1513712507692818433', 2, 0, 1515973081575276545, '2022-06-20 16:00:50', 1515973081575276545, '2022-06-20 16:00:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794051267981313, '组件描述', '组件服务一', '1538705458625228801', 'true', 'textArea', 'false', 'false', '', 3, 0, 1515973081575276545, '2022-06-20 16:01:06', 1515973081575276545, '2022-06-20 16:01:06', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794120696295426, '共享条件', '组件服务一', '1538705458625228801', 'true', 'radio', 'false', 'true', '1531193872826822657', 4, 0, 1515973081575276545, '2022-06-20 16:01:22', 1515973081575276545, '2022-06-20 16:01:22', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794214959083522, '共享类型', '组件服务一', '1538705458625228801', 'true', 'radio', 'false', 'true', '1531193462665834498', 5, 0, 1515973081575276545, '2022-06-20 16:01:45', 1515973081575276545, '2022-06-20 16:01:45', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794323738357761, '部门联系人', '组件服务一', '1538705458625228801', 'true', 'input', 'false', 'false', '', 6, 0, 1515973081575276545, '2022-06-20 16:02:11', 1515973081575276545, '2022-06-20 16:02:11', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794359264112641, '部门联系人电话', '组件服务一', '1538705458625228801', 'true', 'input', 'false', 'false', '', 7, 0, 1515973081575276545, '2022-06-20 16:02:19', 1515973081575276545, '2022-06-20 16:02:19', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794397646188546, '组件视频介绍', '组件服务一', '1538705458625228801', 'true', 'video', 'false', 'false', '', 8, 0, 1515973081575276545, '2022-06-20 16:02:28', 1515973081575276545, '2022-06-20 16:02:28', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794453967302658, '组件图片', '组件服务一', '1538705458625228801', 'true', 'image', 'false', 'false', '', 9, 0, 1515973081575276545, '2022-06-20 16:02:42', 1515973081575276545, '2022-06-20 16:02:42', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794548943122433, '功能介绍', '组件服务一', '1538705253037223937', 'false', '', 'false', 'false', '', 2, 0, 1515973081575276545, '2022-06-20 16:03:05', 1515973081575276545, '2022-06-20 16:03:05', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794595453759489, '功能介绍', '组件服务一', '1538794548943122433', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:03:16', 1515973081575276545, '2022-06-20 16:03:16', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794643944108033, '应用场景', '组件服务一', '1538705253037223937', 'false', '', 'false', 'false', '', 3, 0, 1515973081575276545, '2022-06-20 16:03:27', 1515973081575276545, '2022-06-20 16:03:27', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794692723863554, '应用场景', '组件服务一', '1538794643944108033', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:03:39', 1515973081575276545, '2022-06-20 16:03:39', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794891366080514, '部署与使用', '组件服务一', '1538705253037223937', 'false', '', 'false', 'false', '', 4, 0, 1515973081575276545, '2022-06-20 16:04:26', 1515973081575276545, '2022-06-20 16:04:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794942825996289, '使用方式', '组件服务一', '1538794891366080514', 'false', '', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:04:38', 1515973081575276545, '2022-06-20 16:04:38', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538794983288446977, '服务商', '组件服务一', '1538794891366080514', 'false', '', 'false', 'false', '', 2, 0, 1515973081575276545, '2022-06-20 16:04:48', 1515973081575276545, '2022-06-20 16:04:48', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538795018612875265, '常见问题', '组件服务一', '1538794891366080514', 'false', '', 'false', 'false', '', 3, 0, 1515973081575276545, '2022-06-20 16:04:57', 1515973081575276545, '2022-06-20 16:04:57', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538795126746226689, '常见问题', '组件服务一', '1538795018612875265', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:05:22', 1515973081575276545, '2022-06-20 16:05:22', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538795351665778689, '组件地址', '组件服务一', '1538794942825996289', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:06:16', 1515973081575276545, '2022-06-20 16:06:16', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538795387053121537, '使用手册', '组件服务一', '1538794942825996289', 'true', 'file', 'false', 'false', '', 2, 0, 1515973081575276545, '2022-06-20 16:06:24', 1515973081575276545, '2022-06-20 16:06:24', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538795418829168641, '技术文档', '组件服务一', '1538794942825996289', 'true', 'file', 'false', 'false', '', 3, 0, 1515973081575276545, '2022-06-20 16:06:32', 1515973081575276545, '2022-06-20 16:06:32', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538795473233485826, '是否支持试用', '组件服务一', '1538794942825996289', 'true', 'radio', 'false', 'true', '1529028127496343554', 4, 0, 1515973081575276545, '2022-06-20 16:06:45', 1515973081575276545, '2022-06-20 16:06:45', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538795504820789250, '试用地址', '组件服务一', '1538794942825996289', 'true', 'input', 'false', 'false', '', 5, 0, 1515973081575276545, '2022-06-20 16:06:52', 1515973081575276545, '2022-06-20 16:06:52', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538795538748514305, '试用用户名', '组件服务一', '1538794942825996289', 'true', 'input', 'false', 'false', '', 6, 0, 1515973081575276545, '2022-06-20 16:07:01', 1515973081575276545, '2022-06-20 16:07:01', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538795568431603713, '试用密码', '组件服务一', '1538794942825996289', 'true', 'input', 'false', 'false', '', 7, 0, 1515973081575276545, '2022-06-20 16:07:08', 1515973081575276545, '2022-06-20 16:07:08', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538795836997083137, '服务商', '组件服务一', '1538794983288446977', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:08:12', 1515973081575276545, '2022-06-20 16:08:12', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538795912670715905, '服务商联系人', '组件服务一', '1538794983288446977', 'true', 'input', 'false', 'false', '', 2, 0, 1515973081575276545, '2022-06-20 16:08:30', 1515973081575276545, '2022-06-20 16:08:30', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538795955486171137, '服务商联系电话', '组件服务一', '1538794983288446977', 'true', 'input', 'false', 'false', '', 3, 0, 1515973081575276545, '2022-06-20 16:08:40', 1515973081575276545, '2022-06-20 16:08:40', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538796865071325186, '基本信息', '组件服务一', '1538775130049605633', 'false', '', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:12:17', 1515973081575276545, '2022-06-20 16:12:17', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538796905051430913, '功能介绍', '组件服务一', '1538775130049605633', 'false', '', 'false', 'false', '', 2, 0, 1515973081575276545, '2022-06-20 16:12:26', 1515973081575276545, '2022-06-20 16:12:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538796931966279682, '应用场景', '组件服务一', '1538775130049605633', 'false', '', 'false', 'false', '', 3, 0, 1515973081575276545, '2022-06-20 16:12:33', 1515973081575276545, '2022-06-20 16:12:33', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538796969526272002, '部署与使用', '组件服务一', '1538775130049605633', 'false', '', 'false', 'false', '', 4, 0, 1515973081575276545, '2022-06-20 16:12:42', 1515973081575276545, '2022-06-20 16:12:42', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538797032767987714, '基本信息', '组件服务一', '1538796865071325186', 'false', '', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:12:57', 1515973081575276545, '2022-06-20 16:12:57', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538797100568911874, '组件名称', '组件服务一', '1538797032767987714', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:13:13', 1515973081575276545, '2022-06-20 16:13:13', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538797139945037826, '应用领域', '组件服务一', '1538797032767987714', 'true', 'checkBox', 'false', 'true', '1513712507692818433', 2, 0, 1515973081575276545, '2022-06-20 16:13:22', 1515973081575276545, '2022-06-20 16:13:22', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538797177844768769, '组件描述', '组件服务一', '1538797032767987714', 'true', 'input', 'false', 'false', '', 3, 0, 1515973081575276545, '2022-06-20 16:13:31', 1515973081575276545, '2022-06-20 16:13:31', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538797215220211714, '共享条件', '组件服务一', '1538797032767987714', 'true', 'radio', 'false', 'true', '1531193872826822657', 4, 0, 1515973081575276545, '2022-06-20 16:13:40', 1515973081575276545, '2022-06-20 16:13:40', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538797250972459009, '共享类型', '组件服务一', '1538797032767987714', 'true', 'radio', 'false', 'true', '1531193462665834498', 5, 0, 1515973081575276545, '2022-06-20 16:13:49', 1515973081575276545, '2022-06-20 16:13:49', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538797284275232770, '部门联系人', '组件服务一', '1538797032767987714', 'true', 'input', 'false', 'false', '', 6, 0, 1515973081575276545, '2022-06-20 16:13:57', 1515973081575276545, '2022-06-20 16:13:57', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538797321298354178, '部门联系人电话', '组件服务一', '1538797032767987714', 'true', 'input', 'false', 'false', '', 7, 0, 1515973081575276545, '2022-06-20 16:14:06', 1515973081575276545, '2022-06-20 16:14:06', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538797359705595906, '组件视频介绍', '组件服务一', '1538797032767987714', 'true', 'video', 'false', 'false', '', 8, 0, 1515973081575276545, '2022-06-20 16:14:15', 1515973081575276545, '2022-06-20 16:14:15', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538797389472571393, '组件图片', '组件服务一', '1538797032767987714', 'true', 'image', 'false', 'false', '', 9, 0, 1515973081575276545, '2022-06-20 16:14:22', 1515973081575276545, '2022-06-20 16:14:22', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538797759796060162, '功能介绍', '组件服务一', '1538796905051430913', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:15:50', 1515973081575276545, '2022-06-20 16:15:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538797833427066881, '应用场景', '组件服务一', '1538796931966279682', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:16:08', 1515973081575276545, '2022-06-20 16:16:08', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798065283997697, '组件地址', '组件服务一', '1538796969526272002', 'true', 'input', 'false', 'false', '', 1, 1, 1515973081575276545, '2022-06-20 16:17:03', 1515973081575276545, '2022-06-20 16:17:18', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798198415400961, '使用方式', '组件服务一', '1538796969526272002', 'false', '', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:17:35', 1515973081575276545, '2022-06-20 16:17:35', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798254057037825, '组件地址', '组件服务一', '1538798198415400961', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:17:48', 1515973081575276545, '2022-06-20 16:17:48', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798287808602113, '新手文档', '组件服务一', '1538798198415400961', 'true', 'file', 'false', 'false', '', 2, 1, 1515973081575276545, '2022-06-20 16:17:56', 1515973081575276545, '2022-06-20 16:18:54', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798355278176258, '技术文档', '组件服务一', '1538798198415400961', 'true', 'file', 'false', 'false', '', 3, 1, 1515973081575276545, '2022-06-20 16:18:12', 1515973081575276545, '2022-06-20 16:18:58', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798582471041025, '使用手册', '组件服务一', '1538798198415400961', 'true', 'file', 'false', 'false', '', 2, 0, 1515973081575276545, '2022-06-20 16:19:06', 1515973081575276545, '2022-06-20 16:19:06', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798647793131521, '技术文档', '组件服务一', '1538798198415400961', 'true', 'file', 'false', 'false', '', 3, 0, 1515973081575276545, '2022-06-20 16:19:22', 1515973081575276545, '2022-06-20 16:19:22', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798724842496002, '服务商', '组件服务一', '1538796969526272002', 'false', '', 'false', 'false', '', 2, 0, 1515973081575276545, '2022-06-20 16:19:40', 1515973081575276545, '2022-06-20 16:19:40', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798782883274754, '服务商', '组件服务一', '1538798724842496002', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:19:54', 1515973081575276545, '2022-06-20 16:19:54', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798822322315265, '服务商联系人', '组件服务一', '1538798724842496002', 'true', 'input', 'false', 'false', '', 2, 0, 1515973081575276545, '2022-06-20 16:20:03', 1515973081575276545, '2022-06-20 16:20:03', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798858166837250, '服务商联系电话', '组件服务一', '1538798724842496002', 'true', 'input', 'false', 'false', '', 3, 0, 1515973081575276545, '2022-06-20 16:20:12', 1515973081575276545, '2022-06-20 16:20:12', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798917633679362, '常见问题', '组件服务一', '1538796969526272002', 'false', '', 'false', 'false', '', 3, 0, 1515973081575276545, '2022-06-20 16:20:26', 1515973081575276545, '2022-06-20 16:20:26', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1538798968439283713, '常见问题', '组件服务一', '1538798917633679362', 'true', 'input', 'false', 'false', '', 1, 0, 1515973081575276545, '2022-06-20 16:20:38', 1515973081575276545, '2022-06-20 16:20:38', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1539073357487497217, '服务接口', '组件服务一', '1538705458625228801', 'true', 'input', 'false', 'false', '', 10, 1, 1515973081575276545, '2022-06-21 10:30:58', 1515973081575276545, '2022-06-21 10:32:43', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1539073412218970113, '接口请求方式', '组件服务一', '1538705458625228801', 'true', 'select', 'false', 'true', '1531214531592740866', 11, 1, 1515973081575276545, '2022-06-21 10:31:11', 1515973081575276545, '2022-06-21 10:32:50', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1539073942009896962, '服务接口', '组件服务一', '1538797032767987714', 'true', 'input', 'false', 'false', '', 10, 1, 1515973081575276545, '2022-06-21 10:33:17', 1515973081575276545, '2022-06-21 10:35:59', NULL, NULL, NULL, NULL, NULL);
REPLACE INTO `tb_data_category`(`id`, `name`, `root_category`, `pid`, `is_attr`, `type`, `is_filter_criteria`, `is_link_to_dic`, `link_value`, `xh`, `del_flag`, `creator`, `create_date`, `updater`, `update_date`, `note1`, `note2`, `note3`, `note4`, `note5`) VALUES (1539073963304378369, '接口请求方式', '组件服务一', '1538797032767987714', 'true', 'select', 'false', 'true', '1531214531592740866', 11, 1, 1515973081575276545, '2022-06-21 10:33:22', 1515973081575276545, '2022-06-21 10:36:04', NULL, NULL, NULL, NULL, NULL);

View File

@ -81,10 +81,10 @@
<select id="countApplyAll" resultType="java.lang.Long">
SELECT
SUM( count )
SUM( amount )
FROM
(
SELECT
<!-- SELECT
COUNT( 1 ) AS count
FROM
(
@ -112,12 +112,40 @@
AND tdr.type != '赋能案例'
AND tdr.del_flag = 0
GROUP BY
tdr.type
tdr.type -->
SELECT
COUNT(taa.id) AS "amount",
'应用资源' AS "type"
FROM
t_ability_application taa
,tb_data_resource tdr
WHERE
taa.resource_id = tdr.id
AND tdr.del_flag = 0
AND tdr.type = '应用资源'
UNION
SELECT
COUNT(taa.id) AS "amount",
tda.attr_value AS "type"
FROM
t_ability_application taa
,tb_data_resource tdr
,tb_data_attr tda
WHERE
taa.resource_id = tdr.id
AND tdr.id = tda.data_resource_id
AND tdr.del_flag = 0
AND tdr.type = '组件服务'
AND tda.attr_type = '组件类型'
GROUP BY tda.attr_value
) temp2
</select>
<select id="getAmountGroupByType" resultType="java.util.Map">
SELECT
<!-- SELECT
'基础设施' AS 'type',
COUNT( 1 ) AS 'amount'
FROM
@ -147,7 +175,35 @@
AND tdr.type != '赋能案例'
AND tdr.del_flag = 0
GROUP BY
tdr.type
tdr.type -->
SELECT
COUNT(taa.id) AS "amount",
'应用资源' AS "type"
FROM
t_ability_application taa
,tb_data_resource tdr
WHERE
taa.resource_id = tdr.id
AND tdr.del_flag = 0
AND tdr.type = '应用资源'
UNION
SELECT
COUNT(taa.id) AS "amount",
tda.attr_value AS "type"
FROM
t_ability_application taa
,tb_data_resource tdr
,tb_data_attr tda
WHERE
taa.resource_id = tdr.id
AND tdr.id = tda.data_resource_id
AND tdr.del_flag = 0
AND tdr.type = '组件服务'
AND tda.attr_type = '组件类型'
GROUP BY tda.attr_value
</select>
<select id="selectDeptApplyCount" resultType="java.util.Map">

View File

@ -144,6 +144,13 @@
<if test="dto.deptId != null and dto.deptId != ''">
AND tdr.dept_id = #{dto.deptId}
</if>
<!-- 按申请量和收藏量查询时排除知识库数据-->
<if test="orderField != null and orderField != '' and (orderField = 'applyCount' or orderField = 'collectCount')">
AND tdr.type != '知识库'
</if>
<if test="dto.infoList.size > 0">
AND
tda.data_resource_id IN (
@ -372,6 +379,14 @@
<if test="dto.type != null and dto.type != ''">
AND tdr.type = #{dto.type}
</if>
<!-- 按申请量和收藏量查询时排除知识库数据-->
<if test="orderField != null and orderField != '' and (orderField = 'applyCount' or orderField = 'collectCount')">
AND tdr.type != '知识库'
</if>
<if test="dto.districtId != null and dto.districtId != ''">
AND tdr.district_id = #{dto.districtId}
</if>
@ -914,21 +929,21 @@
sd.id,
tdr.type
</select>
<!--
<select id="selectMaxType" resultType="java.lang.String">
SELECT
type
FROM
( SELECT COUNT( id ) AS "count", type FROM tb_data_resource WHERE 1 = 1 AND del_flag = 0 GROUP BY type ) temp1
( SELECT COUNT( id ) AS "count", type FROM tb_data_resource WHERE 1 = 1 AND type != '赋能案例' AND del_flag = 0 GROUP BY type ) temp1
WHERE
temp1.count = (
SELECT
MAX( count ) AS "total"
FROM
( SELECT COUNT( id ) AS "count" FROM tb_data_resource WHERE 1 = 1 AND del_flag = 0 GROUP BY type ) temp2
( SELECT COUNT( id ) AS "count" FROM tb_data_resource WHERE 1 = 1 AND type != '赋能案例' AND del_flag = 0 GROUP BY type ) temp2
)
</select>
-->
<select id="selectByType" resultType="java.util.Map">
SELECT id,
name
@ -936,6 +951,8 @@
WHERE 1 = 1
AND del_flag = 0
AND type = #{type}
AND type != '赋能案例'
LIMIT 30
</select>
<select id="selectTypeCountList" resultType="java.util.Map">

View File

@ -0,0 +1,44 @@
package io.renren;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import io.renren.modules.resource.dto.ResourceDTO;
import io.renren.modules.resource.entity.AttrEntity;
import io.renren.modules.sys.entity.SysUserEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.json.JSONString;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.util.*;
@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
public class Test {
@org.junit.Test
public void contextLoads() {
List<Map> cameraList = JSON.parseArray("", Map.class);
cameraList.forEach(item -> {
ResourceDTO dto = new ResourceDTO();
dto.setType("基础设施");
dto.setDelFlag(0);
ArrayList<AttrEntity> infoList = new ArrayList<>();
item.forEach((k,v) -> {
if (k.equals("channelName")){
dto.setName(v.toString());
} else {
AttrEntity attrEntity = new AttrEntity();
attrEntity.setDelFlag(0);
attrEntity.setAttrType(k.toString());
attrEntity.setAttrValue(v.toString());
infoList.add(attrEntity);
}
});
dto.setInfoList(infoList);
});
}
}