Commit 64d1664e by 陶光胜

取数平台调整

parent ff65d38b
......@@ -298,7 +298,12 @@ public class FlatQueryResultServiceImpl implements IFlatQueryResultService {
System.out.println("dataPermission = " + dataPermission);
System.out.println(FilterFieldUtils.FILTERS_PHONE_ONLY);
System.out.println(FilterFieldUtils.FILTERS_PHONE_AND_CARD);
System.out.println("FilterFieldUtils.FILTERS_PHONE_ONLY.contains(fieldName) = " + FilterFieldUtils.FILTERS_PHONE_ONLY.contains(fieldName));
System.out.println("FilterFieldUtils.FILTERS_PHONE_ONLY.contains(fieldName) = " + FilterFieldUtils.FILTERS_PHONE_ONLY.contains(fieldName.toString()));
System.out.println("fieldName = " + fieldName.hashCode());
for(String s : FilterFieldUtils.FILTERS_PHONE_ONLY){
System.out.println("s = " + s);
System.out.println("s.hashCode() = " + s.hashCode());
}
}
} // SWITCH OVER
......
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