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
| package com.ruoyi.stock.dto;
|
| import com.ruoyi.stock.pojo.StockUninventory;
| import lombok.Data;
|
| import java.math.BigDecimal;
|
| @Data
| public class StockUninventoryDto extends StockUninventory {
| /**
| * 产品属性 1=自制,2=外购,3=委外
| */
| private Integer productType;
| private String productName;
| private String model;
| private String unit;
|
|
| //入库类型
| private String recordType;
|
| //入库类型对应的id
| private Long recordId;
|
| private BigDecimal unLockedQuantity;
| }
|
|