package cn.com.lzt.cost.data.dto; import cn.com.lzt.cost.activiti.costrequesthr.entity.ActivitiCostRequestHrEntity; import java.math.BigDecimal; public class CostRequestDto extends ActivitiCostRequestHrEntity { private String costType; private String sourceType; private BigDecimal expectMoneyBegin; private BigDecimal expectMoneyEnd; public String getSourceType() { return sourceType; } public void setSourceType(String sourceType) { this.sourceType = sourceType; } public BigDecimal getExpectMoneyBegin() { return expectMoneyBegin; } public void setExpectMoneyBegin(BigDecimal expectMoneyBegin) { this.expectMoneyBegin = expectMoneyBegin; } public BigDecimal getExpectMoneyEnd() { return expectMoneyEnd; } public void setExpectMoneyEnd(BigDecimal expectMoneyEnd) { this.expectMoneyEnd = expectMoneyEnd; } public String getCostType() { return costType; } public void setCostType(String costType) { this.costType = costType; } }