public class Person {
    private Long id;
    private String userName;
    private Integer age;
    private String sex;

    public Person() {}

    public Person(Long id, String userName, Integer age, String sex) {
        this.id = id;
        this.userName = userName;
        this.age = age;
        this.sex = sex;
    }

    // getters and setters
    public Long getId() {
        return id;
    }

    public void setId(Long id) {
        this.id = id;
    }

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    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;
    }
}

原文地址: http://www.cveoy.top/t/topic/bGmE 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录