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 click_framework Show documentation
Show all versions of click_framework Show documentation
Java Framework based on Spring Framework, Freemarker and Simplicity
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;
}
}