提交 b69f480b 作者: yanxin

多职位分隔使用英文逗号

上级 2f933fd5
...@@ -112,9 +112,9 @@ public class PersonOfJobChangeKafkaConsumer { ...@@ -112,9 +112,9 @@ public class PersonOfJobChangeKafkaConsumer {
.id(id) .id(id)
.name(temp.get("person") != null ? temp.get("person").toString() : "") .name(temp.get("person") != null ? temp.get("person").toString() : "")
.department(temp.get("curWorkPlace") != null ? temp.get("curWorkPlace").toString() : "") .department(temp.get("curWorkPlace") != null ? temp.get("curWorkPlace").toString() : "")
.duty(temp.get("curStation") != null ? temp.get("curStation").toString() : "") .duty(temp.get("curStation") != null ? temp.get("curStation").toString().replace("、",",") : "")
.departmentOriginal(temp.get("oriWorkPlace") != null ? temp.get("oriWorkPlace").toString() : "") .departmentOriginal(temp.get("oriWorkPlace") != null ? temp.get("oriWorkPlace").toString() : "")
.dutyOriginal(temp.get("oriStation") != null ? temp.get("oriStation").toString() : "") .dutyOriginal(temp.get("oriStation") != null ? temp.get("oriStation").toString().replace("、",",") : "")
.updateDesc(temp.get("updateDesc") != null ? temp.get("updateDesc").toString() : "") .updateDesc(temp.get("updateDesc") != null ? temp.get("updateDesc").toString() : "")
.articleIndex(USERSERVER_BASEDATA) .articleIndex(USERSERVER_BASEDATA)
.articleId(baseData.getId()) .articleId(baseData.getId())
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论