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

com.quhaodian.data.entity.VersionEntity Maven / Gradle / Ivy

The newest version!
package com.quhaodian.data.entity;

import javax.persistence.MappedSuperclass;

/**
 * 版本同步实体
 * 
 * @author aniaojian
 *
 */
@MappedSuperclass
public class VersionEntity extends AbstractEntity {

	private Long versionnum;

	/**
	 * 状态 1 为增加 2为更新 3为删除
	 */
	private Integer state;

	public Long getVersionnum() {
		return versionnum;
	}

	public void setVersionnum(Long versionnum) {
		this.versionnum = versionnum;
	}

	public Integer getState() {
		return state;
	}

	public void setState(Integer state) {
		this.state = state;
	}

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy