import com.yanzuoguang.dao.DaoConst; import com.yanzuoguang.dao.TableAnnotation; @TableAnnotation("db_time") public class TestTableGroupVo { @TableAnnotation("id") private String id; @TableAnnotation("createDate") private String createDate; @TableAnnotation(value = "total", type = DaoConst.FIELD_REPLACE_GROUP) private int total; @TableAnnotation(value = "total1", type = DaoConst.FIELD_REPLACE_GROUP) private int total1; @TableAnnotation(value = "has", type = DaoConst.FIELD_ADD_GROUP) private int has; @TableAnnotation(value = "has1", type = DaoConst.FIELD_ADD_GROUP) private int has1; public TestTableGroupVo() { } public TestTableGroupVo(String id) { this.id = id; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getCreateDate() { return createDate; } public void setCreateDate(String createDate) { this.createDate = createDate; } public int getTotal() { return total; } public void setTotal(int total) { this.total = total; } public int getTotal1() { return total1; } public void setTotal1(int total1) { this.total1 = total1; } public int getHas() { return has; } public void setHas(int has) { this.has = has; } public int getHas1() { return has1; } public void setHas1(int has1) { this.has1 = has1; } }