A_D10008.java 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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_D10008 extends BaseMapModel implements Serializable {
  11. private static final long serialVersionUID = -1463838678425832212L;
  12. int bid;//边界ID
  13. /**
  14. *边界ID
  15. */
  16. public void setBid(int bid) {
  17. this.bid=bid;
  18. }
  19. /**
  20. *边界ID
  21. */
  22. public int getBid() {
  23. return this.bid;
  24. }
  25. int nid;//节点编号
  26. /**
  27. *节点编号
  28. */
  29. public void setNid(int nid) {
  30. this.nid=nid;
  31. }
  32. /**
  33. *节点编号
  34. */
  35. public int getNid() {
  36. return this.nid;
  37. }
  38. String nname;//节点名称
  39. /**
  40. *节点名称
  41. */
  42. public void setNname(String nname) {
  43. this.nname=nname;
  44. }
  45. /**
  46. *节点名称
  47. */
  48. public String getNname() {
  49. return this.nname;
  50. }
  51. String type;//边界类型
  52. /**
  53. *边界类型
  54. */
  55. public void setType(String type) {
  56. this.type=type;
  57. }
  58. /**
  59. *边界类型
  60. */
  61. public String getType() {
  62. return this.type;
  63. }
  64. int aid;//事故ID
  65. /**
  66. *事故ID
  67. */
  68. public void setAid(int aid) {
  69. this.aid=aid;
  70. }
  71. /**
  72. *事故ID
  73. */
  74. public int getAid() {
  75. return this.aid;
  76. }
  77. String flow;//流量
  78. /**
  79. *流量
  80. */
  81. public void setFlow(String flow) {
  82. this.flow=flow;
  83. }
  84. /**
  85. *流量
  86. */
  87. public String getFlow() {
  88. return this.flow;
  89. }
  90. String pressure;//压强
  91. /**
  92. *压强
  93. */
  94. public void setPressure(String pressure) {
  95. this.pressure=pressure;
  96. }
  97. /**
  98. *压强
  99. */
  100. public String getPressure() {
  101. return this.pressure;
  102. }
  103. String temperature;//温度
  104. /**
  105. *温度
  106. */
  107. public void setTemperature(String temperature) {
  108. this.temperature=temperature;
  109. }
  110. /**
  111. *温度
  112. */
  113. public String getTemperature() {
  114. return this.temperature;
  115. }
  116. String polcon1;//污染物浓度1
  117. /**
  118. *污染物浓度1
  119. */
  120. public void setPolcon1(String polcon1) {
  121. this.polcon1=polcon1;
  122. }
  123. /**
  124. *污染物浓度1
  125. */
  126. public String getPolcon1() {
  127. return this.polcon1;
  128. }
  129. String polcon2;//污染物浓度2
  130. /**
  131. *污染物浓度2
  132. */
  133. public void setPolcon2(String polcon2) {
  134. this.polcon2=polcon2;
  135. }
  136. /**
  137. *污染物浓度2
  138. */
  139. public String getPolcon2() {
  140. return this.polcon2;
  141. }
  142. }