| | |
| | | @Schema(description = "规格型号", example = "M8*20") |
| | | private String specification; |
| | | |
| | | @Schema(description = "物料分类编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | private Long categoryId; |
| | | |
| | | @Schema(description = "物料分类名称", example = "五金配件") |
| | | private String categoryName; |
| | | |
| | | @Schema(description = "计量单位编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") |
| | | private Long unitMeasureId; |
| | | |
| | |
| | | |
| | | @Schema(description = "状态", requiredMode = Schema.RequiredMode.REQUIRED, example = "0") |
| | | private Integer status; |
| | | |
| | | @Schema(description = "采购价格", example = "10.00") |
| | | private BigDecimal purchasePrice; |
| | | |
| | | @Schema(description = "销售价格", example = "15.00") |
| | | private BigDecimal salesPrice; |