public class ProfileOptionDTO implements Serializable{ private int id; //选项ID private String value; //选项值 public int getId(){ return id; } public void setId(int id){ this.id = id; } public String getValue(){ return value; } public void setValue(String value){ this.value = value; } }