maven
5 天以前 bd8deb0d389d7634eaa40d258c84605b92fbe43b
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
32
package com.ruoyi.procurementrecord.dto;
 
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @author :yys
 * @date : 2025/7/8 10:40
 */
@Data
public class ProcurementUpdateDto {
 
    private Integer id;
 
    private BigDecimal warnNum;
 
    private BigDecimal quantityStock;
 
    private BigDecimal unitPrice;
 
    private BigDecimal totalPrice;
 
    private List<Integer> ids;
 
    /**
     * 出库类型 1-采购 2-销售 3-自定义
     */
    private Integer type;
 
}