Shift.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.sys;

import com.mycim.valueobject.bas.NamedObject;

public class Shift extends NamedObject {

    // --------------------------------------------------------- Instance Variables
    // --------------------------------------------------------- Instance Variables
    private String shiftNumber;

    private String startTime;

    private String endTime;

    // --------------------------------------------------------- Consturctors
    public Shift() {
    }

    public Shift(String instanceId, String namedSpace, String object) {
        super(instanceId, namedSpace, object);
    }

    // --------------------------------------------------------- Properties
    public String getshiftNumber() {
        return this.shiftNumber;
    }

    public void setshiftNumber(String shiftNumber) {
        this.shiftNumber = shiftNumber;
    }

    public String getstartTime() {
        return this.startTime;
    }

    public void setstartTime(String startTime) {
        this.startTime = startTime;
    }

    public String getendTime() {
        return this.endTime;
    }

    public void setendTime(String endTime) {
        this.endTime = endTime;
    }

}

/*
 * Modification Log Log No :01 Name :Wander Modified Date:2001/10/10 Description :Add constructors
 */