UserBindEmployeeRequest.java 1.53 KB
package com.xiniunet.my.system.request;

import com.xiniunet.framework.base.BaseRequest;

/**
 * ***************************************************************
 * <p/>
 * <pre>
 * Copyright (c) 2014 –苏州犀牛网络科技有限公司
 *  Title: com.xiniunet.erp.system.request
 *  Description:
 * ***************************************************************
 *  2/2 0002  V1.0  xiniu    New Files for com.xiniunet.erp.system.request
 * </pre>
 */
public class UserBindEmployeeRequest extends BaseRequest {
    private Long employeeId;
    private Long userId;
    private String account;
    private String name;
    private String email;
    private String mobilePhone;
    public Long getEmployeeId() {
        return employeeId;
    }

    public void setEmployeeId(Long employeeId) {
        this.employeeId = employeeId;
    }

    public Long getUserId() {
        return userId;
    }

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

    public String getAccount() {
        return account;
    }

    public void setAccount(String account) {
        this.account = account;
    }

    public String getName() {
        return name;
    }

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

    public String getEmail() {
        return email;
    }

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

    public String getMobilePhone() {
        return mobilePhone;
    }

    public void setMobilePhone(String mobilePhone) {
        this.mobilePhone = mobilePhone;
    }
}