All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.tangjiabao.halodb.core.bean.Entity Maven / Gradle / Ivy

Go to download

Orm whitch The highest development efficiency and Efficiency is the fastest

There is a newer version: 0.17
Show newest version
package cn.tangjiabao.halodb.core.bean;

import java.util.Map;

/**
 *  实体信息
 * @author [email protected]
 * @date 2015-6-14 下午12:44:06
 */
public class Entity {
	private long lastModified;
	private String entityName;
	private String tableName;
	private  String  idFieldName;
	private  String  idColumnName;
	private String idType;
	private Map fieldMap;
	private Map joinMap;
	private Integer idModel=-1;//默认为不自动
	public String getEntityName() {
		return entityName;
	}
	public void setEntityName(String entityName) {
		this.entityName = entityName;
	}
	public String getTableName() {
		return tableName;
	}
	public void setTableName(String tableName) {
		this.tableName = tableName;
	}
	public Map getFieldMap() {
		return fieldMap;
	}
	public void setFieldMap(Map fieldMap) {
		this.fieldMap = fieldMap;
	}

	public String getIdFieldName() {
		return idFieldName;
	}
	public void setIdFieldName(String idFieldName) {
		this.idFieldName = idFieldName;
	}
	public String getIdColumnName() {
		return idColumnName;
	}
	public void setIdColumnName(String idColumnName) {
		this.idColumnName = idColumnName;
	}
	public String getIdType() {
		return idType;
	}
	public void setIdType(String idType) {
		this.idType = idType;
	}
	public Integer getIdModel() {
		return idModel;
	}
	public void setIdModel(Integer idModel) {
		this.idModel = idModel;
	}
	public long getLastModified() {
		return lastModified;
	}
	public void setLastModified(long lastModified) {
		this.lastModified = lastModified;
	}
	public Map getJoinMap() {
		return joinMap;
	}
	public void setJoinMap(Map joinMap) {
		this.joinMap = joinMap;
	}


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy