package com.ruoyi.home.dto;
|
|
import lombok.Data;
|
|
import java.math.BigDecimal;
|
|
/**
|
* 月度支出 DTO
|
*/
|
@Data
|
public class MonthlyExpenditureDto {
|
/**
|
* 月度总支出
|
*/
|
private BigDecimal monthlyExpenditure = BigDecimal.ZERO;
|
|
/**
|
* 付款率 (百分比)
|
*/
|
private String paymentRate = "0.00";
|
|
/**
|
* 毛利润 (金额)
|
*/
|
private BigDecimal grossProfit = BigDecimal.ZERO;
|
|
/**
|
* 利润率 (百分比)
|
*/
|
private String profitMarginRate = "0.00";
|
}
|