| | |
| | | package com.ruoyi.procurementrecord.dto; |
| | | |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @author :yys |
| | | * @date : 2025/7/7 16:17 |
| | | */ |
| | | @Data |
| | | public class Details { |
| | | private Integer id; |
| | | private BigDecimal inboundQuantity; |
| | | public Integer getId() { |
| | | return id; |
| | | } |
| | | public void setId(Integer id) { |
| | | this.id = id; |
| | | } |
| | | public BigDecimal getInboundQuantity() { |
| | | return inboundQuantity; |
| | | } |
| | | public void setInboundQuantity(BigDecimal inboundQuantity) { |
| | | this.inboundQuantity = inboundQuantity; |
| | | } |
| | | private BigDecimal warnNum; |
| | | } |