TransComment.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 TransComment implements Serializable {
// --------------------------------------------------------- Instance Variables
private Long transRrn;
private Integer sequenceNumber;
private String commentCategory;
private String commentSubject;
private String comments;
// --------------------------------------------------------- Properties
public Long getTransRrn() {
return this.transRrn;
}
public void setTransRrn(Long transRrn) {
this.transRrn = transRrn;
}
public Integer getSequenceNumber() {
return this.sequenceNumber;
}
public void setSequenceNumber(Integer sequenceNumber) {
this.sequenceNumber = sequenceNumber;
}
public String getCommentCategory() {
return this.commentCategory;
}
public void setCommentCategory(String commentCategory) {
this.commentCategory = commentCategory;
}
public String getCommentSubject() {
return this.commentSubject;
}
public void setCommentSubject(String commentSubject) {
this.commentSubject = commentSubject;
}
public String getComments() {
return this.comments;
}
public void setComments(String comments) {
this.comments = comments;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/