maven
2025-11-11 cc0635fdc45d9b0e9396f76ed4074bdb1d81f9d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.procurementrecord.dto;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author :yys
 * @date : 2025/7/7 16:17
 */
@Data
public class Details {
    private Integer id;  // 产品id
    private BigDecimal inboundQuantity;  // 入库数量
    private BigDecimal warnNum;  // 预警数量(采购入库才有)
}