RADCommentDTO.java

package com.mycim.valueobject.ocap.dto;

import java.io.Serializable;

public class RADCommentDTO implements Serializable {

    private static final long serialVersionUID = -7352311124854121035L;

    Long seqNo;

    Long userGroupRrn;

    String userGroupId;

    String commentType;

    String category;

    String reasonCode;

    String shortDescription;

    String detailComment;

    public Long getSeqNo() {
        return seqNo;
    }

    public void setSeqNo(Long seqNo) {
        this.seqNo = seqNo;
    }

    public Long getUserGroupRrn() {
        return userGroupRrn;
    }

    public void setUserGroupRrn(Long userGroupRrn) {
        this.userGroupRrn = userGroupRrn;
    }

    public String getUserGroupId() {
        return userGroupId;
    }

    public void setUserGroupId(String userGroupId) {
        this.userGroupId = userGroupId;
    }

    public String getCommentType() {
        return commentType;
    }

    public void setCommentType(String commentType) {
        this.commentType = commentType;
    }

    public String getCategory() {
        return category;
    }

    public void setCategory(String category) {
        this.category = category;
    }

    public String getReasonCode() {
        return reasonCode;
    }

    public void setReasonCode(String reasonCode) {
        this.reasonCode = reasonCode;
    }

    public String getShortDescription() {
        return shortDescription;
    }

    public void setShortDescription(String shortDescription) {
        this.shortDescription = shortDescription;
    }

    public String getDetailComment() {
        return detailComment;
    }

    public void setDetailComment(String detailComment) {
        this.detailComment = detailComment;
    }

    @Override
    public String toString() {
        return "RADCommentDTO{" + "seqNo=" + seqNo + ", userGroupRrn=" + userGroupRrn + ", userGroupId='" +
                userGroupId + '\'' + ", commentType='" + commentType + '\'' + ", category='" + category + '\'' +
                ", reasonCode='" + reasonCode + '\'' + ", shortDescription='" + shortDescription + '\'' +
                ", detailComment='" + detailComment + '\'' + '}';
    }

}