PmSchedule.java

/*
 *        @ Copyright 2001 FA Software;
 *        All right reserved. No part of this program may be reproduced or
 *        transmitted in any form or by any means, electronic or
 *        mechanical, including photocopying, recording, or by any
 *        information storage or retrieval system without written
 *        permission from FA Software, except for inclusion of brief
 *        quotations in a review.
 */
package com.mycim.valueobject.ems;

import java.io.Serializable;

public class PmSchedule implements Serializable {

    // --------------------------------------------------------- Instance Variables
    private long entityRrn;

    private Long recordIndex;

    private String entityId;

    private Long sequenceNumber;

    private String scheduleId;

    private String scheduleDescription;

    private Long checklistRrn;

    private String checklistId;

    private String frequence;

    private String unit;

    private String nextEventTime;

    private String nextEventTime4Show;

    private Long estimatedDuration;

    private String estimatedDuration4Show;

    private String basedOnPmFlag;

    private String alarmIdWhenDue;

    private String alarmEnableFlag;

    private Long repeatInFrequence;

    private String repeatInUnit;

    private Long notifyBefore;

    private String notifyAlarmId;

    private String cancelIfScheduleId;

    private Long cancelWithin;

    private String checklistDescription;

    private String equipmentId;

    private String equipmentDesc;

    private String equipmentNamedSpace;

    /**
     * add by bright add properties for QL Project
     */
    private Long offset;

    private String alarmIdWhenRepeat;

    private String transPerformedBy;

    // 禁止进站
    private String actionFlag1;

    // 邮件通知
    private String actionFlag2;

    private String actualEventTime;

    public String getActualEventTime() {
        return actualEventTime;
    }

    public void setActualEventTime(String actualEventTime) {
        this.actualEventTime = actualEventTime;
    }

    public String getActionFlag1() {
        return actionFlag1;
    }

    public void setActionFlag1(String actionFlag1) {
        this.actionFlag1 = actionFlag1;
    }

    public String getActionFlag2() {
        return actionFlag2;
    }

    public void setActionFlag2(String actionFlag2) {
        this.actionFlag2 = actionFlag2;
    }

    // --------------------------------------------------------- Properties
    public String getEquipmentNamedSpace() {
        return equipmentNamedSpace;
    }

    public void setEquipmentNamedSpace(String equipmentNamedSpace) {
        this.equipmentNamedSpace = equipmentNamedSpace;
    }

    public String getEquipmentDesc() {
        return equipmentDesc;
    }

    public void setEquipmentDesc(String equipmentDesc) {
        this.equipmentDesc = equipmentDesc;
    }

    public String getEquipmentId() {
        return equipmentId;
    }

    public void setEquipmentId(String equipmentId) {
        this.equipmentId = equipmentId;
    }

    public String getChecklistDescription() {
        return checklistDescription;
    }

    public void setChecklistDescription(String checklistDescription) {
        this.checklistDescription = checklistDescription;
    }

    public long getEntityRrn() {
        return this.entityRrn;
    }

    public void setEntityRrn(long entityRrn) {
        this.entityRrn = entityRrn;
    }

    public Long getRecordIndex() {
        return this.recordIndex;
    }

    public void setRecordIndex(Long recordIndex) {
        this.recordIndex = recordIndex;
    }

    public String getEntityId() {
        return this.entityId;
    }

    public void setEntityId(String entityId) {
        this.entityId = entityId;
    }

    public Long getSequenceNumber() {
        return this.sequenceNumber;
    }

    public void setSequenceNumber(Long sequenceNumber) {
        this.sequenceNumber = sequenceNumber;
    }

    public String getScheduleId() {
        return this.scheduleId;
    }

    public void setScheduleId(String scheduleId) {
        this.scheduleId = scheduleId;
    }

    public String getScheduleDescription() {
        return this.scheduleDescription;
    }

    public void setScheduleDescription(String scheduleDescription) {
        this.scheduleDescription = scheduleDescription;
    }

    public Long getChecklistRrn() {
        return this.checklistRrn;
    }

