EventExtendFindRequest.java 2.08 KB
/*
 * @(#)EventExtendFindRequest.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.railway.request;

import com.xiniunet.framework.base.BaseFindRequest;

import java.util.Date;

/**
 * 查询事件扩展表的请求
 *
 * @author xteam.developer
 */
public class EventExtendFindRequest extends BaseFindRequest {
    /**
     * 是否已通知
     */
    private Boolean isNoticed;
    /**
     * 通知时间开始
     */
    private Date noticeTimeFrom;
    /**
     * 通知时间截止
     */
    private Date noticeTimeTo;
    /**
     * 是否已催办
     */
    private Boolean isHurried;
    /**
     * 催办时间开始
     */
    private Date hurryTimeFrom;
    /**
     * 催办时间截止
     */
    private Date hurryTimeTo;

    public Boolean getIsNoticed() {
        return isNoticed;
    }

    public void setIsNoticed(Boolean isNoticed) {
        this.isNoticed = isNoticed;
    }

    public Date getNoticeTimeFrom() {
        return noticeTimeFrom;
    }

    public void setNoticeTimeFrom(Date noticeTimeFrom) {
        this.noticeTimeFrom = noticeTimeFrom;
    }

    public Date getNoticeTimeTo() {
        return noticeTimeTo;
    }

    public void setNoticeTimeTo(Date noticeTimeTo) {
        this.noticeTimeTo = noticeTimeTo;
    }

    public Boolean getIsHurried() {
        return isHurried;
    }

    public void setIsHurried(Boolean isHurried) {
        this.isHurried = isHurried;
    }

    public Date getHurryTimeFrom() {
        return hurryTimeFrom;
    }

    public void setHurryTimeFrom(Date hurryTimeFrom) {
        this.hurryTimeFrom = hurryTimeFrom;
    }

    public Date getHurryTimeTo() {
        return hurryTimeTo;
    }

    public void setHurryTimeTo(Date hurryTimeTo) {
        this.hurryTimeTo = hurryTimeTo;
    }
}