/** * 无锡发动机 */ 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; } String unitDef;//单位组默认值 /** *单位组默认值 */ public void setUnitDef(String unitDef) { this.unitDef=unitDef; } /** *单位组默认值 */ public String getUnitDef() { return this.unitDef; } }