maven
2025-10-14 cf6b1cf6fa8f7784c6d7c64b7326d4662bc3d4b3
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
package com.ruoyi.business.dto;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author :yys
 * @date : 2025/10/13 9:18
 */
@Schema
@Data
public class ProductionSchedulingStatisticsDto {
 
    @Schema(title = "总排产量")
    private BigDecimal totalOutput = BigDecimal.ZERO;
 
    @Schema(title = "已完成排产")
    private BigDecimal completedScheduling = BigDecimal.ZERO;
 
    @Schema(title = "待排产")
    private BigDecimal pendingScheduling = BigDecimal.ZERO;
 
    @Schema(title = "库存预警(1-9随机数)")
    private Integer inventoryWarning = (int)(Math.random()*10);
 
}