提交 7e1b80a3 authored 作者: inroi's avatar inroi

微调

上级 3172d15e
......@@ -72,6 +72,7 @@ public class MallCommonGetConstants {
temp.put("encapsulationFormat", String.valueOf(records.getEncapsulationFormat()));
temp.put("entryName", records.getEntryName());
temp.put("customSql", records.getCustomSql());
temp.put("plugInUrl", records.getPlugInUrl());
temp.put("formFieldMappingDetail", JsonUtil.toString(tempList));
return temp;
}
......
......@@ -72,6 +72,7 @@ public class MallCommonPostConstants {
temp.put("encapsulationFormat", String.valueOf(records.getEncapsulationFormat()));
temp.put("entryName", records.getEntryName());
temp.put("customSql", records.getCustomSql());
temp.put("plugInUrl", records.getPlugInUrl());
temp.put("formFieldMappingDetail", JsonUtil.toString(tempList));
return temp;
}
......
......@@ -87,6 +87,7 @@ public class MallCommonSyncConstants {
temp.put("encapsulationFormat", String.valueOf(records.getEncapsulationFormat()));
temp.put("entryName", records.getEntryName());
temp.put("customSql", records.getCustomSql());
temp.put("plugInUrl", records.getPlugInUrl());
temp.put("formFieldMappingDetail", JsonUtil.toString(tempList));
return temp;
}
......
......@@ -8,7 +8,7 @@
SELECT
id, platform_product_relation_id, doc_type, s_form_id, `name`, direction,
operation, encapsulation_format, entry_name, custom_sql, create_time
operation, encapsulation_format, entry_name, custom_sql, plug_in_url, create_time
FROM tb_mall_common_config WHERE operation = #{operation}
</select>
......@@ -19,7 +19,7 @@
SELECT
m1.id, m1.platform_product_relation_id, m1.doc_type, m1.s_form_id, m1.name, m1.direction,
m1.operation, m1.encapsulation_format, m1.entry_name, m1.custom_sql, m1.create_time
m1.operation, m1.encapsulation_format, m1.entry_name, m1.custom_sql, m1.plug_in_url, m1.create_time
FROM tb_mall_common_config AS m1 INNER JOIN (
SELECT
platform_product_relation_id, s_form_id, MIN(operation) AS operation
......@@ -34,7 +34,7 @@
SELECT
id, platform_product_relation_id, doc_type, s_form_id, `name`, direction,
operation, encapsulation_format, entry_name, custom_sql, create_time
operation, encapsulation_format, entry_name, custom_sql, plug_in_url, create_time
FROM tb_mall_common_config WHERE id = #{id}
</select>
......
......@@ -72,6 +72,7 @@ public class IMallSyncServiceImpl implements IMallSyncService {
}
}
//TODO 插件请求
this.encapsulationRequest(config, queueId, id, map);
}
}
......
......@@ -72,6 +72,12 @@ public class MallCommonConfigListOutVoRecords {
/**
* 插件地址
*/
private String plugInUrl;
/**
* 创建时间
*/
private String createTime;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论