离线端数据包,文件解析
This commit is contained in:
parent
5a86d4a00b
commit
847bf6cbfb
|
|
@ -135,7 +135,7 @@ public class QualificationApplicationServiceImpl extends Service implements Qual
|
|||
if (dataJsonImageId != null && dataJsonImageId > 0) {
|
||||
// 离线端方式
|
||||
JsonNode rootNode = parseJsonContent(dataJsonImageId);
|
||||
offline(rootNode, imageFileMap);
|
||||
offline(rootNode);
|
||||
}
|
||||
|
||||
// TODO 兼容其他方式
|
||||
|
|
@ -161,10 +161,9 @@ public class QualificationApplicationServiceImpl extends Service implements Qual
|
|||
* 离线解析方式
|
||||
*
|
||||
* @param rootNode
|
||||
* @param imageFileMap
|
||||
* @throws JsonProcessingException
|
||||
*/
|
||||
private void offline(JsonNode rootNode, Map<String, Integer> imageFileMap) throws Exception {
|
||||
private void offline(JsonNode rootNode) throws Exception {
|
||||
List<DataConfig> dataConfigList = getDataConfig("0");
|
||||
|
||||
// 处理文件数据
|
||||
|
|
|
|||
Loading…
Reference in New Issue