liding
14 小时以前 c7ce2c2342f427bbad0263ab9e35585f6b98ee93
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;
 
}