    public void setChecklistRrn(Long checklistRrn) {
        this.checklistRrn = checklistRrn;
    }

    public String getChecklistId() {
        return this.checklistId;
    }

    public void setChecklistId(String checklistId) {
        this.checklistId = checklistId;
    }

    public String getFrequence() {
        return this.frequence;
    }

    public void setFrequence(String frequence) {
        this.frequence = frequence;
    }

    public String getUnit() {
        return this.unit;
    }

    public void setUnit(String unit) {
        this.unit = unit;
    }

    public String getBasedOnPmFlag() {
        return this.basedOnPmFlag;
    }

    public void setBasedOnPmFlag(String basedOnPmFlag) {
        this.basedOnPmFlag = basedOnPmFlag;
    }

    public String getAlarmEnableFlag() {
        return this.alarmEnableFlag;
    }

    public void setAlarmEnableFlag(String alarmEnableFlag) {
        this.alarmEnableFlag = alarmEnableFlag;
    }

    public String getNextEventTime() {
        return this.nextEventTime;
    }

    public void setNextEventTime(String nextEventTime) {
        this.nextEventTime = nextEventTime;
    }

    public String getNextEventTime4Show() {
        return this.nextEventTime4Show;
    }

    public void setNextEventTime4Show(String nextEventTime4Show) {
        this.nextEventTime4Show = nextEventTime4Show;
    }

    public Long getEstimatedDuration() {
        return this.estimatedDuration;
    }

    public void setEstimatedDuration(Long estimatedDuration) {
        this.estimatedDuration = estimatedDuration;
    }

    public String getEstimatedDuration4Show() {
        return this.estimatedDuration4Show;
    }

    public void setEstimatedDuration4Show(String estimatedDuration4Show) {
        this.estimatedDuration4Show = estimatedDuration4Show;
    }

    public String getAlarmIdWhenDue() {
        return this.alarmIdWhenDue;
    }

    public void setAlarmIdWhenDue(String alarmIdWhenDue) {
        this.alarmIdWhenDue = alarmIdWhenDue;
    }

    public Long getRepeatInFrequence() {
        return this.repeatInFrequence;
    }

    public void setRepeatInFrequence(Long repeatInFrequence) {
        this.repeatInFrequence = repeatInFrequence;
    }

    public String getRepeatInUnit() {
        return this.repeatInUnit;
    }

    public void setRepeatInUnit(String repeatInUnit) {
        this.repeatInUnit = repeatInUnit;
    }

    public Long getNotifyBefore() {
        return this.notifyBefore;
    }

    public void setNotifyBefore(Long notifyBefore) {
        this.notifyBefore = notifyBefore;
    }

    public String getNotifyAlarmId() {
        return this.notifyAlarmId;
    }

    public void setNotifyAlarmId(String notifyAlarmId) {
        this.notifyAlarmId = notifyAlarmId;
    }

    public String getCancelIfScheduleId() {
        return this.cancelIfScheduleId;
    }

    public void setCancelIfScheduleId(String cancelIfScheduleId) {
        this.cancelIfScheduleId = cancelIfScheduleId;
    }

    public Long getCancelWithin() {
        return this.cancelWithin;
    }

    public void setCancelWithin(Long cancelWithin) {
        this.cancelWithin = cancelWithin;
    }

    public String getAlarmIdWhenRepeat() {
        return alarmIdWhenRepeat;
    }

    public void setAlarmIdWhenRepeat(String alarmIdWhenRepeat) {
        this.alarmIdWhenRepeat = alarmIdWhenRepeat;
    }

    public Long getOffset() {
        return offset;
    }

    public void setOffset(Long offset) {
        this.offset = offset;
    }

    /**
     * @return the transPerformedBy
     */
    public String getTransPerformedBy() {
        return transPerformedBy;
    }

    /**
     * @param transPerformedBy the transPerformedBy to set
     */
    public void setTransPerformedBy(String transPerformedBy) {
        this.transPerformedBy = transPerformedBy;
    }

}

/*
 * Modification Log Log No : Name : Modified Date: Description :
 */