| | |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | |
| | | @Data |
| | | @TableName("product_model") |
| | | public class ProductModel { |
| | | public class ProductModel implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | |
| | | */ |
| | | @Excel(name = "规格型号") |
| | | private String model; |
| | | |
| | | @Excel(name = "产品编码") |
| | | @TableField("product_code") |
| | | private String productCode; |
| | | |
| | | /** |
| | | * 单位 |
| | |
| | | @Schema(description = "顶部父产品id") |
| | | @TableField(exist = false) |
| | | private Long topProductParentId; |
| | | |
| | | /** |
| | | * 库存量 |
| | | */ |
| | | @Schema(description = "库存量") |
| | | @Excel(name = "库存量") |
| | | private BigDecimal stockInventory; |
| | | } |