| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 | /** * 无锡发动机 */package com.miniframe.generate.comm.es;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * 项目组件属性值数据查询->表头 */public class D_ES0010_HEADERS_RECODE extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	String cdId;//数据id	/**	 *数据id	 */	public void setCdId(String cdId) {		this.cdId=cdId;	}	/**	 *数据id	 */	public String getCdId() {		return this.cdId;	}	String cdvId;//数据属性id	/**	 *数据属性id	 */	public void setCdvId(String cdvId) {		this.cdvId=cdvId;	}	/**	 *数据属性id	 */	public String getCdvId() {		return this.cdvId;	}	String name;//数据属性名称	/**	 *数据属性名称	 */	public void setName(String name) {		this.name=name;	}	/**	 *数据属性名称	 */	public String getName() {		return this.name;	}	String code;//数据属性Code	/**	 *数据属性Code	 */	public void setCode(String code) {		this.code=code;	}	/**	 *数据属性Code	 */	public String getCode() {		return this.code;	}	int dataType;//值数据类型	/**	 *值数据类型	 */	public void setDataType(int dataType) {		this.dataType=dataType;	}	/**	 *值数据类型	 */	public int getDataType() {		return this.dataType;	}	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;	}	String unitType;//单位类型	/**	 *单位类型	 */	public void setUnitType(String unitType) {		this.unitType=unitType;	}	/**	 *单位类型	 */	public String getUnitType() {		return this.unitType;	}}
 |