|
|
@@ -100,7 +100,7 @@ public class MobileController extends Controller{
|
|
|
Record result = new Record();
|
|
|
boolean cuan = true;
|
|
|
boolean isThird = false;
|
|
|
- if(code.length() == 6){//6位码先查爱创的,没查到就走老逻辑
|
|
|
+ if(code.length() == 6 || code.length() == 11){//6位码先查爱创的,没查到就走老逻辑
|
|
|
Map<String,String> header =new HashMap<String,String>();
|
|
|
header.put("content-type", "application/json;charset=UTF-8");
|
|
|
JSONObject obj = new JSONObject();
|
|
|
@@ -201,7 +201,7 @@ public class MobileController extends Controller{
|
|
|
e.printStackTrace();
|
|
|
}
|
|
|
|
|
|
- }else if(code.length() == 21 || code.length() == 5 || code.length() == 11){
|
|
|
+ }else if(code.length() == 21 || code.length() == 5){
|
|
|
try{
|
|
|
isThird = true;
|
|
|
Map<String,String> header =new HashMap<String,String>();
|