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 monthSaleHaveMoney = "0.00";
|
|
@Schema(description = "本月采购金额")
|
private String monthPurchaseMoney = "0.00";
|
|
@Schema(description = "本月采购未开票金额")
|
private String monthPurchaseHaveMoney = "0.00";
|
|
@Schema(description = "当前库存数量")
|
private String inventoryNum = "0.00";
|
|
@Schema(description = "今日库存数量")
|
private String todayInventoryNum = "0.00";
|
|
}
|