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

com.quhaodian.discover.storage.data.entity.BucketEntity Maven / Gradle / Ivy

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

import com.quhaodian.data.entity.AbstractEntity;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;


@Entity
@Table(name = "storage_bucket")
public class BucketEntity extends AbstractEntity {
  
  @Column(unique = true)
  private String name;
  
  private Long nums;
  
  private Long volume;
  
  public String getName() {
    return name;
  }
  
  public void setName(String name) {
    this.name = name;
  }
  
  public Long getNums() {
    return nums;
  }
  
  public void setNums(Long nums) {
    this.nums = nums;
  }
  
  public Long getVolume() {
    return volume;
  }
  
  public void setVolume(Long volume) {
    this.volume = volume;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy