| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | |
| | | @Data |
| | | @TableName("product_model") |
| | | public class ProductModel { |
| | |
| | | @Excel(name = "产品名称") |
| | | private String productName; |
| | | |
| | | @Excel(name = "产品编码") |
| | | private String productCode; |
| | | |
| | | /** |
| | | * 规格型号 |
| | | */ |
| | |
| | | @ApiModelProperty(value = "租户ID") |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long tenantId; |
| | | @TableField(exist = false) |
| | | @Excel(name = "入库数量") |
| | | private BigDecimal inboundNum; |
| | | @TableField(exist = false) |
| | | @Excel(name = "出库数量") |
| | | private BigDecimal outboundNum; |
| | | @TableField(exist = false) |
| | | @Excel(name = "剩余库存") |
| | | private BigDecimal stockQuantity; |
| | | } |