NewsComment.java
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:2k
- /*
- * Created on 2005-12-2
- *
- * TODO To change the template for this generated file go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
- package com.mycompany.news.dto;
- /**
- * @author Administrator
- *
- * TODO To change the template for this generated type comment go to
- * Window - Preferences - Java - Code Style - Code Templates
- */
- public class NewsComment {
- private Long commentId;
- private Long newsId;
- private String commentPerson;
- private String commentSubject;
- private String commentContent;
- private String fromAddress;
- private int auditStatus;
- private String auditPerson;
- public String getAuditPerson() {
- return auditPerson;
- }
- public void setAuditPerson(String auditPersion) {
- this.auditPerson = auditPersion;
- }
- public int getAuditStatus() {
- return auditStatus;
- }
- public void setAuditStatus(int auditStatus) {
- this.auditStatus = auditStatus;
- }
- public String getCommentSubject() {
- return commentSubject;
- }
- public void setCommentSubject(String commentSubject) {
- this.commentSubject = commentSubject;
- }
- public String getCommentContent() {
- return commentContent;
- }
- public void setCommentContent(String commentContent) {
- this.commentContent = commentContent;
- }
- public Long getCommentId() {
- return commentId;
- }
- public void setCommentId(Long commentId) {
- this.commentId = commentId;
- }
- public String getCommentPerson() {
- return commentPerson;
- }
- public void setCommentPerson(String commentPerson) {
- this.commentPerson = commentPerson;
- }
- public String getFromAddress() {
- return fromAddress;
- }
- public void setFromAddress(String fromAddress) {
- this.fromAddress = fromAddress;
- }
- public Long getNewsId() {
- return newsId;
- }
- public void setNewsId(Long newsId) {
- this.newsId = newsId;
- }
-
- }