Browse Source

修复:查询网格下注册用户时,将REGISTER = '1'改为FIRST_REGISTER = '1',过滤掉之前因跨客户产生的数据。

dev_shibei_match
wangchao 5 years ago
parent
commit
410488a767
  1. 12
      epmet-module/data-statistical/data-statistical-server/src/main/resources/mapper/user/UserDao.xml

12
epmet-module/data-statistical/data-statistical-server/src/main/resources/mapper/user/UserDao.xml

@ -21,7 +21,7 @@
</when> </when>
<!-- 默认查注册用户 --> <!-- 默认查注册用户 -->
<otherwise> <otherwise>
AND REGISTER = '1' AND FIRST_REGISTER = '1'
</otherwise> </otherwise>
</choose> </choose>
@ -56,7 +56,7 @@
</when> </when>
<!-- 默认查注册用户 --> <!-- 默认查注册用户 -->
<otherwise> <otherwise>
AND REGISTER = '1' AND FIRST_REGISTER = '1'
</otherwise> </otherwise>
</choose> </choose>
<choose> <choose>
@ -95,7 +95,7 @@
</when> </when>
<!-- 默认查注册用户 --> <!-- 默认查注册用户 -->
<otherwise> <otherwise>
AND REGISTER = '1' AND FIRST_REGISTER = '1'
</otherwise> </otherwise>
</choose> </choose>
@ -135,7 +135,7 @@
</when> </when>
<!-- 默认查注册用户 --> <!-- 默认查注册用户 -->
<otherwise> <otherwise>
AND REGISTER = '1' AND FIRST_REGISTER = '1'
</otherwise> </otherwise>
</choose> </choose>
@ -303,7 +303,7 @@
</when> </when>
<!-- 默认查注册用户 --> <!-- 默认查注册用户 -->
<otherwise> <otherwise>
AND REGISTER = '1' AND FIRST_REGISTER = '1'
</otherwise> </otherwise>
</choose> </choose>
@ -336,7 +336,7 @@
</when> </when>
<!-- 默认查注册用户 --> <!-- 默认查注册用户 -->
<otherwise> <otherwise>
AND REGISTER = '1' AND FIRST_REGISTER = '1'
</otherwise> </otherwise>
</choose> </choose>

Loading…
Cancel
Save