buhuazhen
2 天以前 d562551c7efd2c19fd037ab4fb1b7a355ff80f42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.consumables.dto;
 
import com.ruoyi.consumables.pojo.ConsumablesUnInventory;
import lombok.Data;
 
import java.math.BigDecimal;
 
@Data
public class ConsumablesUnInventoryDto  extends ConsumablesUnInventory {
    private String productName;
    private String model;
    private String unit;
 
 
    //入库类型
    private String recordType;
 
    //入库类型对应的id
    private Long recordId;
 
    private BigDecimal unLockedQuantity;
}