| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 | /** * 系统服务 */package com.miniframe.generate.comm.mdo;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * cst参数查询 */public class D_MDO0040 extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	String cstid;//ID	/**	 *ID	 */	public void setCstid(String cstid) {		this.cstid=cstid;	}	/**	 *ID	 */	public String getCstid() {		return this.cstid;	}	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;	}}
 |