Commit 1a49fad8 by 桂前礼

bug: [none] 解决性别比例统计错误的问题

parent 18393184
...@@ -201,8 +201,8 @@ public class ESBookGroupQrcodeBizImpl implements ESBookGroupQrcodeBiz { ...@@ -201,8 +201,8 @@ public class ESBookGroupQrcodeBizImpl implements ESBookGroupQrcodeBiz {
if (qrcodeDTO != null) { if (qrcodeDTO != null) {
qrcode.setCityTags(qrcodeDTO.getCityTags()); qrcode.setCityTags(qrcodeDTO.getCityTags());
qrcode.setMaleCount(qrcodeDTO.getMaleCount()); qrcode.setMaleCount(qrcodeDTO.getMaleCount());
qrcode.setFemaleCount(qrcode.getFemaleCount()); qrcode.setFemaleCount(qrcodeDTO.getFemaleCount());
qrcode.setUnknownCount(qrcode.getFemaleCount()); qrcode.setUnknownCount(qrcodeDTO.getUnknownCount());
} }
} }
......
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