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
package com.ruoyi.consumables.dto;
 
import com.ruoyi.consumables.pojo.ConsumablesInRecord;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.math.BigDecimal;
 
 
@EqualsAndHashCode(callSuper = true)
@Data
public class ConsumablesInRecordDto extends ConsumablesInRecord {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 产品名称
     */
    private String productName;
    /**
     * 产品规格
     */
    private String model;
    /**
     * 产品单位
     */
    private String unit;
 
    private String timeStr;
 
    private String createBy;
 
    //现存量
    private String currentconsumables;
 
    //现净重
    private BigDecimal currentWeight;
}