Commit abf6d4aa by libin

信息提取去掉被害人的身份证号限制。

parent b5758fa1
......@@ -279,8 +279,10 @@ public class StAsjXxtqService {
//return R.error().message("案事件嫌疑人身份证号码为空,数据质量不合格,请联系部刑专运维,不予提取。");
continue;
}else {
String nl = DataFormatUtil.parseNlFromSfzh(sfzh);
entity.setZhfzxyrNl(nl);
if(StringUtils.isEmpty(entity.getZhfzxyrNl())){
String nl = DataFormatUtil.parseNlFromSfzh(sfzh);
entity.setZhfzxyrNl(nl);
}
if(!StringUtils.isEmpty(asjxgrybh)){
QueryWrapper wrapper = new QueryWrapper();
wrapper.eq("xxsc_pdbz","0");
......@@ -319,12 +321,11 @@ public class StAsjXxtqService {
entity.setXxlyms("信息来源于案件提取");
String asjxgrybh = entity.getBhrAsjxgrybh();
String sfzh = entity.getBhrCyzjZjhm();
if(StringUtils.isEmpty(sfzh)){
//return R.error().message("案事件被害人身份证号码为空,数据质量不合格,请联系部刑专运维,不予提取。");
continue;
}else if(!StringUtils.isEmpty(asjxgrybh)){
String nl = DataFormatUtil.parseNlFromSfzh(sfzh);
entity.setBhrNl(nl);
if(!StringUtils.isEmpty(asjxgrybh)){
if(StringUtils.isEmpty(entity.getBhrNl())){
String nl = DataFormatUtil.parseNlFromSfzh(sfzh);
entity.setBhrNl(nl);
}
QueryWrapper wrapper = new QueryWrapper();
wrapper.eq("xxsc_pdbz","0");
wrapper.eq("asjbh",asjbh);
......
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