A_D10019.java 685 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**
  2. * 系统服务
  3. */
  4. package com.miniframe.generate.comm.system;
  5. import com.miniframe.core.BaseMapModel;
  6. import java.io.Serializable;
  7. /**
  8. * 监测点结果批量获取
  9. */
  10. public class A_D10019 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. int aid;//事故ID
  13. /**
  14. *事故ID
  15. */
  16. public void setAid(int aid) {
  17. this.aid=aid;
  18. }
  19. /**
  20. *事故ID
  21. */
  22. public int getAid() {
  23. return this.aid;
  24. }
  25. String chname;//监测点名称
  26. /**
  27. *监测点名称
  28. */
  29. public void setChname(String chname) {
  30. this.chname=chname;
  31. }
  32. /**
  33. *监测点名称
  34. */
  35. public String getChname() {
  36. return this.chname;
  37. }
  38. }