Commit f59759fc authored by yanzg's avatar yanzg

表结构修改

parent 4e6d82a2
......@@ -958,6 +958,19 @@ public class StringHelper {
return false;
}
/***
* 判断是否在数组中
* @return
*/
public static boolean isIn(long from, long... tos) {
for (long to : tos) {
if (from == to) {
return true;
}
}
return false;
}
/***
* 判断是否在数组中
* @return
......
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