CostRequestDto.java 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. package cn.com.lzt.cost.data.dto;
  2. import cn.com.lzt.cost.activiti.costrequesthr.entity.ActivitiCostRequestHrEntity;
  3. import java.math.BigDecimal;
  4. public class CostRequestDto extends ActivitiCostRequestHrEntity {
  5. private String costType;
  6. private String sourceType;
  7. private BigDecimal expectMoneyBegin;
  8. private BigDecimal expectMoneyEnd;
  9. public String getSourceType() {
  10. return sourceType;
  11. }
  12. public void setSourceType(String sourceType) {
  13. this.sourceType = sourceType;
  14. }
  15. public BigDecimal getExpectMoneyBegin() {
  16. return expectMoneyBegin;
  17. }
  18. public void setExpectMoneyBegin(BigDecimal expectMoneyBegin) {
  19. this.expectMoneyBegin = expectMoneyBegin;
  20. }
  21. public BigDecimal getExpectMoneyEnd() {
  22. return expectMoneyEnd;
  23. }
  24. public void setExpectMoneyEnd(BigDecimal expectMoneyEnd) {
  25. this.expectMoneyEnd = expectMoneyEnd;
  26. }
  27. public String getCostType() {
  28. return costType;
  29. }
  30. public void setCostType(String costType) {
  31. this.costType = costType;
  32. }
  33. }