NoticePersonPO.java 4.79 KB
/*
 * @(#)NoticePersonPO.java
 *
 * Copyright (c) 2014-2020  xteam.group 版权所有
 * xteam. All rights reserved.
 *
 * This software is the confidential and proprietary
 * information of  xteam.
 * ("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 xteam.
 */
package com.xiniunet.service.railway.po;

import com.xiniunet.framework.base.BasePO;

/**
 * 通知人员的数据库模型
 *
 * @author xteam.developer
 */
@SuppressWarnings("unused")
public class NoticePersonPO extends BasePO {
    /**
     * 主键
     */
    private Long id;
    /**
     * 承租人ID
     * 用于逻辑区隔承租人数据记录
     */
    private Long tenantId;
    /**
     * 类型
     */
    private String type;
    /**
     * 通知对象1类型
     */
    private String object1Type;
    /**
     * 通知对象1ID
     */
    private String object1Id;
    /**
     * 通知对象1名称
     */
    private String object1Name;
    /**
     * 通知对象2类型
     */
    private String object2Type;
    /**
     * 通知对象2ID
     */
    private String object2Id;
    /**
     * 通知对象2名称
     */
    private String object2Name;
    /**
     * 通知对象3类型
     */
    private String object3Type;
    /**
     * 通知对象3ID
     */
    private String object3Id;
    /**
     * 通知对象3名称
     */
    private String object3Name;
    /**
     * 用户ID
     */
    private Long userId;
    /**
     * 用户姓名
     */
    private String userName;
    /**
     * 用户邮箱
     */
    private String userEmail;
    /**
     * 用户手机
     */
    private String userMobile;
    /**
     * 是否有效
     */
    private Boolean isActive;
    /**
     * 备注说明
     */
    private String remark;

    private String roleCode;

    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 String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getObject1Type() {
        return object1Type;
    }

    public void setObject1Type(String object1Type) {
        this.object1Type = object1Type;
    }

    public String getObject1Id() {
        return object1Id;
    }

    public void setObject1Id(String object1Id) {
        this.object1Id = object1Id;
    }

    public String getObject1Name() {
        return object1Name;
    }

    public void setObject1Name(String object1Name) {
        this.object1Name = object1Name;
    }

    public String getObject2Type() {
        return object2Type;
    }

    public void setObject2Type(String object2Type) {
        this.object2Type = object2Type;
    }

    public String getObject2Id() {
        return object2Id;
    }

    public void setObject2Id(String object2Id) {
        this.object2Id = object2Id;
    }

    public String getObject2Name() {
        return object2Name;
    }

    public void setObject2Name(String object2Name) {
        this.object2Name = object2Name;
    }

    public String getObject3Type() {
        return object3Type;
    }

    public void setObject3Type(String object3Type) {
        this.object3Type = object3Type;
    }

    public String getObject3Id() {
        return object3Id;
    }

    public void setObject3Id(String object3Id) {
        this.object3Id = object3Id;
    }

    public String getObject3Name() {
        return object3Name;
    }

    public void setObject3Name(String object3Name) {
        this.object3Name = object3Name;
    }

    public Long getUserId() {
        return userId;
    }

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

    public String getUserName() {
        return userName;
    }

    public void setUserName(String userName) {
        this.userName = userName;
    }

    public String getUserEmail() {
        return userEmail;
    }

    public void setUserEmail(String userEmail) {
        this.userEmail = userEmail;
    }

    public String getUserMobile() {
        return userMobile;
    }

    public void setUserMobile(String userMobile) {
        this.userMobile = userMobile;
    }

    public Boolean getIsActive() {
        return isActive;
    }

    public void setIsActive(Boolean isActive) {
        this.isActive = isActive;
    }

    public String getRemark() {
        return remark;
    }

    public void setRemark(String remark) {
        this.remark = remark;
    }

    public String getRoleCode() {
        return this.roleCode;
    }

    public void setRoleCode(String roleCode) {
        this.roleCode = roleCode;
    }
}