| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 | 
							- package com.miniframe.model.mdo;
 
- import com.miniframe.system.MiniserviceBaseModel;
 
- import java.io.Serializable;
 
- import javax.persistence.*;
 
- @Table(name = "mdo_pro_inout_para")
 
- public class MdoProInoutPara extends MiniserviceBaseModel implements Serializable {
 
-     @Id
 
-     private String id;
 
-     /**
 
-      * 项目ID
 
-      */
 
-     private String pid;
 
-     /**
 
-      * 组件ID
 
-      */
 
-     private String fatherid;
 
-     /**
 
-      * 名称
 
-      */
 
-     private String name;
 
-     /**
 
-      * 编号
 
-      */
 
-     private String code;
 
-     /**
 
-      * 1 启用 0 不启用
 
-      */
 
-     private Integer flag;
 
-     /**
 
-      * 值
 
-      */
 
-     private String value;
 
-     /**
 
-      * 1 来流参数 2 分析参数
 
-      */
 
-     private Integer type;
 
-     /**
 
-      * 组件类型
 
-      */
 
-     private Integer comtype;
 
-     /**
 
-      * 流分析 1 启用 0 关闭
 
-      */
 
-     private Integer steamflag;
 
-     /**
 
-      * 流分析类型 1 约束条件 2优化目标
 
-      */
 
-     private Integer steamtype;
 
-     private static final long serialVersionUID = 1L;
 
-     /**
 
-      * @return id
 
-      */
 
-     public String getId() {
 
-         return id;
 
-     }
 
-     /**
 
-      * @param id
 
-      */
 
-     public void setId(String id) {
 
-         this.id = id == null ? null : id.trim();
 
-     }
 
-     /**
 
-      * 获取项目ID
 
-      *
 
-      * @return pid - 项目ID
 
-      */
 
-     public String getPid() {
 
-         return pid;
 
-     }
 
-     /**
 
-      * 设置项目ID
 
-      *
 
-      * @param pid 项目ID
 
-      */
 
-     public void setPid(String pid) {
 
-         this.pid = pid == null ? null : pid.trim();
 
-     }
 
-     /**
 
-      * 获取组件ID
 
-      *
 
-      * @return fatherid - 组件ID
 
-      */
 
-     public String getFatherid() {
 
-         return fatherid;
 
-     }
 
-     /**
 
-      * 设置组件ID
 
-      *
 
-      * @param fatherid 组件ID
 
-      */
 
-     public void setFatherid(String fatherid) {
 
-         this.fatherid = fatherid == null ? null : fatherid.trim();
 
-     }
 
-     /**
 
-      * 获取名称
 
-      *
 
-      * @return name - 名称
 
-      */
 
-     public String getName() {
 
-         return name;
 
-     }
 
-     /**
 
-      * 设置名称
 
-      *
 
-      * @param name 名称
 
-      */
 
-     public void setName(String name) {
 
-         this.name = name == null ? null : name.trim();
 
-     }
 
-     /**
 
-      * 获取编号
 
-      *
 
-      * @return code - 编号
 
-      */
 
-     public String getCode() {
 
-         return code;
 
-     }
 
-     /**
 
-      * 设置编号
 
-      *
 
-      * @param code 编号
 
-      */
 
-     public void setCode(String code) {
 
-         this.code = code == null ? null : code.trim();
 
-     }
 
-     /**
 
-      * 获取1 启用 0 不启用
 
-      *
 
-      * @return flag - 1 启用 0 不启用
 
-      */
 
-     public Integer getFlag() {
 
-         return flag;
 
-     }
 
-     /**
 
-      * 设置1 启用 0 不启用
 
-      *
 
-      * @param flag 1 启用 0 不启用
 
-      */
 
-     public void setFlag(Integer flag) {
 
-         this.flag = flag;
 
-     }
 
-     /**
 
-      * 获取值
 
-      *
 
-      * @return value - 值
 
-      */
 
-     public String getValue() {
 
-         return value;
 
-     }
 
-     /**
 
-      * 设置值
 
-      *
 
-      * @param value 值
 
-      */
 
-     public void setValue(String value) {
 
-         this.value = value == null ? null : value.trim();
 
-     }
 
-     /**
 
-      * 获取1 来流参数 2 分析参数
 
-      *
 
-      * @return type - 1 来流参数 2 分析参数
 
-      */
 
-     public Integer getType() {
 
-         return type;
 
-     }
 
-     /**
 
-      * 设置1 来流参数 2 分析参数
 
-      *
 
-      * @param type 1 来流参数 2 分析参数
 
-      */
 
-     public void setType(Integer type) {
 
-         this.type = type;
 
-     }
 
-     /**
 
-      * 获取组件类型
 
-      *
 
-      * @return comtype - 组件类型
 
-      */
 
-     public Integer getComtype() {
 
-         return comtype;
 
-     }
 
-     /**
 
-      * 设置组件类型
 
-      *
 
-      * @param comtype 组件类型
 
-      */
 
-     public void setComtype(Integer comtype) {
 
-         this.comtype = comtype;
 
-     }
 
-     /**
 
-      * 获取流分析 1 启用 0 关闭
 
-      *
 
-      * @return steamflag - 流分析 1 启用 0 关闭
 
-      */
 
-     public Integer getSteamflag() {
 
-         return steamflag;
 
-     }
 
-     /**
 
-      * 设置流分析 1 启用 0 关闭
 
-      *
 
-      * @param steamflag 流分析 1 启用 0 关闭
 
-      */
 
-     public void setSteamflag(Integer steamflag) {
 
-         this.steamflag = steamflag;
 
-     }
 
-     /**
 
-      * 获取流分析类型 1 约束条件 2优化目标
 
-      *
 
-      * @return steamtype - 流分析类型 1 约束条件 2优化目标
 
-      */
 
-     public Integer getSteamtype() {
 
-         return steamtype;
 
-     }
 
-     /**
 
-      * 设置流分析类型 1 约束条件 2优化目标
 
-      *
 
-      * @param steamtype 流分析类型 1 约束条件 2优化目标
 
-      */
 
-     public void setSteamtype(Integer steamtype) {
 
-         this.steamtype = steamtype;
 
-     }
 
- }
 
 
  |