| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 | /** * 无锡发动机 */package com.miniframe.generate.comm.es;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * 项目模拟数据组件属性查询->数据 */public class D_ES0012_ROWS_RECODE extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	String pcaId;//项目组件属性ID	/**	 *项目组件属性ID	 */	public void setPcaId(String pcaId) {		this.pcaId=pcaId;	}	/**	 *项目组件属性ID	 */	public String getPcaId() {		return this.pcaId;	}	String value;//数值	/**	 *数值	 */	public void setValue(String value) {		this.value=value;	}	/**	 *数值	 */	public String getValue() {		return this.value;	}	String unit;//单位	/**	 *单位	 */	public void setUnit(String unit) {		this.unit=unit;	}	/**	 *单位	 */	public String getUnit() {		return this.unit;	}	String unitType;//单位类型	/**	 *单位类型	 */	public void setUnitType(String unitType) {		this.unitType=unitType;	}	/**	 *单位类型	 */	public String getUnitType() {		return this.unitType;	}	String name;//属性名称	/**	 *属性名称	 */	public void setName(String name) {		this.name=name;	}	/**	 *属性名称	 */	public String getName() {		return this.name;	}	String code;//属性编码	/**	 *属性编码	 */	public void setCode(String code) {		this.code=code;	}	/**	 *属性编码	 */	public String getCode() {		return this.code;	}	int valueType;//值类型	/**	 *值类型	 */	public void setValueType(int valueType) {		this.valueType=valueType;	}	/**	 *值类型	 */	public int getValueType() {		return this.valueType;	}	String valueDef;//默认值	/**	 *默认值	 */	public void setValueDef(String valueDef) {		this.valueDef=valueDef;	}	/**	 *默认值	 */	public String getValueDef() {		return this.valueDef;	}	int dataType;//值数据类型	/**	 *值数据类型	 */	public void setDataType(int dataType) {		this.dataType=dataType;	}	/**	 *值数据类型	 */	public int getDataType() {		return this.dataType;	}}
 |