55 lines
930 B
Java
55 lines
930 B
Java
package com.vverp.dto;
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
/**
|
|
* 费用
|
|
*
|
|
* @author
|
|
* @date 2020/12/17 下午1:47
|
|
*/
|
|
public class CostDTO {
|
|
|
|
private BigDecimal amount;
|
|
|
|
private String companyName;
|
|
|
|
private String type;
|
|
|
|
public CostDTO() {
|
|
}
|
|
|
|
public CostDTO(BigDecimal amount) {
|
|
this.amount = amount;
|
|
}
|
|
|
|
public CostDTO(BigDecimal amount, String companyName) {
|
|
this.amount = amount;
|
|
this.companyName = companyName;
|
|
}
|
|
|
|
public BigDecimal getAmount() {
|
|
return amount;
|
|
}
|
|
|
|
public void setAmount(BigDecimal amount) {
|
|
this.amount = amount;
|
|
}
|
|
|
|
public String getCompanyName() {
|
|
return companyName;
|
|
}
|
|
|
|
public void setCompanyName(String companyName) {
|
|
this.companyName = companyName;
|
|
}
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
}
|