| | |
| | | @Schema(description = "规格型号", example = "M8*20") |
| | | private String specification; |
| | | |
| | | @Schema(description = "物料分类编号(关联 MES 物料分类 mes_md_item_type)", example = "1") |
| | | private Long categoryId; |
| | | |
| | | @Schema(description = "计量单位编号", 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; |
| | |
| | | @Schema(description = "质量状态必填", example = "false") |
| | | private Boolean qualityStatusFlag; |
| | | |
| | | private Long mdmItemId; |
| | | |
| | | } |