123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.mdo;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * FSI参数添加修改
- */
- public class A_MDO0070 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 wid;//流程id
- /**
- *流程id
- */
- public void setWid(String wid) {
- this.wid=wid;
- }
- /**
- *流程id
- */
- public String getWid() {
- return this.wid;
- }
- int stepmax;//最大耦合迭代步
- /**
- *最大耦合迭代步
- */
- public void setStepmax(int stepmax) {
- this.stepmax=stepmax;
- }
- /**
- *最大耦合迭代步
- */
- public int getStepmax() {
- return this.stepmax;
- }
- int outputsteps;//输出每轮迭代结果
- /**
- *输出每轮迭代结果
- */
- public void setOutputsteps(int outputsteps) {
- this.outputsteps=outputsteps;
- }
- /**
- *输出每轮迭代结果
- */
- public int getOutputsteps() {
- return this.outputsteps;
- }
- String method;//数据插值方法
- /**
- *数据插值方法
- */
- public void setMethod(String method) {
- this.method=method;
- }
- /**
- *数据插值方法
- */
- public String getMethod() {
- return this.method;
- }
- String aerogroup;//气动耦合区域
- /**
- *气动耦合区域
- */
- public void setAerogroup(String aerogroup) {
- this.aerogroup=aerogroup;
- }
- /**
- *气动耦合区域
- */
- public String getAerogroup() {
- return this.aerogroup;
- }
- int skin;//结构耦合区域skin 1 启用 0 不启用
- /**
- *结构耦合区域skin 1 启用 0 不启用
- */
- public void setSkin(int skin) {
- this.skin=skin;
- }
- /**
- *结构耦合区域skin 1 启用 0 不启用
- */
- public int getSkin() {
- return this.skin;
- }
- int spar;//结构耦合区域spar 1 启用 0 不启用
- /**
- *结构耦合区域spar 1 启用 0 不启用
- */
- public void setSpar(int spar) {
- this.spar=spar;
- }
- /**
- *结构耦合区域spar 1 启用 0 不启用
- */
- public int getSpar() {
- return this.spar;
- }
- }
|