| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | |
| | |
| | | */ |
| | | @TableName("sales_ledger_product") |
| | | @Data |
| | | public class SalesLedgerProduct { |
| | | public class SalesLedgerProduct implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @Excel(name = "关联销售台账主表主键") |
| | | private Long salesLedgerId; |
| | | |
| | | /** |
| | | * 预警数量 |
| | | */ |
| | | private BigDecimal warnNum; |
| | | |
| | | /** |
| | | * 产品大类 |
| | |
| | | private String unit; |
| | | |
| | | /** |
| | | * 生产炒机 |
| | | */ |
| | | @Excel(name = "生产炒机") |
| | | private String speculativeTradingName; |
| | | |
| | | /** |
| | | * 数量 |
| | | */ |
| | | @Excel(name = "数量") |
| | | private BigDecimal quantity; |
| | | |
| | | @Excel(name = "最低库存数量") |
| | | private BigDecimal minStock; |
| | | /** |
| | | * 税率 |
| | | */ |