DiscussBean.java
上传用户:cdpainuo
上传日期:2022-07-12
资源大小:5257k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package com.appspot.cindyblog.pojo;
  2. import java.util.Date;
  3. import javax.jdo.annotations.IdGeneratorStrategy;
  4. import javax.jdo.annotations.IdentityType;
  5. import javax.jdo.annotations.PersistenceCapable;
  6. import javax.jdo.annotations.Persistent;
  7. import javax.jdo.annotations.PrimaryKey;
  8. import com.appspot.cindyblog.util.DateUtil;
  9. import com.google.appengine.api.datastore.Text;
  10. @PersistenceCapable(identityType = IdentityType.APPLICATION)
  11. public class DiscussBean  implements BaseBean{
  12. @PrimaryKey    
  13. @Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
  14. private Long id;  //id
  15. @Persistent
  16. private String name;
  17. @Persistent
  18. private String title;  //标题
  19. @Persistent
  20. private Date time;   //发表时间
  21. @Persistent(defaultFetchGroup="true")
  22. private Text content;  //发表内容
  23. @Persistent
  24. private int article_id; //日志id
  25. @Persistent
  26. private String email;
  27. public DiscussBean(String name, String title, Date time, Text content,
  28. int article_id, String email) {
  29. super();
  30. this.name = name;
  31. this.title = title;
  32. this.time = time;
  33. this.content = content;
  34. this.article_id = article_id;
  35. this.email = email;
  36. }
  37. public DiscussBean() {
  38. super();
  39. // TODO Auto-generated constructor stub
  40. }
  41. public String getName() {
  42. return name;
  43. }
  44. public void setName(String name) {
  45. this.name = name;
  46. }
  47. public Long getId() {
  48. return id;
  49. }
  50. public void setId(Long id) {
  51. this.id = id;
  52. }
  53. public String getTitle() {
  54. return title;
  55. }
  56. public void setTitle(String title) {
  57. this.title = title;
  58. }
  59. public Date getTime2() {
  60. return time;
  61. }
  62. public String getTime(){
  63. return DateUtil.getTime(time);
  64. }
  65. public void setTime(Date time) {
  66. this.time = time;
  67. }
  68. public Text getContent2() {
  69. return content;
  70. }
  71. public String getContent() {
  72. return content.getValue();
  73. }
  74. public void setContent(Text content) {
  75. this.content = content;
  76. }
  77. public int getAriicle_id() {
  78. return article_id;
  79. }
  80. public void setAriicle_id(int ariicle_id) {
  81. this.article_id = ariicle_id;
  82. }
  83. public int getArticle_id() {
  84. return article_id;
  85. }
  86. public void setArticle_id(int article_id) {
  87. this.article_id = article_id;
  88. }
  89. public String getEmail() {
  90. return email;
  91. }
  92. public void setEmail(String email) {
  93. this.email = email;
  94. }
  95. }