MobileInterfaceServiceSoapProxy helloPxy = new
MobileInterfaceServiceSoapProxy();
MobileInterfaceServiceSoap ss = helloPxy.getMobileInterfaceServiceSoap();
UserInfo userInfo = new UserInfo();
userInfo.setUsername("****");
userInfo.setPassword("****");
String json = JSON.toJSONString(userInfo);
String returnString = ss.login(json);
JSONObject jsonObject = JSON.parseObject(returnString);
String sessionId = jsonObject.getString("sessionid");
System.out.println(sessionId);
CheckRecord checkRecord = new CheckRecord();
checkRecord.setSession(sessionId);
checkRecord.setSalverCode("");
checkRecord.setStartDate("2019-5-1");
checkRecord.setEndDate("2019-6-4");
String json1=JSON.toJSONString(checkRecord);
String s = ss.getCheckRecord(json1);
System.out.println(s);