All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.asens.entity.CountUser Maven / Gradle / Ivy

package cn.asens.entity;

/**
 * @author Asens
 */

public class CountUser {
    private Integer userId;
    private String phone;
    private String email;
    private String education;
    private Integer gender;
    private String logo;

    public Integer getUserId() {
        return userId;
    }

    public void setUserId(Integer userId) {
        this.userId = userId;
    }

    public String getPhone() {
        return phone;
    }

    public void setPhone(String phone) {
        this.phone = phone;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public String getEducation() {
        return education;
    }

    public void setEducation(String education) {
        this.education = education;
    }

    public Integer getGender() {
        return gender;
    }

    public void setGender(Integer gender) {
        this.gender = gender;
    }

    public String getLogo() {
        return logo;
    }

    public void setLogo(String logo) {
        this.logo = logo;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy