MdoProInoutPara.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. package com.miniframe.model.mdo;
  2. import com.miniframe.system.MiniserviceBaseModel;
  3. import java.io.Serializable;
  4. import javax.persistence.*;
  5. @Table(name = "mdo_pro_inout_para")
  6. public class MdoProInoutPara extends MiniserviceBaseModel implements Serializable {
  7. @Id
  8. private String id;
  9. /**
  10. * 项目ID
  11. */
  12. private String pid;
  13. /**
  14. * 组件ID
  15. */
  16. private String fatherid;
  17. /**
  18. * 名称
  19. */
  20. private String name;
  21. /**
  22. * 编号
  23. */
  24. private String code;
  25. /**
  26. * 1 启用 0 不启用
  27. */
  28. private Integer flag;
  29. /**
  30. * 值
  31. */
  32. private String value;
  33. /**
  34. * 1 来流参数 2 分析参数
  35. */
  36. private Integer type;
  37. /**
  38. * 组件类型
  39. */
  40. private Integer comtype;
  41. /**
  42. * 流分析 1 启用 0 关闭
  43. */
  44. private Integer steamflag;
  45. /**
  46. * 流分析类型 1 约束条件 2优化目标
  47. */
  48. private Integer steamtype;
  49. private static final long serialVersionUID = 1L;
  50. /**
  51. * @return id
  52. */
  53. public String getId() {
  54. return id;
  55. }
  56. /**
  57. * @param id
  58. */
  59. public void setId(String id) {
  60. this.id = id == null ? null : id.trim();
  61. }
  62. /**
  63. * 获取项目ID
  64. *
  65. * @return pid - 项目ID
  66. */
  67. public String getPid() {
  68. return pid;
  69. }
  70. /**
  71. * 设置项目ID
  72. *
  73. * @param pid 项目ID
  74. */
  75. public void setPid(String pid) {
  76. this.pid = pid == null ? null : pid.trim();
  77. }
  78. /**
  79. * 获取组件ID
  80. *
  81. * @return fatherid - 组件ID
  82. */
  83. public String getFatherid() {
  84. return fatherid;
  85. }
  86. /**
  87. * 设置组件ID
  88. *
  89. * @param fatherid 组件ID
  90. */
  91. public void setFatherid(String fatherid) {
  92. this.fatherid = fatherid == null ? null : fatherid.trim();
  93. }
  94. /**
  95. * 获取名称
  96. *
  97. * @return name - 名称
  98. */
  99. public String getName() {
  100. return name;
  101. }
  102. /**
  103. * 设置名称
  104. *
  105. * @param name 名称
  106. */
  107. public void setName(String name) {
  108. this.name = name == null ? null : name.trim();
  109. }
  110. /**
  111. * 获取编号
  112. *
  113. * @return code - 编号
  114. */
  115. public String getCode() {
  116. return code;
  117. }
  118. /**
  119. * 设置编号
  120. *
  121. * @param code 编号
  122. */
  123. public void setCode(String code) {
  124. this.code = code == null ? null : code.trim();
  125. }
  126. /**
  127. * 获取1 启用 0 不启用
  128. *
  129. * @return flag - 1 启用 0 不启用
  130. */
  131. public Integer getFlag() {
  132. return flag;
  133. }
  134. /**
  135. * 设置1 启用 0 不启用
  136. *
  137. * @param flag 1 启用 0 不启用
  138. */
  139. public void setFlag(Integer flag) {
  140. this.flag = flag;
  141. }
  142. /**
  143. * 获取值
  144. *
  145. * @return value - 值
  146. */
  147. public String getValue() {
  148. return value;
  149. }
  150. /**
  151. * 设置值
  152. *
  153. * @param value 值
  154. */
  155. public void setValue(String value) {
  156. this.value = value == null ? null : value.trim();
  157. }
  158. /**
  159. * 获取1 来流参数 2 分析参数
  160. *
  161. * @return type - 1 来流参数 2 分析参数
  162. */
  163. public Integer getType() {
  164. return type;
  165. }
  166. /**
  167. * 设置1 来流参数 2 分析参数
  168. *
  169. * @param type 1 来流参数 2 分析参数
  170. */
  171. public void setType(Integer type) {
  172. this.type = type;
  173. }
  174. /**
  175. * 获取组件类型
  176. *
  177. * @return comtype - 组件类型
  178. */
  179. public Integer getComtype() {
  180. return comtype;
  181. }
  182. /**
  183. * 设置组件类型
  184. *
  185. * @param comtype 组件类型
  186. */
  187. public void setComtype(Integer comtype) {
  188. this.comtype = comtype;
  189. }
  190. /**
  191. * 获取流分析 1 启用 0 关闭
  192. *
  193. * @return steamflag - 流分析 1 启用 0 关闭
  194. */
  195. public Integer getSteamflag() {
  196. return steamflag;
  197. }
  198. /**
  199. * 设置流分析 1 启用 0 关闭
  200. *
  201. * @param steamflag 流分析 1 启用 0 关闭
  202. */
  203. public void setSteamflag(Integer steamflag) {
  204. this.steamflag = steamflag;
  205. }
  206. /**
  207. * 获取流分析类型 1 约束条件 2优化目标
  208. *
  209. * @return steamtype - 流分析类型 1 约束条件 2优化目标
  210. */
  211. public Integer getSteamtype() {
  212. return steamtype;
  213. }
  214. /**
  215. * 设置流分析类型 1 约束条件 2优化目标
  216. *
  217. * @param steamtype 流分析类型 1 约束条件 2优化目标
  218. */
  219. public void setSteamtype(Integer steamtype) {
  220. this.steamtype = steamtype;
  221. }
  222. }