| | |
| | | |
| | | // ========== 销售出库 ========== |
| | | |
| | | @Schema(description = "销售出库数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "100.00") |
| | | @Schema(description = "销售出库数量", example = "100.00") |
| | | private BigDecimal outCount; |
| | | |
| | | // ========== 销售退货(出库)) ========== |
| | | |
| | | @Schema(description = "销售退货数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "100.00") |
| | | private BigDecimal returnCount; |
| | | @Schema(description = "出库状态", example = "0") |
| | | private Integer outStatus; |
| | | |
| | | @Data |
| | | public static class Item { |
| | |
| | | |
| | | // ========== 销售出库 ========== |
| | | |
| | | @Schema(description = "销售出库数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "100.00") |
| | | @Schema(description = "销售出库数量", example = "100.00") |
| | | private BigDecimal outCount; |
| | | |
| | | // ========== 销售退货(入库)) ========== |
| | | |
| | | @Schema(description = "销售退货数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "100.00") |
| | | private BigDecimal returnCount; |
| | | |
| | | // ========== 关联字段 ========== |
| | | |
| | |
| | | private String productUnitName; |
| | | |
| | | @Schema(description = "库存数量", requiredMode = Schema.RequiredMode.REQUIRED, example = "100.00") |
| | | private BigDecimal stockCount; // 该字段仅仅在“详情”和“编辑”时使用 |
| | | private BigDecimal stockCount; // 该字段仅仅在详情和编辑时使用 |
| | | |
| | | } |
| | | |
| | | } |
| | | } |