| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | /** * 无锡发动机 */package com.miniframe.generate.comm.es;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * 项目添加组件 */public class D_ES0004 extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	String pcId;//项目组件Id	/**	 *项目组件Id	 */	public void setPcId(String pcId) {		this.pcId=pcId;	}	/**	 *项目组件Id	 */	public String getPcId() {		return this.pcId;	}	int ser;//序号	/**	 *序号	 */	public void setSer(int ser) {		this.ser=ser;	}	/**	 *序号	 */	public int getSer() {		return this.ser;	}	String idCode;//组件id编码	/**	 *组件id编码	 */	public void setIdCode(String idCode) {		this.idCode=idCode;	}	/**	 *组件id编码	 */	public String getIdCode() {		return this.idCode;	}}
 |