| | |
| | | private BigDecimal taxInclusiveTotalPrice; |
| | | |
| | | /** |
| | | * 运费单价 |
| | | */ |
| | | @Excel(name = "运费单价") |
| | | private BigDecimal freightUnitPrice; |
| | | |
| | | /** |
| | | * 总运费 |
| | | */ |
| | | @Excel(name = "总运费") |
| | | private BigDecimal totalFreight; |
| | | |
| | | /** |
| | | * 不含税总价 |
| | | */ |
| | | @Excel(name = "不含税总价") |
| | |
| | | * 产品规格id |
| | | */ |
| | | private Long productModelId; |
| | | |
| | | @Schema(description = "库存类型:qualified/waste") |
| | | private String stockType; |
| | | |
| | | @Schema(description = "登记人") |
| | | private String register; |
| | |
| | | /** |
| | | * 产品状态 |
| | | */ |
| | | @TableField(exist = false) |
| | | @Schema(description = "入库审核状态") |
| | | private String stockInApprovalStatus; |
| | | |
| | | // @TableField(exist = false) |
| | | @Schema(description = "产品状态:1-充足") |
| | | private Integer approveStatus; |
| | |
| | | @TableField(exist = false) |
| | | @Schema(description = "待发货数量") |
| | | private BigDecimal noQuantity; |
| | | |
| | | @TableField(exist = false) |
| | | @Schema(description = "审批中数量") |
| | | private BigDecimal pendingApprovalQuantity; |
| | | } |