| 12345678910111213141516171819202122232425 | /** * 无锡发动机 */package com.miniframe.generate.comm.es;import com.miniframe.core.BaseMapModel;import java.io.Serializable;/** * 基础字典查询 */public class A_BES001 extends BaseMapModel implements Serializable {	private static final long serialVersionUID = -1463838678425832212L;	String type;//类型	/**	 *类型	 */	public void setType(String type) {		this.type=type;	}	/**	 *类型	 */	public String getType() {		return this.type;	}}
 |