2026-06-01 f80eee649f269eb61f15c7d0d2e282146eaaf9ef
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.ruoyi.home.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author :yys
 * @date : 2025/7/25 9:25
 */
@Data
@Schema
public class HomeBusinessDto {
 
    @Schema(description = "本月销售金额")
    private String monthSaleMoney = "0.00";
 
    @Schema(description = "上月销售金额")
    private String lastMonthSaleMoney = "0.00";
 
    @Schema(description = "本月销售未开票金额")
    private String monthSaleHaveMoney = "0.00";
 
    @Schema(description = "本月采购金额")
    private String monthPurchaseMoney = "0.00";
 
    @Schema(description = "上月采购金额")
    private String lastMonthPurchaseMoney = "0.00";
 
    @Schema(description = "本月采购未开票金额")
    private String monthPurchaseHaveMoney = "0.00";
 
    @Schema(description = "当前库存数量")
    private String inventoryNum = "0.00";
 
    @Schema(description = "今日库存数量")
    private String todayInventoryNum = "0.00";
 
}