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);
|
|
}
|