123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- /**
- * 系统服务
- */
- 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 comid;//组件ID
- /**
- *组件ID
- */
- public void setComid(String comid) {
- this.comid=comid;
- }
- /**
- *组件ID
- */
- public String getComid() {
- return this.comid;
- }
- String comtype;//组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
- /**
- *组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
- */
- public void setComtype(String comtype) {
- this.comtype=comtype;
- }
- /**
- *组件类型 1-XFOIL 3-ADFLOW组件 5-TACS
- */
- public String getComtype() {
- return this.comtype;
- }
- 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;
- }
- }
|