1 package demo.drupal.persistence; 2 3 import javax.persistence.Id; 4 import javax.persistence.Entity; 5 import javax.persistence.Table; 6 7 @Entity 8 @Table(name="node_comment_statistics") 9 public class NodeCommentStatistic { 10 21 22 @Id 23 private int nid; 24 private int last_comment_timestamp; 25 private String last_comment_name; 26 private int last_comment_uid; 27 private int comment_count; 28 } 29 | Popular Tags |