package com.geo.smallcredit.vo; public class MyLetter { private String name; private int img; private String letterEdu; private String keYongEdu; private String letterPrice; private String keYongPrice; public MyLetter(String name, int img, String letterEdu, String keYongEdu, String letterPrice, String keYongPrice) { super(); this.name = name; this.img = img; this.letterEdu = letterEdu; this.keYongEdu = keYongEdu; this.letterPrice = letterPrice; this.keYongPrice = keYongPrice; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getImg() { return img; } public void setImg(int img) { this.img = img; } public String getLetterEdu() { return letterEdu; } public void setLetterEdu(String letterEdu) { this.letterEdu = letterEdu; } public String getKeYongEdu() { return keYongEdu; } public void setKeYongEdu(String keYongEdu) { this.keYongEdu = keYongEdu; } public String getLetterPrice() { return letterPrice; } public void setLetterPrice(String letterPrice) { this.letterPrice = letterPrice; } public String getKeYongPrice() { return keYongPrice; } public void setKeYongPrice(String keYongPrice) { this.keYongPrice = keYongPrice; } }