| | |
| | | } |
| | | |
| | | /** |
| | | * 拧紧参数增加 |
| | | */ |
| | | @PostMapping("/addTighteningParameters") |
| | | public void addTighteningParameters(@RequestBody DaParamCollection daParamCollection) |
| | | { |
| | | daParamCollectionService.addTighteningParameters(daParamCollection); |
| | | } |
| | | |
| | | /** |
| | | * 出战时间参数增加 |
| | | */ |
| | | @PostMapping("/saveCampaignTimeParameters") |
| | | public void saveCampaignTimeParameters(@RequestBody DaParamCollection daParamCollection) |
| | | { |
| | | daParamCollectionService.saveCampaignTimeParameters(daParamCollection); |
| | | } |
| | | |
| | | /** |
| | | * 更换总成号 |
| | | */ |
| | | @PostMapping("/replaceAssemblyCode") |
| | | public void replaceAssemblyCode(@RequestBody DaParamCollection daParamCollection) |
| | | { |
| | | daParamCollectionService.replaceAssemblyCode(daParamCollection); |
| | | } |
| | | |
| | | /** |
| | | * 修改设备产品过程参数采集 |
| | | */ |
| | | @PreAuthorize("@ss.hasPermi('main:paramCollection:edit')") |
| | |
| | | { |
| | | return toAjax(daParamCollectionService.deleteDaParamCollectionByIds(ids)); |
| | | } |
| | | |
| | | } |