/** * 系统服务 */ package com.miniframe.generate.comm.mdo; import com.miniframe.core.BaseMapModel; import java.io.Serializable; import java.util.*; /** * xfoil参数查询 */ public class D_MDO0046 extends BaseMapModel implements Serializable { private static final long serialVersionUID = -1463838678425832212L; String pid;//项目ID /** *项目ID */ public void setPid(String pid) { this.pid=pid; } /** *项目ID */ public String getPid() { return this.pid; } String xfid;//xfoil参数ID /** *xfoil参数ID */ public void setXfid(String xfid) { this.xfid=xfid; } /** *xfoil参数ID */ public String getXfid() { return this.xfid; } int analyzed;//计算完成 1是 0否 /** *计算完成 1是 0否 */ public void setAnalyzed(int analyzed) { this.analyzed=analyzed; } /** *计算完成 1是 0否 */ public int getAnalyzed() { return this.analyzed; } String pacc;//力和力矩文件名称 /** *力和力矩文件名称 */ public void setPacc(String pacc) { this.pacc=pacc; } /** *力和力矩文件名称 */ public String getPacc() { return this.pacc; } String cpwr;//压力分布文件名称 /** *压力分布文件名称 */ public void setCpwr(String cpwr) { this.cpwr=cpwr; } /** *压力分布文件名称 */ public String getCpwr() { return this.cpwr; } String yxzb;//翼型坐标文件名称 /** *翼型坐标文件名称 */ public void setYxzb(String yxzb) { this.yxzb=yxzb; } /** *翼型坐标文件名称 */ public String getYxzb() { return this.yxzb; } String iter;//迭代次数 /** *迭代次数 */ public void setIter(String iter) { this.iter=iter; } /** *迭代次数 */ public String getIter() { return this.iter; } String ppar;//表面求解点个数 /** *表面求解点个数 */ public void setPpar(String ppar) { this.ppar=ppar; } /** *表面求解点个数 */ public String getPpar() { return this.ppar; } int checked;//1- 选中 0 未选中 /** *1- 选中 0 未选中 */ public void setChecked(int checked) { this.checked=checked; } /** *1- 选中 0 未选中 */ public int getChecked() { return this.checked; } List inParams;//来流参数数据 /** *来流参数数据 */ public void setInParams(List inParams) { this.inParams=inParams; } /** *来流参数数据 */ public List getInParams() { return this.inParams; } List outParams;//分析参数数据 /** *分析参数数据 */ public void setOutParams(List outParams) { this.outParams=outParams; } /** *分析参数数据 */ public List getOutParams() { return this.outParams; } String wid;//流程id /** *流程id */ public void setWid(String wid) { this.wid=wid; } /** *流程id */ public String getWid() { return this.wid; } }