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

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

There is a newer version: 1.8.7
Show newest version
package com.quhaodian.data.entity;

import javax.persistence.MappedSuperclass;

/**
 * 树形结构版本同步实体
 *
 * @author aniaojian
 */
@MappedSuperclass
public abstract class VersionCatalogEntity extends CatalogEntity {
  
  /**
   * 版本号
   */
  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