1 43 package net.jforum.entities; 44 45 import java.util.Date ; 46 47 51 public class Karma 52 { 53 private int id; 54 private int postId; 55 private int topicId; 56 private int postUserId; 57 private int fromUserId; 58 private int points; 59 private Date rateDate; 60 61 64 public int getTopicId() 65 { 66 return this.topicId; 67 } 68 69 72 public void setTopicId(int topicId) 73 { 74 this.topicId = topicId; 75 } 76 77 80 public int getFromUserId() 81 { 82 return this.fromUserId; 83 } 84 85 88 public void setFromUserId(int fromUserId) 89 { 90 this.fromUserId = fromUserId; 91 } 92 93 96 public int getId() 97 { 98 return this.id; 99 } 100 101 104 public void setId(int id) 105 { 106 this.id = id; 107 } 108 109 112 public int getPostUserId() 113 { 114 return this.postUserId; 115 } 116 117 120 public void setPostUserId(int userId) 121 { 122 this.postUserId = userId; 123 } 124 125 128 public int getPoints() 129 { 130 return this.points; 131 } 132 133 136 public void setPoints(int points) 137 { 138 this.points = points; 139 } 140 141 144 public int getPostId() 145 { 146 return this.postId; 147 } 148 149 152 public void setPostId(int postId) 153 { 154 this.postId = postId; 155 } 156 157 160 public Date getRateDate() 161 { 162 return rateDate; 163 } 164 165 168 public void setRateDate(Date rateDate) 169 { 170 this.rateDate = rateDate; 171 } 172 } 173 | Popular Tags |