A_D00002.java 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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_D00002 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. String source;//事故来源
  13. /**
  14. *事故来源
  15. */
  16. public void setSource(String source) {
  17. this.source=source;
  18. }
  19. /**
  20. *事故来源
  21. */
  22. public String getSource() {
  23. return this.source;
  24. }
  25. String type;//事故类型
  26. /**
  27. *事故类型
  28. */
  29. public void setType(String type) {
  30. this.type=type;
  31. }
  32. /**
  33. *事故类型
  34. */
  35. public String getType() {
  36. return this.type;
  37. }
  38. String name;//事故名称
  39. /**
  40. *事故名称
  41. */
  42. public void setName(String name) {
  43. this.name=name;
  44. }
  45. /**
  46. *事故名称
  47. */
  48. public String getName() {
  49. return this.name;
  50. }
  51. String sid;//事故来源ID
  52. /**
  53. *事故来源ID
  54. */
  55. public void setSid(String sid) {
  56. this.sid=sid;
  57. }
  58. /**
  59. *事故来源ID
  60. */
  61. public String getSid() {
  62. return this.sid;
  63. }
  64. String stype;//灾情类型
  65. /**
  66. *灾情类型
  67. */
  68. public void setStype(String stype) {
  69. this.stype=stype;
  70. }
  71. /**
  72. *灾情类型
  73. */
  74. public String getStype() {
  75. return this.stype;
  76. }
  77. }