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

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

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

import com.quhaodian.data.enums.StoreState;
import javax.persistence.MappedSuperclass;

/**
 * 带有存储状态的实体.
 *
 * @author ada
 */
@MappedSuperclass
public class BaseStateEntity extends BaseEntity {

  /**
   * 数据存储状态.
   */
  private StoreState storeState;
  
  public StoreState getStoreState() {
    return storeState;
  }
  
  public void setStoreState(StoreState storeState) {
    this.storeState = storeState;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy