package org.javacore.param; /** * Created by bysocket on 16/7/18. */ public class Param { Integer id; String name; Integer age; String sex; Integer isBeautiful; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public Integer getAge() { return age; } public void setAge(Integer age) { this.age = age; } public String getSex() { return sex; } public void setSex(String sex) { this.sex = sex; } public Integer getIsBeautiful() { return isBeautiful; } public void setIsBeautiful(Integer isBeautiful) { this.isBeautiful = isBeautiful; } }