| | |
| | | private Long salesLedgerId; |
| | | |
| | | /** |
| | | * 父框架合同产品ID |
| | | */ |
| | | private Long parentProductId; |
| | | |
| | | /** |
| | | * 框架订单交货日期 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private java.time.LocalDate deliveryDate; |
| | | |
| | | /** |
| | | * 预警数量 |
| | | */ |
| | | private BigDecimal warnNum; |
| | |
| | | private BigDecimal returnQuantity; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "销售发货数量") |
| | | private BigDecimal shippedQuantity; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "已审核入库数量") |
| | | private BigDecimal approvedStockInNum; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "审批中数量") |
| | | private BigDecimal pendingApprovalQuantity; |
| | | } |