123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- package com.lemon.lifecenter.dto;
- public class BoardDTO {
- int postSeq = 0;
- private String title = "";
- private String content = "";
- private String createBy = "";
- private String createDate = null;
- private String updateBy = "";
- private String updateDate = null;
- private int views = 0;
- private String answerContent = "";
- private String answerDate = null;
- private String answerId = "";
-
- private int fileIdx = 0;
- private String fileOriginalName = "";
- private String fileName = "";
- private String fileExtension = "";
- private int fileSize = 0;
-
- private int limit = 0;
- private int limitMax = 0;
-
- public int getPostSeq() {
- return postSeq;
- }
- public void setPostSeq(int postSeq) {
- this.postSeq = postSeq;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getCreateBy() {
- return createBy;
- }
- public void setCreateBy(String createBy) {
- this.createBy = createBy;
- }
- public String getCreateDate() {
- return createDate;
- }
- public void setCreateDate(String createDate) {
- this.createDate = createDate;
- }
- public String getUpdateBy() {
- return updateBy;
- }
- public void setUpdateBy(String updateBy) {
- this.updateBy = updateBy;
- }
- public String getUpdateDate() {
- return updateDate;
- }
- public void setUpdateDate(String updateDate) {
- this.updateDate = updateDate;
- }
- public int getViews() {
- return views;
- }
- public void setViews(int views) {
- this.views = views;
- }
- public String getAnswerContent() {
- return answerContent;
- }
- public void setAnswerContent(String answerContent) {
- this.answerContent = answerContent;
- }
- public String getAnswerDate() {
- return answerDate;
- }
- public void setAnswerDate(String answerDate) {
- this.answerDate = answerDate;
- }
- public String getAnswerId() {
- return answerId;
- }
- public void setAnswerId(String answerId) {
- this.answerId = answerId;
- }
- public int getFileIdx() {
- return fileIdx;
- }
- public void setFileIdx(int fileIdx) {
- this.fileIdx = fileIdx;
- }
- public String getFileOriginalName() {
- return fileOriginalName;
- }
- public void setFileOriginalName(String fileOriginalName) {
- this.fileOriginalName = fileOriginalName;
- }
- public String getFileName() {
- return fileName;
- }
- public void setFileName(String fileName) {
- this.fileName = fileName;
- }
- public String getFileExtension() {
- return fileExtension;
- }
- public void setFileExtension(String fileExtension) {
- this.fileExtension = fileExtension;
- }
- public int getFileSize() {
- return fileSize;
- }
- public void setFileSize(int fileSize) {
- this.fileSize = fileSize;
- }
- public int getLimit() {
- return limit;
- }
- public void setLimit(int limit) {
- this.limit = limit;
- }
- public int getLimitMax() {
- return limitMax;
- }
- public void setLimitMax(int limitMax) {
- this.limitMax = limitMax;
- }
-
- }
|