A_M00002.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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_M00002 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 lname;//路径名称
  26. /**
  27. *路径名称
  28. */
  29. public void setLname(String lname) {
  30. this.lname=lname;
  31. }
  32. /**
  33. *路径名称
  34. */
  35. public String getLname() {
  36. return this.lname;
  37. }
  38. String lnodes;//路径通过节点编号组
  39. /**
  40. *路径通过节点编号组
  41. */
  42. public void setLnodes(String lnodes) {
  43. this.lnodes=lnodes;
  44. }
  45. /**
  46. *路径通过节点编号组
  47. */
  48. public String getLnodes() {
  49. return this.lnodes;
  50. }
  51. String personsites;//人员所在位置
  52. /**
  53. *人员所在位置
  54. */
  55. public void setPersonsites(String personsites) {
  56. this.personsites=personsites;
  57. }
  58. /**
  59. *人员所在位置
  60. */
  61. public String getPersonsites() {
  62. return this.personsites;
  63. }
  64. }