/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package ibatis; /** * * @author lane */ public class Account { private int id; private String username; public void setId(int id) { this.id = id; } public int getId() { return this.id; } public void setUsername(String username) { this.username = username; } public String getUsername() { return this.username; } }