|
|
@@ -38,14 +38,14 @@ public class MrxuId {
|
|
|
if(value == null) {
|
|
|
return false;
|
|
|
}
|
|
|
- return 19 == value.length() && value.startsWith("2");
|
|
|
+ return value.length() >=19 && value.startsWith("2");
|
|
|
}
|
|
|
|
|
|
public static boolean isMemberId(String value) {
|
|
|
if(value == null) {
|
|
|
return false;
|
|
|
}
|
|
|
- return 19 == value.length() && value.startsWith("5");
|
|
|
+ return value.length() >=19 && value.startsWith("5");
|
|
|
}
|
|
|
|
|
|
public static void main(String[] args) {
|