1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.mdo;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 流出修改设置求解组件到求解组件
- */
- public class A_MDO0074 extends BaseMapModel implements Serializable {
- private static final long serialVersionUID = -1463838678425832212L;
- String fcomid;//来源组件ID
- /**
- *来源组件ID
- */
- public void setFcomid(String fcomid) {
- this.fcomid=fcomid;
- }
- /**
- *来源组件ID
- */
- public String getFcomid() {
- return this.fcomid;
- }
- String fcomtype;//来源组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
- /**
- *来源组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
- */
- public void setFcomtype(String fcomtype) {
- this.fcomtype=fcomtype;
- }
- /**
- *来源组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
- */
- public String getFcomtype() {
- return this.fcomtype;
- }
- String paramstr;//参数ID-流类型1启用0关闭之间逗号分割 多条数据分号分隔
- /**
- *参数ID-流类型1启用0关闭之间逗号分割 多条数据分号分隔
- */
- public void setParamstr(String paramstr) {
- this.paramstr=paramstr;
- }
- /**
- *参数ID-流类型1启用0关闭之间逗号分割 多条数据分号分隔
- */
- public String getParamstr() {
- return this.paramstr;
- }
- String tcomid;//目标组件ID
- /**
- *目标组件ID
- */
- public void setTcomid(String tcomid) {
- this.tcomid=tcomid;
- }
- /**
- *目标组件ID
- */
- public String getTcomid() {
- return this.tcomid;
- }
- String tcomtype;//目标组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
- /**
- *目标组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
- */
- public void setTcomtype(String tcomtype) {
- this.tcomtype=tcomtype;
- }
- /**
- *目标组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
- */
- public String getTcomtype() {
- return this.tcomtype;
- }
- }
|