import com.yanzuoguang.dao.DaoConst;
import com.yanzuoguang.dao.TableAnnotation;

@TableAnnotation("db_time")
public class TestTableGroupVo1 {

    @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;

    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;
    }
}