A_D00009.java 844 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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_D00009 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 stype;//灾情类型
  26. /**
  27. *灾情类型
  28. */
  29. public void setStype(String stype) {
  30. this.stype=stype;
  31. }
  32. /**
  33. *灾情类型
  34. */
  35. public String getStype() {
  36. return this.stype;
  37. }
  38. int step;//文件步数
  39. /**
  40. *文件步数
  41. */
  42. public void setStep(int step) {
  43. this.step=step;
  44. }
  45. /**
  46. *文件步数
  47. */
  48. public int getStep() {
  49. return this.step;
  50. }
  51. }