UserIdGetByAccountResponse.java
657 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
    }
}