2026-08-13 4498a6cf17b55e14b39ae03bec4c569e4b95480b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ruoyi.purchase.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
@Schema(description = "增值税进销项按月汇总(图表用)")
public class VatSummaryDto {
 
    @Schema(description = "月份")
    private String month;
 
    @Schema(description = "销项税额合计")
    private BigDecimal jTaxAmount;
 
    @Schema(description = "进项税额合计")
    private BigDecimal xTaxAmount;
 
    @Schema(description = "差额(销-进)")
    private BigDecimal taxAmount;
}