/** * 系统服务 */ package com.miniframe.generate.comm.mdo; import com.miniframe.core.BaseMapModel; import java.io.Serializable; /** * cst参数添加修改 */ public class A_MDO0041 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 cstn;//cst阶数 /** *cst阶数 */ public void setCstn(String cstn) { this.cstn=cstn; } /** *cst阶数 */ public String getCstn() { return this.cstn; } String lowern1;//下表面类函数参数N1 /** *下表面类函数参数N1 */ public void setLowern1(String lowern1) { this.lowern1=lowern1; } /** *下表面类函数参数N1 */ public String getLowern1() { return this.lowern1; } String lowern2;//下表面类函数参数N2 /** *下表面类函数参数N2 */ public void setLowern2(String lowern2) { this.lowern2=lowern2; } /** *下表面类函数参数N2 */ public String getLowern2() { return this.lowern2; } String lowerb;//下表面CST参数 /** *下表面CST参数 */ public void setLowerb(String lowerb) { this.lowerb=lowerb; } /** *下表面CST参数 */ public String getLowerb() { return this.lowerb; } String uppern1;//上表面类函数参数N1 /** *上表面类函数参数N1 */ public void setUppern1(String uppern1) { this.uppern1=uppern1; } /** *上表面类函数参数N1 */ public String getUppern1() { return this.uppern1; } String uppern2;//上表面类函数参数N1 /** *上表面类函数参数N1 */ public void setUppern2(String uppern2) { this.uppern2=uppern2; } /** *上表面类函数参数N1 */ public String getUppern2() { return this.uppern2; } String upperb;//上表面CST参数 /** *上表面CST参数 */ public void setUpperb(String upperb) { this.upperb=upperb; } /** *上表面CST参数 */ public String getUpperb() { return this.upperb; } int checked;//是否选中1-选中 0-未选中 /** *是否选中1-选中 0-未选中 */ public void setChecked(int checked) { this.checked=checked; } /** *是否选中1-选中 0-未选中 */ public int getChecked() { return this.checked; } String wid;//流程id /** *流程id */ public void setWid(String wid) { this.wid=wid; } /** *流程id */ public String getWid() { return this.wid; } }