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