| | |
| | | @Schema(description = "入库单id") |
| | | private Long id; |
| | | |
| | | @Schema(description = "销售台账的产品id") |
| | | private Long salesLedgerProductId; |
| | | |
| | | @Schema(description = "产品规格id") |
| | | private Long productModelId; |
| | | |
| | | @Schema(description = "产品大类") |
| | | private String productCategory; |
| | | |
| | |
| | | @Schema(description = "退货总数") |
| | | private BigDecimal totalReturnNum; |
| | | |
| | | @Schema(description = "销售发货数量") |
| | | private BigDecimal saleOutQuantity; |
| | | |
| | | @Schema(description = "含税单价") |
| | | private BigDecimal taxInclusiveUnitPrice; |
| | | |
| | | @Schema(description = "是否质检") |
| | | private Boolean isChecked; |
| | | } |