master
hwf452 10 months ago
parent 8ef26d874e
commit c31e4b6210

@ -117,6 +117,7 @@ public class MqttHkAppPushRSAClient {
System.out.println(userInfo.getPhonemodel()); System.out.println(userInfo.getPhonemodel());
System.out.println(userInfo.getSysversion()); System.out.println(userInfo.getSysversion());
System.out.println(userInfo.getAppversion()); System.out.println(userInfo.getAppversion());
System.out.println(userInfo.getName());
userController.saveUser(userInfo); userController.saveUser(userInfo);
}catch (Exception e){ }catch (Exception e){
e.printStackTrace(); e.printStackTrace();

@ -109,6 +109,7 @@ public class MqttRSAClient {
System.out.println(userInfo.getPhonemodel()); System.out.println(userInfo.getPhonemodel());
System.out.println(userInfo.getSysversion()); System.out.println(userInfo.getSysversion());
System.out.println(userInfo.getAppversion()); System.out.println(userInfo.getAppversion());
System.out.println(userInfo.getName());
userController.saveUser(userInfo); userController.saveUser(userInfo);
}catch (Exception e){ }catch (Exception e){
e.printStackTrace(); e.printStackTrace();

@ -117,6 +117,7 @@ public class MqttRSAClientDywAPP {
System.out.println(userInfo.getPhonemodel()); System.out.println(userInfo.getPhonemodel());
System.out.println(userInfo.getSysversion()); System.out.println(userInfo.getSysversion());
System.out.println(userInfo.getAppversion()); System.out.println(userInfo.getAppversion());
System.out.println(userInfo.getName());
userController.saveUser(userInfo); userController.saveUser(userInfo);
}catch (Exception e){ }catch (Exception e){
e.printStackTrace(); e.printStackTrace();

@ -103,6 +103,7 @@ public class MqttRSAClientYFAPP {
System.out.println(userInfo.getPassword()); System.out.println(userInfo.getPassword());
System.out.println(userInfo.getDate()); System.out.println(userInfo.getDate());
System.out.println(userInfo.getNfc()); System.out.println(userInfo.getNfc());
System.out.println(userInfo.getName());
userController.saveUserYF(userInfo); userController.saveUserYF(userInfo);
}catch (Exception e){ }catch (Exception e){
e.printStackTrace(); e.printStackTrace();

@ -105,6 +105,7 @@ public class MqttRSAClientZYAPP {
System.out.println(userInfo.getPassword()); System.out.println(userInfo.getPassword());
System.out.println(userInfo.getDate()); System.out.println(userInfo.getDate());
System.out.println(userInfo.getNfc()); System.out.println(userInfo.getNfc());
System.out.println(userInfo.getName());
userController.saveUserZY(userInfo); userController.saveUserZY(userInfo);
}catch (Exception e){ }catch (Exception e){
e.printStackTrace(); e.printStackTrace();

@ -38,4 +38,6 @@ public class User implements Serializable {
private String appversion; private String appversion;
private String name;
} }

@ -38,4 +38,6 @@ public class Userdyw implements Serializable {
private String appversion; private String appversion;
private String name;
} }

@ -29,4 +29,6 @@ public class Useryf implements Serializable {
@Column( length = 32) @Column( length = 32)
private String date; private String date;
private String name;
} }

@ -29,4 +29,6 @@ public class Userzy implements Serializable {
@Column( length = 32) @Column( length = 32)
private String date; private String date;
private String name;
} }
Loading…
Cancel
Save