maven
5 小时以前 eaed2b68c6ae85f5b7c177a595f5b0b60b5fb3be
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
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;  // 预警数量(采购入库才有)
    //单价
    private BigDecimal unitPrice;
    private BigDecimal totalPrice;
    /**
     * 每箱数量
     */
    private Integer boxNum;
    /**
     * 每箱规格
     */
    private String cartonSpecifications;
    /**
     * 美元每件
     */
    private BigDecimal dollarPrice;
}