| ¶Ô±ÈÐÂÎļþ |
| | |
| | | alter table quality_inspect |
| | | add defective_quantity decimal(18, 2) null comment 'ä¸è¯æ°é', |
| | | add defective_reason varchar(255) default '' not null comment 'ä¸è¯åå '; |
| | |
| | | qualityInspect.setProcess(process); |
| | | qualityInspect.setInspectState(0); |
| | | qualityInspect.setInspectType(inspectType); |
| | | qualityInspect.setDefectiveQuantity(productionProductOutput.getScrapQty()); |
| | | qualityInspect.setProductMainId(productionProductMain.getId()); |
| | | qualityInspect.setProductModelId(productModel.getId()); |
| | | qualityInspectMapper.insert(qualityInspect); |
| | |
| | | private BigDecimal quantity; |
| | | |
| | | /** |
| | | * ä¸è¯æ°é |
| | | */ |
| | | @Excel(name = "ä¸è¯æ°é") |
| | | private BigDecimal defectiveQuantity; |
| | | |
| | | /** |
| | | * ä¸è¯åå |
| | | */ |
| | | @Excel(name = "ä¸è¯åå ") |
| | | private String defectiveReason; |
| | | |
| | | /** |
| | | * æ£æµåä½ |
| | | */ |
| | | @Excel(name = "æ£æµåä½") |