lyhzzz 7 月之前
父节点
当前提交
ebc68731cb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/resources/mapper/manage/ManageAgentLogMapper.xml

+ 1 - 1
src/main/resources/mapper/manage/ManageAgentLogMapper.xml

@@ -22,7 +22,7 @@
     <select id="groupByAgentId" resultType="com.fdkankan.manage.vo.response.GroupManageAgentLog">
         SELECT agent_id,sum(down_add_num) as downAddNumTotal ,sum(major_add_num)as majorAddNumTotal,sum(high_add_num) as highAddNumTotal
         from t_manage_agent_log WHERE rec_status = 'A'
-        <if test="agentIds != null and agentIds.siz >0">
+        <if test="agentIds != null and agentIds.size >0">
             and agent_id in
             <foreach collection="agentIds" item="agentId" open="(" separator="," close=")">
                 #{agentId}