12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * 系统服务
- */
- 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;
- }
- }
|