1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.system;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- /**
- * 获取每步图片
- */
- public class A_AFT003 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 solverConfigId;//求解配置Id
- /**
- *求解配置Id
- */
- public void setSolverConfigId(String solverConfigId) {
- this.solverConfigId=solverConfigId;
- }
- /**
- *求解配置Id
- */
- public String getSolverConfigId() {
- return this.solverConfigId;
- }
- String animationType;//渲染类型
- /**
- *渲染类型
- */
- public void setAnimationType(String animationType) {
- this.animationType=animationType;
- }
- /**
- *渲染类型
- */
- public String getAnimationType() {
- return this.animationType;
- }
- String step;//步数
- /**
- *步数
- */
- public void setStep(String step) {
- this.step=step;
- }
- /**
- *步数
- */
- public String getStep() {
- return this.step;
- }
- String isVolume;//物面流场1物面2流场
- /**
- *物面流场1物面2流场
- */
- public void setIsVolume(String isVolume) {
- this.isVolume=isVolume;
- }
- /**
- *物面流场1物面2流场
- */
- public String getIsVolume() {
- return this.isVolume;
- }
- }
|