You need to sign in or sign up before continuing.
Commit 9712fd0a by shentao

Merge branch 'release' into 'master'

Release

See merge request !148
parents bb45e614 89800b93
...@@ -91,4 +91,20 @@ public class CidRecord { ...@@ -91,4 +91,20 @@ public class CidRecord {
public void setCid(Long cid) { public void setCid(Long cid) {
this.cid = cid; this.cid = cid;
} }
@Override
public String toString() {
return "CidRecord{" +
"id='" + id + '\'' +
", c4=" + c4 +
", c5=" + c5 +
", foreign=" + foreign +
", url='" + url + '\'' +
", time=" + time +
", ctime=" + ctime +
", stime=" + stime +
", esId='" + esId + '\'' +
", cid=" + cid +
",version=20241201}";
}
} }
...@@ -45,7 +45,7 @@ public class TaskServiceCidRecord extends AbstractTaskService { ...@@ -45,7 +45,7 @@ public class TaskServiceCidRecord extends AbstractTaskService {
if (!test) { if (!test) {
test = true; test = true;
com.zhiwei.middleware.automatic.server.pojo.CidRecord record = JSONObject.parseObject(s, com.zhiwei.middleware.automatic.server.pojo.CidRecord.class); 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)); log.info("日志打印,源数据:{},实体:{},version:{}", s, JSONObject.toJSONString(record), record.toString());
} }
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