| | |
| | | import lombok.Data; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | |
| | |
| | | @Data |
| | | @TableName("procurement_price_management") |
| | | @ApiModel |
| | | public class ProcurementPriceManagement { |
| | | public class ProcurementPriceManagement implements Serializable { |
| | | |
| | | private static final long serialVersionUID = 1L; |
| | | /** |
| | |
| | | @Excel(name = "商品名称") |
| | | private String productName; |
| | | |
| | | @TableField(value = "product_id") |
| | | private Long productId; |
| | | |
| | | /** |
| | | * 无效字段 可以作为冗余字段使用 |
| | | */ |
| | | @ApiModelProperty(value = "商品编码") |
| | | @Excel(name = "商品编码") |
| | | // @Excel(name = "商品编码") |
| | | private String productCode; |
| | | |
| | | @ApiModelProperty(value = "规格型号") |
| | |
| | | @Excel(name = "供应商名称") |
| | | private String supplierName; |
| | | |
| | | @TableField(value = "supplier_id") |
| | | private Long supplierId; |
| | | |
| | | @ApiModelProperty(value = "基础价格") |
| | | @Excel(name = "基础价格") |
| | | private String basePrice; |
| | | |
| | | @ApiModelProperty(value = "实际价格") |
| | | @TableField(value = "actually_price") |
| | | @Excel |
| | | private BigDecimal actuallyPrice; |
| | | |
| | | @ApiModelProperty(value = "状态") |
| | | @TableField(exist = false) |
| | |
| | | @Excel(name = "最高价格") |
| | | private String maxPrice; |
| | | |
| | | |
| | | |
| | | @ApiModelProperty(value = "预警阈值(%)") |
| | | private String warningThreshold; |
| | | |