User.java 1.41 KB
/*
 * @(#)User.java
 *
 * Copyright (c) 2014-2017  xiniunet 版权所有
 * xiniunet. All rights reserved.
 *
 * This software is the confidential and proprietary
 * information of  xiniunet.
 * ("Confidential Information"). You shall not disclose
 * such Confidential Information and shall use it only
 * in accordance with the terms of the contract agreement
 * you entered into with xiniunet.
 */
package com.xiniunet.railway.domain;

import com.xiniunet.framework.base.BaseDomain;
import java.util.Date;

/**
 * 用户实体对象.
 * @author xiniunet
 */
public class User extends BaseDomain {

    /**
     * 主键
     */
    private Long id;

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

    /**
     * 是否是党员
     */
    private Boolean isPartyMember;

    /**
     * 组织ID
     */
    private Long partyId;

    public Long getId() {
        return id;
    }

    public void setId(Long  id) {
        this.id = id;
    }

    public Long getTenantId() {
        return tenantId;
    }

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

    public Boolean getIsPartyMember() {
        return isPartyMember;
    }

    public void setIsPartyMember(Boolean  isPartyMember) {
        this.isPartyMember = isPartyMember;
    }

    public Long getPartyId() {
        return partyId;
    }

    public void setPartyId(Long  partyId) {
        this.partyId = partyId;
    }

}