package com.ruoyi.procurementrecord.dto;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @author :yys
|
* @date : 2025/7/7 16:17
|
*/
|
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;
|
}
|
}
|