package com.juick.server.api.xnodeinfo2.model; public class UserStats { private int total; private int activeHalfyear; private int activeMonth; public int getTotal() { return total; } public void setTotal(int total) { this.total = total; } public int getActiveHalfyear() { return activeHalfyear; } public void setActiveHalfyear(int activeHalfyear) { this.activeHalfyear = activeHalfyear; } public int getActiveMonth() { return activeMonth; } public void setActiveMonth(int activeMonth) { this.activeMonth = activeMonth; } }