DBoundary.java 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. package com.miniframe.model.system;
  2. import com.miniframe.system.MiniserviceBaseModel;
  3. import java.io.Serializable;
  4. import javax.persistence.*;
  5. @Table(name = "d_boundary")
  6. public class DBoundary extends MiniserviceBaseModel implements Serializable {
  7. @Id
  8. private Integer id;
  9. private Integer nid;
  10. private String nname;
  11. /**
  12. * massflow质量流 pressure压力
  13. */
  14. private String type;
  15. /**
  16. * 事故id
  17. */
  18. private Integer aid;
  19. /**
  20. * 流量
  21. */
  22. private String flow;
  23. /**
  24. * 压强
  25. */
  26. private String pressure;
  27. /**
  28. * 温度
  29. */
  30. private String temperature;
  31. /**
  32. * 污染物浓度1
  33. */
  34. private String polcon1;
  35. /**
  36. * 污染物浓度2
  37. */
  38. private String polcon2;
  39. private static final long serialVersionUID = 1L;
  40. /**
  41. * @return id
  42. */
  43. public Integer getId() {
  44. return id;
  45. }
  46. /**
  47. * @param id
  48. */
  49. public void setId(Integer id) {
  50. this.id = id;
  51. }
  52. /**
  53. * @return nid
  54. */
  55. public Integer getNid() {
  56. return nid;
  57. }
  58. /**
  59. * @param nid
  60. */
  61. public void setNid(Integer nid) {
  62. this.nid = nid;
  63. }
  64. /**
  65. * @return nname
  66. */
  67. public String getNname() {
  68. return nname;
  69. }
  70. /**
  71. * @param nname
  72. */
  73. public void setNname(String nname) {
  74. this.nname = nname == null ? null : nname.trim();
  75. }
  76. /**
  77. * 获取massflow质量流 pressure压力
  78. *
  79. * @return type - massflow质量流 pressure压力
  80. */
  81. public String getType() {
  82. return type;
  83. }
  84. /**
  85. * 设置massflow质量流 pressure压力
  86. *
  87. * @param type massflow质量流 pressure压力
  88. */
  89. public void setType(String type) {
  90. this.type = type == null ? null : type.trim();
  91. }
  92. /**
  93. * 获取事故id
  94. *
  95. * @return aid - 事故id
  96. */
  97. public Integer getAid() {
  98. return aid;
  99. }
  100. /**
  101. * 设置事故id
  102. *
  103. * @param aid 事故id
  104. */
  105. public void setAid(Integer aid) {
  106. this.aid = aid;
  107. }
  108. /**
  109. * 获取流量
  110. *
  111. * @return flow - 流量
  112. */
  113. public String getFlow() {
  114. return flow;
  115. }
  116. /**
  117. * 设置流量
  118. *
  119. * @param flow 流量
  120. */
  121. public void setFlow(String flow) {
  122. this.flow = flow == null ? null : flow.trim();
  123. }
  124. /**
  125. * 获取压强
  126. *
  127. * @return pressure - 压强
  128. */
  129. public String getPressure() {
  130. return pressure;
  131. }
  132. /**
  133. * 设置压强
  134. *
  135. * @param pressure 压强
  136. */
  137. public void setPressure(String pressure) {
  138. this.pressure = pressure == null ? null : pressure.trim();
  139. }
  140. /**
  141. * 获取温度
  142. *
  143. * @return temperature - 温度
  144. */
  145. public String getTemperature() {
  146. return temperature;
  147. }
  148. /**
  149. * 设置温度
  150. *
  151. * @param temperature 温度
  152. */
  153. public void setTemperature(String temperature) {
  154. this.temperature = temperature == null ? null : temperature.trim();
  155. }
  156. /**
  157. * 获取污染物浓度1
  158. *
  159. * @return polcon1 - 污染物浓度1
  160. */
  161. public String getPolcon1() {
  162. return polcon1;
  163. }
  164. /**
  165. * 设置污染物浓度1
  166. *
  167. * @param polcon1 污染物浓度1
  168. */
  169. public void setPolcon1(String polcon1) {
  170. this.polcon1 = polcon1 == null ? null : polcon1.trim();
  171. }
  172. /**
  173. * 获取污染物浓度2
  174. *
  175. * @return polcon2 - 污染物浓度2
  176. */
  177. public String getPolcon2() {
  178. return polcon2;
  179. }
  180. /**
  181. * 设置污染物浓度2
  182. *
  183. * @param polcon2 污染物浓度2
  184. */
  185. public void setPolcon2(String polcon2) {
  186. this.polcon2 = polcon2 == null ? null : polcon2.trim();
  187. }
  188. }