Advertisement
Guest User

Untitled

a guest
Nov 8th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.87 KB | None | 0 0
  1. package dongseo;
  2.  
  3. import java.util.Date;
  4.  
  5. public class Info {
  6.     protected int       no;
  7.     protected String    name;
  8.     protected String    email;
  9.     protected String    password;
  10.     protected Date      createDate;
  11.    
  12.     public int getNo() {
  13.         return no;
  14.     }
  15.     public Info setNo(int no) {
  16.         this.no = no;
  17.         return this;
  18.     }
  19.     public String getName() {
  20.         return name;
  21.     }
  22.     public Info setName(String name) {
  23.         this.name = name;
  24.         return this;
  25.     }
  26.     public String getEmail() {
  27.         return email;
  28.     }
  29.     public Info setEmail(String email) {
  30.         this.email = email;
  31.         return this;
  32.     }
  33.     public String getPassword() {
  34.         return password;
  35.     }
  36.     public Info setPassword(String password) {
  37.         this.password = password;
  38.         return this;
  39.     }
  40.     public Date getCreateDate() {
  41.         return createDate;
  42.     }
  43.     public Info setCreateDate(Date createDate) {
  44.         this.createDate = createDate;
  45.         return this;
  46.     }
  47.    
  48.    
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement