| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.stock.pojo.StockInventory; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | |
| | | private BigDecimal totalStockOut; |
| | | private BigDecimal currentStock; |
| | | |
| | | private String unLockedQuantity; |
| | | private BigDecimal unLockedQuantity; |
| | | |
| | | @ApiModelProperty("父ID") |
| | | private Long parentId; |
| | | |
| | | /** |
| | | * 产品图片 |
| | | */ |
| | | // @Excel(name = "产品图片") |
| | | private String url; |
| | | |
| | | /** |
| | | * 高度 |
| | | */ |
| | | private String height; |
| | | |
| | | /** |
| | | * 每件数量/支 |
| | | */ |
| | | private String boxNum; |
| | | |
| | | /** |
| | | * 单价(美元)/件 |
| | | */ |
| | | private String dollarPrice; |
| | | |
| | | /** |
| | | * 单价(元)/件 |
| | | */ |
| | | private String taxInclusiveUnitPrice; |
| | | } |