001package com.thed.model;
002
003public class AttachmentDTO {
004        
005        
006        private String fileName;
007        private String tempFilePath;
008        private String fieldName;
009        private String dateCreated;
010        private String description;
011        private String contentType;
012        public String getFileName() {
013                return fileName;
014        }
015        public void setFileName(String fileName) {
016                this.fileName = fileName;
017        }
018        public String getFieldName() {
019                return fieldName;
020        }
021        public void setFieldName(String fieldName) {
022                this.fieldName = fieldName;
023        }
024        public String getDateCreated() {
025                return dateCreated;
026        }
027        public void setDateCreated(String dateCreated) {
028                this.dateCreated = dateCreated;
029        }
030        public String getDescription() {
031                return description;
032        }
033        public void setDescription(String description) {
034                this.description = description;
035        }
036        public String getContentType() {
037                return contentType;
038        }
039        public void setContentType(String contentType) {
040                this.contentType = contentType;
041        }
042        public String getTempFilePath() {
043                return tempFilePath;
044        }
045        public void setTempFilePath(String tempFilePath) {
046                this.tempFilePath = tempFilePath;
047        }
048        
049        
050}