| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- package cn.com.lzt.budget.data.dto;
- import java.math.BigDecimal;
- public class BudgetCalc {
- private String functionId;
- private String measureId;
- private String entityId;
- private String periodDetailId;
- private boolean deep;
- private boolean update;
- private Integer row;
- private Integer col;
- private BigDecimal value;
- public String getFunctionId() {
- return functionId;
- }
- public void setFunctionId(String functionId) {
- this.functionId = functionId;
- }
- public String getMeasureId() {
- return measureId;
- }
- public void setMeasureId(String measureId) {
- this.measureId = measureId;
- }
- public String getEntityId() {
- return entityId;
- }
- public void setEntityId(String entityId) {
- this.entityId = entityId;
- }
- public String getPeriodDetailId() {
- return periodDetailId;
- }
- public void setPeriodDetailId(String periodDetailId) {
- this.periodDetailId = periodDetailId;
- }
- public boolean isDeep() {
- return deep;
- }
- public void setDeep(boolean deep) {
- this.deep = deep;
- }
- public boolean isUpdate() {
- return update;
- }
- public void setUpdate(boolean update) {
- this.update = update;
- }
- 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 BigDecimal getValue() {
- return value;
- }
- public void setValue(BigDecimal value) {
- this.value = value;
- }
- }
|