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