A_D10000.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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_D10000 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. int nid;//节点编号
  13. /**
  14. *节点编号
  15. */
  16. public void setNid(int nid) {
  17. this.nid=nid;
  18. }
  19. /**
  20. *节点编号
  21. */
  22. public int getNid() {
  23. return this.nid;
  24. }
  25. String name;//名称
  26. /**
  27. *名称
  28. */
  29. public void setName(String name) {
  30. this.name=name;
  31. }
  32. /**
  33. *名称
  34. */
  35. public String getName() {
  36. return this.name;
  37. }
  38. String x;//x
  39. /**
  40. *x
  41. */
  42. public void setX(String x) {
  43. this.x=x;
  44. }
  45. /**
  46. *x
  47. */
  48. public String getX() {
  49. return this.x;
  50. }
  51. String y;//y
  52. /**
  53. *y
  54. */
  55. public void setY(String y) {
  56. this.y=y;
  57. }
  58. /**
  59. *y
  60. */
  61. public String getY() {
  62. return this.y;
  63. }
  64. String z;//z
  65. /**
  66. *z
  67. */
  68. public void setZ(String z) {
  69. this.z=z;
  70. }
  71. /**
  72. *z
  73. */
  74. public String getZ() {
  75. return this.z;
  76. }
  77. String desc;//描述
  78. /**
  79. *描述
  80. */
  81. public void setDesc(String desc) {
  82. this.desc=desc;
  83. }
  84. /**
  85. *描述
  86. */
  87. public String getDesc() {
  88. return this.desc;
  89. }
  90. String ntype;//类型默认值
  91. /**
  92. *类型默认值
  93. */
  94. public void setNtype(String ntype) {
  95. this.ntype=ntype;
  96. }
  97. /**
  98. *类型默认值
  99. */
  100. public String getNtype() {
  101. return this.ntype;
  102. }
  103. String code;//编号
  104. /**
  105. *编号
  106. */
  107. public void setCode(String code) {
  108. this.code=code;
  109. }
  110. /**
  111. *编号
  112. */
  113. public String getCode() {
  114. return this.code;
  115. }
  116. }