InvestigateUser.java 1.14 KB
package com.project.demo.domain;

/**
 * Created by bert on 2018/7/10.
 */
public class InvestigateUser {
    private Integer usersId;
    private Integer comInvestigationId;
    private String name;
    private String mobile;

    @Override
    public String toString() {
        return "InvestigateUser{" +
                "usersId=" + usersId +
                ", comInvestigationId=" + comInvestigationId +
                ", name='" + name + '\'' +
                ", mobile='" + mobile + '\'' +
                '}';
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getMobile() {
        return mobile;
    }

    public void setMobile(String mobile) {
        this.mobile = mobile;
    }

    public Integer getUsersId() {
        return usersId;
    }

    public void setUsersId(Integer usersId) {
        this.usersId = usersId;
    }

    public Integer getComInvestigationId() {
        return comInvestigationId;
    }

    public void setComInvestigationId(Integer comInvestigationId) {
        this.comInvestigationId = comInvestigationId;
    }
}