package cn.com.lzt.budget.instversion.dto; public class BudgetInstVersionChange { private Integer row; private Integer col; private Object oldVal; private Object newVal; public Integer getRow() { return row; } public void setRow(Integer row) { this.row = row; } public Integer getCol() { return col; } public void setCol(Integer col) { this.col = col; } public Object getOldVal() { return oldVal; } public void setOldVal(Object oldVal) { this.oldVal = oldVal; } public Object getNewVal() { return newVal; } public void setNewVal(Object newVal) { this.newVal = newVal; } }