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

cn.sylinx.hbatis.ext.model.BaseModel Maven / Gradle / Ivy

The newest version!
package cn.sylinx.hbatis.ext.model;

import java.util.Date;

import cn.sylinx.hbatis.db.mapper.anno.ColumnDesc;

/**
 * basemodel
 * 
 * @author hanqz
 *
 */
@SuppressWarnings("serial")
public class BaseModel extends GenericModel {

	/**
	 * 创建时间
	 */
	@ColumnDesc(desc = "创建时间")
	private Date gmtCreate;

	/**
	 * 修改时间
	 */
	@ColumnDesc(desc = "修改时间")
	private Date gmtModify;

	public Date getGmtCreate() {
		return gmtCreate;
	}

	public void setGmtCreate(Date gmtCreate) {
		this.gmtCreate = gmtCreate;
	}

	public Date getGmtModify() {
		return gmtModify;
	}

	public void setGmtModify(Date gmtModify) {
		this.gmtModify = gmtModify;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy