/* * Copyright 2008-2009 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package itn.let.fax.user.service; import java.io.Serializable; import itn.com.cmm.ComDefaultVO; /** * * @author : 이호영 * @fileName : FaxConvertMngVO.java * @date : 2023.03.20 * @description : [문자온]팩스 전체 관리 VO * =========================================================== * DATE AUTHOR NOTE * ----------------------------------------------------------- * * 2023.03.20 이호영 최초 생성 * * * */ public class FaxConvertMngVO extends FaxConvertVO implements Serializable { /** * */ private static final long serialVersionUID = -2845169322900084330L; /** * FAX_SEQ * primary key */ private String convertMngSeq; /** * USER_ID * not null * '문자온 일반회원 ID' */ private String userId; /** * CONVERT_SEQ * 'pgi_faxconvert(문서변환테이블) PK' */ private String convertSeq; /** * CONVERT_SEQ * '팩스 제목' */ private String title; /** * ORIGNL_FILE_NM * '원본파일명' */ private String orignlFileNm; /** * ORIGNL_FILE_NM * '원본파일확장자' */ private String orignlFileExt; /** * STRE_FILE_NM * '저장파일명' */ private String streFileNm; public String getConvertMngSeq() { return convertMngSeq; } public void setConvertMngSeq(String convertMngSeq) { this.convertMngSeq = convertMngSeq; } public String getUserId() { return userId; } public void setUserId(String userId) { this.userId = userId; } public String getConvertSeq() { return convertSeq; } public void setConvertSeq(String convertSeq) { this.convertSeq = convertSeq; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getOrignlFileNm() { return orignlFileNm; } public void setOrignlFileNm(String orignlFileNm) { this.orignlFileNm = orignlFileNm; } public String getOrignlFileExt() { return orignlFileExt; } public void setOrignlFileExt(String orignlFileExt) { this.orignlFileExt = orignlFileExt; } public String getStreFileNm() { return streFileNm; } public void setStreFileNm(String streFileNm) { this.streFileNm = streFileNm; } public FaxConvertMngVO() { } public FaxConvertMngVO(String convertMngSeq) { this.convertMngSeq = convertMngSeq; } }