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

com.clickntap.tool.bean.BeanId Maven / Gradle / Ivy

The newest version!
package com.clickntap.tool.bean;

import java.io.Serializable;

public class BeanId implements Serializable {
  private static final long serialVersionUID = 1L;

  private Number id;

  public BeanId() {
  }

  public BeanId(Number id) {
    setId(id);
  }

  public Number getId() {
    return id;
  }

  public void setId(Number id) {
    this.id = id;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy