Skip to content

Instantly share code, notes, and snippets.

@rohman
Created April 9, 2013 23:28
Show Gist options
  • Save rohman/5350303 to your computer and use it in GitHub Desktop.
Save rohman/5350303 to your computer and use it in GitHub Desktop.
Ulang Spring Mvc
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package id.web.rohman.ulangspring.model;
/**
*
* @author syahril
*/
public class Tamu {
private int id;
private String name;
private String address;
private String email;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment