A_XG0006.java 665 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * 犀工网
  3. */
  4. package com.miniframe.generate.comm.xigital;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 资源设置IP
  9. */
  10. public class A_XG0006 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String resId;//资源ID
  13. /**
  14. *资源ID
  15. */
  16. public void setResId(String resId) {
  17. this.resId=resId;
  18. }
  19. /**
  20. *资源ID
  21. */
  22. public String getResId() {
  23. return this.resId;
  24. }
  25. String resIp;//资源IP
  26. /**
  27. *资源IP
  28. */
  29. public void setResIp(String resIp) {
  30. this.resIp=resIp;
  31. }
  32. /**
  33. *资源IP
  34. */
  35. public String getResIp() {
  36. return this.resIp;
  37. }
  38. }