初始版本
This commit is contained in:
54
src/main/java/com/vverp/dto/CostDTO.java
Normal file
54
src/main/java/com/vverp/dto/CostDTO.java
Normal file
@@ -0,0 +1,54 @@
|
||||
package com.vverp.dto;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
/**
|
||||
* 费用
|
||||
*
|
||||
* @author dealsky
|
||||
* @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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user