33 lines
624 B
Java
33 lines
624 B
Java
package com.tenwa.reckon.bean;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
public class KnowingConfigBean {
|
|
//ÆðʼÆÚ´Î
|
|
private Integer startList;
|
|
//½áÊøÆÚ´Î
|
|
private Integer endList;
|
|
//¼Æ»®½ð¶î
|
|
private BigDecimal planMoney;
|
|
public Integer getStartList() {
|
|
return startList;
|
|
}
|
|
public void setStartList(Integer startList) {
|
|
this.startList = startList;
|
|
}
|
|
public Integer getEndList() {
|
|
return endList;
|
|
}
|
|
public void setEndList(Integer endList) {
|
|
this.endList = endList;
|
|
}
|
|
public BigDecimal getPlanMoney() {
|
|
return planMoney;
|
|
}
|
|
public void setPlanMoney(BigDecimal planMoney) {
|
|
this.planMoney = planMoney;
|
|
}
|
|
|
|
|
|
}
|