1 package org.javabb.vh; 2 3 import java.io.Serializable ; 4 5 import org.javabb.vo.VOObject; 6 7 22 23 28 public class Stats extends VOObject implements Serializable { 29 30 private Long idStats; 31 private Long recordUsersOnline; 32 33 34 private Integer totalPostCount; 35 private Integer totalTopicCount; 36 private Long lastRegisteredUserId; 37 private String lastRegisteredUserName; 38 private Integer totalRegisteredUsers; 39 40 43 public Long getIdStats() { 44 return idStats; 45 } 46 47 50 public void setIdStats(Long idStats) { 51 this.idStats = idStats; 52 } 53 54 57 public Long getRecordUsersOnline() { 58 return recordUsersOnline; 59 } 60 61 64 public void setRecordUsersOnline(Long recordUsersOnline) { 65 this.recordUsersOnline = recordUsersOnline; 66 } 67 68 71 public Integer getTotalPostCount() { 72 return totalPostCount; 73 } 74 75 78 public void setTotalPostCount(Integer totalPostCount) { 79 this.totalPostCount = totalPostCount; 80 } 81 82 85 public Integer getTotalTopicCount() { 86 return totalTopicCount; 87 } 88 89 92 public void setTotalTopicCount(Integer totalTopicCount) { 93 this.totalTopicCount = totalTopicCount; 94 } 95 96 99 public Long getLastRegisteredUserId() { 100 return lastRegisteredUserId; 101 } 102 103 106 public void setLastRegisteredUserId(Long lastRegisteredUserId) { 107 this.lastRegisteredUserId = lastRegisteredUserId; 108 } 109 110 113 public String getLastRegisteredUserName() { 114 return lastRegisteredUserName; 115 } 116 117 120 public void setLastRegisteredUserName(String lastRegisteredUserName) { 121 this.lastRegisteredUserName = lastRegisteredUserName; 122 } 123 124 127 public Integer getTotalRegisteredUsers() { 128 return totalRegisteredUsers; 129 } 130 131 134 public void setTotalRegisteredUsers(Integer totalRegisteredUsers) { 135 this.totalRegisteredUsers = totalRegisteredUsers; 136 } 137 } | Popular Tags |