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
33
34
35
36
37
38
39
40
41
42
43
44
package com.ruoyi.procurementrecord.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.framework.aspectj.lang.annotation.Excel;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
/**
 * @author :yys
 * @date : 2025/7/9 9:41
 */
@Data
public class ProcurementManagementUpdateDto {
 
    private String createBy;
    private BigDecimal minStock;
 
 
    /**
     * 单价
     */
    private BigDecimal unitPrice;
 
    /**
     * 总价
     */
    private BigDecimal totalPrice;
 
    // 单价
    private BigDecimal taxInclusiveUnitPrice;
    // 总价
    private BigDecimal taxInclusiveTotalPrice;
 
    private Long createUser;
 
    private String createTime;
 
    private String entryDate;
 
    private Integer id;
    private Integer salesLedgerProductId;
}