Commit f79db2aa by shentao

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

parent ba209a0e
......@@ -44,7 +44,8 @@ public class TaskServiceCidRecord extends AbstractTaskService {
CidRecord cidRecord = JSONObject.parseObject(s, CidRecord.class);
if (!test) {
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);
} 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