|
|
|
@@ -14,7 +14,6 @@ import com.iformall.service.WxCUserService; |
|
|
|
import com.iformall.service.WxScoreRulesService; |
|
|
|
import com.iformall.utils.Constant; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
import org.apache.ibatis.javassist.bytecode.Descriptor.Iterator; |
|
|
|
import org.slf4j.Logger; |
|
|
|
import org.slf4j.LoggerFactory; |
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
@@ -25,6 +24,7 @@ import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
import java.util.Date; |
|
|
|
import java.util.HashMap; |
|
|
|
import java.util.Iterator; |
|
|
|
import java.util.List; |
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
@@ -143,7 +143,7 @@ public class WxScoreRulesServiceImpl implements WxScoreRulesService { |
|
|
|
|
|
|
|
if (businessRuleMap.size() > 0 ) { |
|
|
|
JSONArray childsJsonArray = new JSONArray(); |
|
|
|
for (Iterator it = (Iterator) businessRuleMap.keySet().iterator();it.hasNext();) { |
|
|
|
for (Iterator<Integer> it = (Iterator) businessRuleMap.keySet().iterator();it.hasNext();) { |
|
|
|
Integer businessId = it.next(); |
|
|
|
childsJsonArray.add(businessRuleMap.get(businessId)); |
|
|
|
} |
|
|
|
|