|
@@ -848,8 +848,9 @@ public class EntityAnalyse {
|
|
|
System.out.println(body);
|
|
|
JSONObject jsonObject = JSONObject.parseObject(body);
|
|
|
distinguishView.setDriverEndDate(jsonObject.getString("end_date"));
|
|
|
+ distinguishView.setDriverStartDate(jsonObject.getString("start_date"));
|
|
|
String s = jsonObject.getString("vehicle_type");
|
|
|
- if (s == "A2" || s == "B2") {
|
|
|
+ if ("A2".equals(s) || "B2".equals(s)) {
|
|
|
distinguishView.setAllowCar(s);
|
|
|
}
|
|
|
distinguishView.setIssuingAuthority(jsonObject.getString("issue_organization"));
|