| | |
| | | /** |
| | | * 产品状态 |
| | | */ |
| | | @TableField(exist = false) |
| | | @Schema(description = "入库审核状态") |
| | | private String stockInApprovalStatus; |
| | | |
| | | // @TableField(exist = false) |
| | | @Schema(description = "产品状态:1-充足") |
| | | private Integer approveStatus; |
| | |
| | | @TableField(exist = false) |
| | | private Integer hasSufficientStock; |
| | | |
| | | // 退货数量 |
| | | @TableField(exist = false) |
| | | private BigDecimal returnQuality; |
| | | |
| | | // 可用数量 quantity - returnQuality |
| | | // 可用数量 quantity - returnQuantity |
| | | @TableField(exist = false) |
| | | private BigDecimal availableQuality; |
| | | @Schema(description = "创建用户") |
| | |
| | | @TableField(exist = false) |
| | | @Schema(description = "待发货数量") |
| | | private BigDecimal noQuantity; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "退货数量") |
| | | private BigDecimal returnQuantity; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "审批中数量") |
| | | private BigDecimal pendingApprovalQuantity; |
| | | } |