Commit b29eee08 by shentao

Merge branch 'feature' into 'release'

2024/12/02 日志打印验证依赖正确性

See merge request !145
parents 4438239e f79db2aa
...@@ -44,7 +44,8 @@ public class TaskServiceCidRecord extends AbstractTaskService { ...@@ -44,7 +44,8 @@ public class TaskServiceCidRecord extends AbstractTaskService {
CidRecord cidRecord = JSONObject.parseObject(s, CidRecord.class); CidRecord cidRecord = JSONObject.parseObject(s, CidRecord.class);
if (!test) { if (!test) {
test = true; test = true;
log.info("日志打印,源数据:{},实体:{}", s, cidRecord.toString()); com.zhiwei.middleware.automatic.server.pojo.CidRecord record = JSONObject.parseObject(s, com.zhiwei.middleware.automatic.server.pojo.CidRecord.class);
log.info("日志打印,源数据:{},实体:{}", s, JSONObject.toJSONString(record));
} }
cidRecordDao.insert(cidRecord); cidRecordDao.insert(cidRecord);
} catch (Exception e) { } catch (Exception e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment