mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
1、新增ip服务查询接口,对接阿里云第三方服务,服务封装、ip模块旧引用清理、新增ip服务开关和配置;2、新增组织地理信息字段;3、新增登录对地理信息的校验;
This commit is contained in:
+13
@@ -66,4 +66,17 @@ public class StrUtils {
|
||||
.collect(Collectors.joining("\n"));
|
||||
}
|
||||
|
||||
/**
|
||||
* a字符串是否包含b
|
||||
*
|
||||
* @param a
|
||||
* @param b
|
||||
* @return
|
||||
*/
|
||||
public static boolean contains(String a, String b) {
|
||||
if (CharSequenceUtil.isEmpty(a) || CharSequenceUtil.isEmpty(b)) {
|
||||
return false;
|
||||
}
|
||||
return a.contains(b);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user