| | |
| | | import com.ruoyi.stock.pojo.StockUninventory; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | public class StockUninventoryDto extends StockUninventory { |
| | | public class StockUninventoryDto extends StockUninventory { |
| | | private String productName; |
| | | private String model; |
| | | private String unit; |
| | |
| | | |
| | | //入库类型对应的id |
| | | private Long recordId; |
| | | |
| | | private BigDecimal unLockedQuantity; |
| | | |
| | | /** |
| | | * 销售订单ID |
| | | */ |
| | | private Long salesLedgerId; |
| | | |
| | | /** |
| | | * 销售订单产品行ID |
| | | */ |
| | | private Long salesLedgerProductId; |
| | | |
| | | /** |
| | | * 厚度 |
| | | */ |
| | | private BigDecimal thickness; |
| | | } |