com.clickntap.tool.bean.BeanId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Stripecube Show documentation
Show all versions of Stripecube Show documentation
Stripecube is an open source Java framework for Web Applications
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;
}
}