NewsComment.java
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * Created on 2005-12-2
  3.  *
  4.  * TODO To change the template for this generated file go to
  5.  * Window - Preferences - Java - Code Style - Code Templates
  6.  */
  7. package com.mycompany.news.dto;
  8. /**
  9.  * @author Administrator
  10.  *
  11.  * TODO To change the template for this generated type comment go to
  12.  * Window - Preferences - Java - Code Style - Code Templates
  13.  */
  14. public class NewsComment {
  15. private Long commentId;
  16. private Long newsId;
  17. private String commentPerson;
  18. private String commentSubject;
  19. private String commentContent;
  20. private String fromAddress;
  21. private int auditStatus;
  22. private String auditPerson;
  23. public String getAuditPerson() {
  24. return auditPerson;
  25. }
  26. public void setAuditPerson(String auditPersion) {
  27. this.auditPerson = auditPersion;
  28. }
  29. public int getAuditStatus() {
  30. return auditStatus;
  31. }
  32. public void setAuditStatus(int auditStatus) {
  33. this.auditStatus = auditStatus;
  34. }
  35. public String getCommentSubject() {
  36. return commentSubject;
  37. }
  38. public void setCommentSubject(String commentSubject) {
  39. this.commentSubject = commentSubject;
  40. }
  41. public String getCommentContent() {
  42. return commentContent;
  43. }
  44. public void setCommentContent(String commentContent) {
  45. this.commentContent = commentContent;
  46. }
  47. public Long getCommentId() {
  48. return commentId;
  49. }
  50. public void setCommentId(Long commentId) {
  51. this.commentId = commentId;
  52. }
  53. public String getCommentPerson() {
  54. return commentPerson;
  55. }
  56. public void setCommentPerson(String commentPerson) {
  57. this.commentPerson = commentPerson;
  58. }
  59. public String getFromAddress() {
  60. return fromAddress;
  61. }
  62. public void setFromAddress(String fromAddress) {
  63. this.fromAddress = fromAddress;
  64. }
  65. public Long getNewsId() {
  66. return newsId;
  67. }
  68. public void setNewsId(Long newsId) {
  69. this.newsId = newsId;
  70. }
  71. }