Commit 74263def by wang_jiaxing

将全省全国涉案数量修改到可疑线索列表查询中

parent 45a3fd05
......@@ -133,14 +133,32 @@ public class KyxsServiceImpl implements KyxsService {
List<TbXwKyxsJdc> jdcList = tbXwKyxsJdcMapper.selectList(jdcQueryWrapper);
List<TbXwKyxsTx> txList = tbXwKyxsTxMapper.selectListByAsjbh(asjbh);
if (ryList != null) {
for (TbXwKyxsRy ry : ryList) {
List<String> hnAsjbhList = hnJbAsjXsMapper.getAsjbhListZjhm(ry.getKyxsryZjhm());
List<String> qgAsjbhList = qgJbAsjXsMapper.getAsjbhListZjhm(ry.getKyxsryZjhm(), hnAsjbhList);
ry.setQgAsjbhList(qgAsjbhList);
ry.setQsAsjbhList(hnAsjbhList);
}
resultMap.put("ryList", ryList);
resultMap.put("ryCount", ryList.size());
}
if (hmList != null) {
for (TbXwKyxsHm hm : hmList) {
List<String> hnAsjbhList = hnJbAsjXsMapper.getAsjbhListBsh(hm.getKyxshmYdhm());
List<String> qgAsjbhList = qgJbAsjXsMapper.getAsjbhListBsh(hm.getKyxshmYdhm(), hnAsjbhList);
hm.setQgAsjbhList(qgAsjbhList);
hm.setQsAsjbhList(hnAsjbhList);
}
resultMap.put("hmList", hmList);
resultMap.put("hmCount", hmList.size());
}
if (jdcList != null) {
for (TbXwKyxsJdc jdc : jdcList) {
List<String> hnAsjbhList = hnJbAsjXsMapper.getAsjbhListBsh(jdc.getKyxsjdcCphm());
List<String> qgAsjbhList = qgJbAsjXsMapper.getAsjbhListBsh(jdc.getKyxsjdcCphm(), hnAsjbhList);
jdc.setQgAsjbhList(qgAsjbhList);
jdc.setQsAsjbhList(hnAsjbhList);
}
resultMap.put("jdcList", jdcList);
resultMap.put("jdcCount", jdcList.size());
}
......
......@@ -116,6 +116,8 @@ public class TbStAppRyxx extends BaseModel {
@TableField(exist = false)
private List<TbStAppRyzpfj> zpList;
@TableField(exist = false)
private String zp;
@TableField(exist = false)
@DateTimeFormat(pattern = "yyyy-MM-dd")
......@@ -160,6 +162,7 @@ public class TbStAppRyxx extends BaseModel {
this.hjdDzxz = qgry.getZzxz();
this.xzzXzqhdm = qgry.getHkszd();
this.xzzDzxz = qgry.getZzxz();
this.zp = "data:image/png;base64" + qgry.getXp();
}
public void setQgAsjbhList(List<String> qgAsjbhList) {
......
......@@ -164,6 +164,16 @@ public class TbStAppRyxxServiceImpl implements TbStAppRyxxService {
queryWrapper.eq("sfzh", zjhm);
TbStAppRyxx one = tbStAppRyxxMapper.selectOne(queryWrapper);
if (one != null && StringUtils.isNotEmpty(one.getXxzjbh())){
QueryWrapper<TbStAppRyzpfj> ryzpfjQueryWrapper = new QueryWrapper<>();
ryzpfjQueryWrapper.eq("xxsc_pdbz", "0");
ryzpfjQueryWrapper.eq("glxx_xxzjbh", one.getXxzjbh());
List<TbStAppRyzpfj> zpList = tbStAppRyzpfjMapper.selectList(ryzpfjQueryWrapper);
for (TbStAppRyzpfj ryzpfj : zpList) {
if ("3".equals(ryzpfj.getZplx())){
one.setZp(ryzpfj.getZpDzwjnr());
}
}
one.setZpList(zpList);
return one;
}
}
......
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