NewBaseEntity.java 1.23 KB
package com.bjivt.entity;

 
import java.io.Serializable;
import java.util.Date;


public class NewBaseEntity implements Serializable {
	/**
	 * 实体基类
	 */
	private static final long serialVersionUID = 1L;

	protected String  	id = null;           	//主键
	protected Date    	createDate = null;   	//创建日期
	protected String    createTime = null; 		//格式: 2001-01-01 01:01:01
	protected String    operatorType = null; 	//创建人class对应的table名,例如"jm_user"
	protected String 	operatorId=null;   		//创建人ID
	
	//--------------------------------------
	

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	public Date getCreateDate() {
		return createDate;
	}

	public void setCreateDate(Date createDate) {
		this.createDate = createDate;
	}

	public String getCreateTime() {
		return createTime;
	}

	public void setCreateTime(String createTime) {
		this.createTime = createTime;
	}

	public String getOperatorType() {
		return operatorType;
	}

	public void setOperatorType(String operatorType) {
		this.operatorType = operatorType;
	}

	public String getOperatorId() {
		return operatorId;
	}

	public void setOperatorId(String operatorId) {
		this.operatorId = operatorId;
	}

}