1 changed files with 62 additions and 0 deletions
@ -0,0 +1,62 @@ |
|||
package com.qs.serve.modules.bir.entity.vo; |
|||
|
|||
import com.fasterxml.jackson.annotation.JsonFormat; |
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
import java.time.LocalDate; |
|||
|
|||
/** |
|||
* @author YenHex |
|||
* @since 2023/6/6 |
|||
*/ |
|||
@Data |
|||
public class BirRoiCostItemVo { |
|||
|
|||
/** |
|||
* 年/月 |
|||
*/ |
|||
private Integer yearMonth; |
|||
|
|||
@JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8") |
|||
private LocalDate yearMonthDate; |
|||
|
|||
/** |
|||
* 预估金额 |
|||
*/ |
|||
private BigDecimal preAmt; |
|||
|
|||
/** |
|||
* 费用金额(实际金额+预估金额) |
|||
*/ |
|||
private BigDecimal costAmt; |
|||
|
|||
/** |
|||
* 核销金额(实际金额) |
|||
*/ |
|||
private BigDecimal checkAmt; |
|||
|
|||
/** |
|||
* 费用金额(实际金额) |
|||
*/ |
|||
private BigDecimal costRealAmt; |
|||
|
|||
/** |
|||
* 核销金额(实际金额) |
|||
*/ |
|||
private BigDecimal checkRealAmt; |
|||
|
|||
/** |
|||
* 利润金额 |
|||
*/ |
|||
private BigDecimal returnAmt; |
|||
|
|||
/** |
|||
* 发货金额(原发货金额) |
|||
*/ |
|||
private BigDecimal dispatchAmt; |
|||
|
|||
private Float ytdPercent; |
|||
|
|||
private Float qtdPercent; |
|||
} |
Loading…
Reference in new issue