1 3 package jodd.db.orm.test; 4 5 public class Girl { 6 7 public Girl() { 8 } 9 10 public Girl(int id, String name, String speciality) { 11 this.id = id; 12 this.name = name; 13 this.speciality = speciality; 14 } 15 16 public String speciality; 17 public int id; 18 public String name; 19 20 22 public String toString() { 23 return "Girl{" + 24 "id=" + id + 25 ", name='" + name + '\'' + 26 ", speciality='" + speciality + '\'' + 27 '}'; 28 } 29 } 30 | Popular Tags |