达翔pda
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
394 B

  1. package com.icssoft.icspda.entity;
  2. public class VersionData {
  3. private String Version;
  4. private String Url;
  5. public void setVersion(String Version){
  6. this.Version = Version;
  7. }
  8. public String getVersion(){
  9. return this.Version;
  10. }
  11. public void setUrl(String Url){
  12. this.Url = Url;
  13. }
  14. public String getUrl(){
  15. return this.Url;
  16. }
  17. }