UserIdGetByAccountResponse.java 657 Bytes
package com.xiniunet.open.api.response;


import com.xiniunet.framework.base.BaseResponse;

/**
 * Created by xn on 15/10/13.
 */
public class UserIdGetByAccountResponse extends BaseResponse {
    private static final long serialVersionUID = 1L;

    /**
     * 用户Id
     */
    private Long userId;

    /**
     * 承租人Id
     */
    private Long tenantId;

    public Long getUserId() {
        return userId;
    }

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

    public Long getTenantId() {
        return tenantId;
    }

    public void setTenantId(Long tenantId) {
        this.tenantId = tenantId;
    }
}