12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- /**
- * 系统服务
- */
- package com.miniframe.generate.comm.mdo;
- import com.miniframe.core.BaseMapModel;
- import java.io.Serializable;
- import java.util.*;
- /**
- * MatchFuc参数查询
- */
- public class D_MDO0063 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 mfcid;//MatchFuc参数ID
- /**
- *MatchFuc参数ID
- */
- public void setMfcid(String mfcid) {
- this.mfcid=mfcid;
- }
- /**
- *MatchFuc参数ID
- */
- public String getMfcid() {
- return this.mfcid;
- }
- String equation;//python脚本
- /**
- *python脚本
- */
- public void setEquation(String equation) {
- this.equation=equation;
- }
- /**
- *python脚本
- */
- public String getEquation() {
- return this.equation;
- }
- String wid;//流程id
- /**
- *流程id
- */
- public void setWid(String wid) {
- this.wid=wid;
- }
- /**
- *流程id
- */
- public String getWid() {
- return this.wid;
- }
- List <D_MDO0063_INPARAMS_RECODE> inParams;//自变量
- /**
- *自变量
- */
- public void setInParams(List <D_MDO0063_INPARAMS_RECODE> inParams) {
- this.inParams=inParams;
- }
- /**
- *自变量
- */
- public List <D_MDO0063_INPARAMS_RECODE> getInParams() {
- return this.inParams;
- }
- List <D_MDO0063_OUTPARAMS_RECODE> outParams;//因变量
- /**
- *因变量
- */
- public void setOutParams(List <D_MDO0063_OUTPARAMS_RECODE> outParams) {
- this.outParams=outParams;
- }
- /**
- *因变量
- */
- public List <D_MDO0063_OUTPARAMS_RECODE> getOutParams() {
- return this.outParams;
- }
- }
|